<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>A Passionate Developer from the Third World Putting Things into his World's Perspective &#187; Programming</title>
	<atom:link href="http://www.cybervaldez.com/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cybervaldez.com</link>
	<description></description>
	<lastBuildDate>Thu, 15 Jul 2010 06:04:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>mySQL: Simplify your multiple WHERE queries with WHERE in</title>
		<link>http://www.cybervaldez.com/mysql-simplify-your-multiple-where-queries-with-where-in/2010/</link>
		<comments>http://www.cybervaldez.com/mysql-simplify-your-multiple-where-queries-with-where-in/2010/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 10:54:31 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1228</guid>
		<description><![CDATA[_Problem #1_: How do I simplify my mySql where queries?
_Problem #2_: How can I search through an array in my where statement?
Answer: An awesome trick when it comes to querying multiple where clauses is to use the WHERE &#60;&#8230;&#62; IN command.
$id = &#8216;1,4,3,6,8,2&#8242;;
&#8220;SELECT * FROM &#60;&#8230;&#62; WHERE id IN ($id)&#8221;

Oh and did I mention you [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><strong>_Problem #1_</strong>: How do I simplify my mySql where queries?<br />
<strong>_Problem #2_</strong>: How can I search through an array in my where statement?</p>
<p><strong>Answer</strong>: An awesome trick when it comes to querying multiple where clauses is to use the WHERE &lt;&#8230;&gt; IN command.</p>
<blockquote><p>$id = &#8216;1,4,3,6,8,2&#8242;;<br />
&#8220;SELECT * FROM &lt;&#8230;&gt; <strong>WHERE</strong> id <strong>IN</strong> ($id)&#8221;
</p></blockquote>
<p>Oh and did I mention you can prepend the <strong>NOT</strong> statement to show results which is NOT included in the list?</p>
<blockquote><p>$id = &#8216;5,7&#8242;;<br />
&#8220;SELECT * FROM &lt;&#8230;&gt; <strong>WHERE</strong> id <strong>NOT IN</strong> ($id)&#8221;
</p></blockquote>
<p><strong>Oh-Some!</strong></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/mysql-simplify-your-multiple-where-queries-with-where-in/2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</title>
		<link>http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/</link>
		<comments>http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 23:03:19 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[bottom]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fixed]]></category>
		<category><![CDATA[great]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[locked]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[super]]></category>
		<category><![CDATA[technique]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[toolbar]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1166</guid>
		<description><![CDATA[Help! I&#8217;d like to create a toolbar similar to facebook that is locked in the bottom of the screen.
Introduction Facebook is such a great website &#8211; usability, features, speed, you name it, facebook has it. One of facebook&#8217;s most useful feature is the toolbar that is being displayed to the bottom of the page. This [...]


Related posts:<ol><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Help!</strong> I&#8217;d like to create a toolbar similar to facebook that is locked in the bottom of the screen.</p>
<p><strong>Introduction</strong> Facebook is such a great website &#8211; usability, features, speed, you name it, facebook has it. One of facebook&#8217;s most useful feature is the toolbar that is being displayed to the bottom of the page. This post is made to do just about that. Follow these easy steps to create a Facebook-toolbar clone in no time at all!</p>
<p><strong>_Solution_</strong> Using the following steps, you would be able to duplicate the look of the Facebook toolbar.<br />
1.) First, copy the following css and paste them inside your <strong>&lt;header&gt;</strong> tag.</p>
<blockquote><p>
      html { height: 100%; }<br />
      body { height: 100%; }<br />
      #wrapper { position: relative; min-height: 100%; }<br />
      * html #wrapper { height: 100%; }<br />
      #content { <span style="font-weight:bold;">padding-bottom: 25px;</span> }</p>
<p>      #toolbar_outer { bottom:0; color:#111111; font-size:11px; height:25px; padding:0; position:fixed; right:0; width:100%; z-index:99; }<br />
      #toolbar_outer { position: relative; <span style="font-weight:bold;">margin-top: -26px;</span> }<br />
      #toolbar {<br />
        background:#aaa;<br />
        border-right:1px solid #b5b5b5;<br />
        overflow:visible !important;<br />
        margin-left:15px;<br />
        margin-right:15px;<br />
        position:relative;<br />
      }<br />
      #toolbar ul { <span style="font-weight:bold;">height: 25px;</span> background: #e5e5e5; border-top: 1px solid #eee; border-left: 1px solid #ddd; }<br />
      #toolbar ul li { float: left; padding: 5px; font: normal 110% &quot;lucida grande&quot;, tahoma, verdana, arial; border-right: 1px solid #aaa;}
</p></blockquote>
<p><strong>Important</strong>: The only drawback here is you&#8217;ll need to know the _height_ of your toolbar (not really a problem, you should know that anyway). I&#8217;ve _<span style="font-weight:bold;">highlighted</span>_ the properties above that you will probably want to edit.</p>
<p>2.) Finally, Paste this in your <strong>&lt;body&gt;</strong> tag.</p>
<blockquote><p>
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id=&#8221;wrapper&#8221;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      &lt;div id=&quot;content&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;        &lt;!&#8211; Your Content Goes Here &#8211;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      &lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id=&quot;toolbar_outer&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id=&quot;toolbar&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;!&#8211; Toolbar &#8211;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;Applications&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;
</p></blockquote>
<p>3. (Optional) You can also download everything above <a href="http://www.cybervaldez.com/myuploads/src/facebook_toolbar_src.zip">here</a>.</p>
<p>Well, that&#8217;s everything there is to it really! Don&#8217;t forget to thumb this up and share with others!<br />
<a href="http://www.stumbleupon.com/submit?url=http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/"> <img border=0 src="http://cdn.stumble-upon.com/images/120x20_thumb_black.gif" alt="120x20 thumb black Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!"  title="Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!" /></a></p>


<p>Related posts:<ol><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</title>
		<link>http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/</link>
		<comments>http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 17:33:59 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[active]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[automatically]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[easily]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[hover]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[state]]></category>
		<category><![CDATA[super]]></category>
		<category><![CDATA[technique]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1130</guid>
		<description><![CDATA[
One very important usability feature of a website is to have the menu or links highlight the current page the visitor is currently in. Here&#8217;s a trick I do with jquery to do just about that. For educational purposes, i&#8217;ve split it to 3 lines of code to make it more understandable.
Simply add the following [...]


Related posts:<ol><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li><li><a href='http://www.cybervaldez.com/how-to-fix-ocuploadone-click-upload-clicking-bug-in-ie7-ie8-jquery/2009/' rel='bookmark' title='Permanent Link: How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &#038; IE8 (jquery)'>How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &#038; IE8 (jquery)</a> <small>Problem: Help! I&#8217;m using the OCUpload, or One Click Upload...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><!--adsensestart--><br />
One very important usability feature of a website is to have the menu or links highlight the current page the visitor is currently in. Here&#8217;s a trick I do with jquery to do just about that. For educational purposes, i&#8217;ve split it to 3 lines of code to make it more understandable.</p>
<p>Simply add the following to your header (don&#8217;t forget to include jquery first!).</p>
<blockquote><p>$(document).ready(function()<br />
&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;var loc = window.location.toString().split(&quot;/&quot;)<br />
&nbsp;&nbsp;&nbsp;&nbsp;loc = loc[loc.length - 1]<br />
&nbsp;&nbsp;&nbsp;&nbsp;$(&quot;#navigation li a[href=\&quot;&quot;+loc+&quot;\&quot;]&quot;).addClass(&quot;selected&quot;);<br />
&nbsp;&nbsp;});</p></blockquote>
<p>Of course, jquery isn&#8217;t really needed to do this. If you prefer to have it done <strong>_without_</strong> jquery, here&#8217;s a native way of doing things:</p>
<blockquote><p>
&nbsp;&nbsp;  window.onload = function()<br />
&nbsp;&nbsp;  {<br />
&nbsp;&nbsp;&nbsp;&nbsp;    var current_page = window.location.toString().split(&quot;/&quot;)[window.location.toString().split(&quot;/&quot;).length - 1]<br />
&nbsp;&nbsp;&nbsp;&nbsp;    var links = document.getElementsByTagName(&quot;a&quot;);<br />
&nbsp;&nbsp;&nbsp;&nbsp;    for (x in links)<br />
&nbsp;&nbsp;&nbsp;&nbsp;    {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      var link = (links[x].href != undefined) ? links[x].href.toString().split(&quot;/&quot;)[links[x].href.toString().split(&quot;/&quot;).length &#8211; 1] : &quot;&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      if (link == current_page)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;        links[x].className = (links[x].className == &quot;&quot;) ? &quot;selected&quot; : links[x].className + &quot; selected&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;    }<br />
&nbsp;&nbsp;  }
</p></blockquote>
<p><strong>_Important_</strong>: The above code takes use of the <strong>.selected</strong> class. Simply add the class to your a:hover classes.</p>
<blockquote><p>#navigation ul li a:hover { color: #ff0; }</p></blockquote>
<p>Should be written as:</p>
<blockquote><p>#navigation ul li a:hover, #navigation ul li a.selected { color: #ff0 !important; }</p></blockquote>
<p><strong>_Don&#8217;t Forget!_</strong>, this works for menu/links with background images as well. </p>
<p>and that&#8217;s all there is to it! Don&#8217;t forget to thumb this up and share!<br />
<a href="http://www.stumbleupon.com/submit?url=http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/%26title%3DAutomatically%2BHighlight%2BThe%2BCurrent%2BPage%2Bwith%2BJQuery"> <img border=0 src="http://cdn.stumble-upon.com/images/120x20_thumb_black.gif" alt="120x20 thumb black Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code"  title="Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code" /></a></p>


<p>Related posts:<ol><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li><li><a href='http://www.cybervaldez.com/how-to-fix-ocuploadone-click-upload-clicking-bug-in-ie7-ie8-jquery/2009/' rel='bookmark' title='Permanent Link: How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &#038; IE8 (jquery)'>How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &#038; IE8 (jquery)</a> <small>Problem: Help! I&#8217;m using the OCUpload, or One Click Upload...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &amp; IE8 (jquery)</title>
		<link>http://www.cybervaldez.com/how-to-fix-ocuploadone-click-upload-clicking-bug-in-ie7-ie8-jquery/2009/</link>
		<comments>http://www.cybervaldez.com/how-to-fix-ocuploadone-click-upload-clicking-bug-in-ie7-ie8-jquery/2009/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 15:47:39 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[Bug Fixes]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ocupload]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1119</guid>
		<description><![CDATA[Problem: Help! I&#8217;m using the OCUpload, or One Click Upload Plugin for Jquery. IE7 and IE8 is requiring me to do a double click to display the upload dialog box!
Solution: The one-click upload technique uses a trick that sets the file input&#8217;s browse button directly in front of your mouse cursor. This is misbehaving in [...]


Related posts:<ol><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><!--adsensestart--><strong>Problem</strong>: Help! I&#8217;m using the <a href="http://plugins.jquery.com/project/ocupload">OCUpload</a>, or <a href="http://plugins.jquery.com/project/ocupload">One Click Upload Plugin</a> for Jquery. IE7 and IE8 is requiring me to do a double click to display the upload dialog box!</p>
<p><strong>Solution</strong>: The one-click upload technique uses a trick that sets the file input&#8217;s browse button directly in front of your mouse cursor. This is misbehaving in IE7/IE8 due to how they handle CSS, this can be resolved by directly setting the cursor position through javascript instead. You can fix the problem by editting the script and updating the following lines (highlighted in bold):</p>
<p>Somewhere on line 87:</p>
<blockquote><p>
/** Move the input with the mouse to make sure it get clicked! */<br />
container.mousemove(function(e){<br />
&nbsp;&nbsp; input.css({<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; top: e.pageY-container.offset().top+&#8217;px&#8217;,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong style="font-weight:bold;">left: e.pageX-container.offset().left-175+&#8217;px&#8217;</strong><br />
&nbsp;&nbsp; });<br />
});</p></blockquote>
<p>Finally, we need to set the margin css property to 0, you can find it somewhere on line 63:</p>
<blockquote><p>
/** File Input */<br />
var input = $(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#8216;&lt;input &#8216;+<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#8216;name=&#8221;&#8216;+options.name+&#8217;&#8221; &#8216;+<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#8216;type=&#8221;file&#8221; &#8216;+<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#8216;hidefocus=&#8221;true&#8221; &#8216;+<br />
&nbsp;&nbsp;&nbsp;&nbsp; &#8216;/&gt;&#8217;<br />
).css({<br />
&nbsp;&nbsp;&nbsp;&nbsp; background: &#8216;#ffffff&#8217;,<br />
&nbsp;&nbsp;&nbsp;&nbsp; position: &#8216;relative&#8217;,<br />
&nbsp;&nbsp;&nbsp;&nbsp; display: &#8216;block&#8217;,<br />
&nbsp;&nbsp;&nbsp;&nbsp; <strong style="font-weight: bold;">marginLeft: 0+&#8217;px&#8217;,</strong><br />
&nbsp;&nbsp;&nbsp;&nbsp; opacity: 0<br />
});</p></blockquote>
<p><a href="http://www.stumbleupon.com/submit?url=http://www.cybervaldez.com/how-to-fix-ocuploadone-click-upload-clicking-bug-in-ie7-ie8-jquery/2009/%26title%3DOCUpload%2BBug%2BFix"> <img border=0 src="http://cdn.stumble-upon.com/images/120x20_thumb_black.gif" alt="120x20 thumb black How to: Fix OCUpload/One Click Upload clicking bug in IE7 & IE8 (jquery)"  title="How to: Fix OCUpload/One Click Upload clicking bug in IE7 & IE8 (jquery)" /></a></p>
<p>That&#8217;s it! Hope this helped!</p>


<p>Related posts:<ol><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-fix-ocuploadone-click-upload-clicking-bug-in-ie7-ie8-jquery/2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Super Tip: Pass Arguments in your Python Bindings using Lambda Functions</title>
		<link>http://www.cybervaldez.com/super-tip-pass-arguments-in-your-python-bindings-using-lambda-functions/2009/</link>
		<comments>http://www.cybervaldez.com/super-tip-pass-arguments-in-your-python-bindings-using-lambda-functions/2009/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 18:38:15 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[event.binding]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[hook]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[important]]></category>
		<category><![CDATA[lambda]]></category>
		<category><![CDATA[pyhook]]></category>
		<category><![CDATA[super]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1102</guid>
		<description><![CDATA[Problem:  Help! How can I pass parameters in my Bindings?
Solution:  By using lambda functions in python(Check your PL&#8217;s manual for anything similar), you would be able to create on-the-fly functions that returns your bindings with the extra parameters/arguments you want to pass.
Example 1: Passing an argument to a wx Button Event

btn = wx.Button(self, [...]


Related posts:<ol><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem: </strong> Help! How can I pass parameters in my Bindings?</p>
<p><strong>Solution: </strong> By using lambda functions in python(Check your PL&#8217;s manual for anything similar), you would be able to create on-the-fly functions that returns your bindings with the extra parameters/arguments you want to pass.</p>
<p>Example 1: Passing an argument to a wx Button Event</p>
<blockquote><p>
btn = wx.Button(self, 10, &#8220;Button&#8221;, (10, 10))<br />
self.Bind(wx.EVT_BUTTON, lambda event: self.OnClick(event, &#8216;passthis&#8217;))</p>
<p>def OnClick(self, event, somearg):<br />
&nbsp;&nbsp; print somearg
</p></blockquote>
<p>Example 2: Passing an argument to Pyhook&#8217;s HookManager.KeyUp Event</p>
<blockquote><p>
hook = pyHook.HookManager()<br />
hook.KeyUp = lambda event: OnKeyboardEvent(event, &#8216;Pass Me.&#8217;)<br />
hm.HookKeyboard()</p>
<p>def OnKeyboardEvent(event, myarg)<br />
&nbsp;&nbsp;print myarg
</p></blockquote>
<p><strong>That&#8217;s It!</strong></p>


<p>Related posts:<ol><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/super-tip-pass-arguments-in-your-python-bindings-using-lambda-functions/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Remove those nasty question marks with a diamond symbols that appears in your website</title>
		<link>http://www.cybervaldez.com/how-to-remove-those-nasty-question-mark-with-a-diamond-symbols-from-appearing-in-your-website/2009/</link>
		<comments>http://www.cybervaldez.com/how-to-remove-those-nasty-question-mark-with-a-diamond-symbols-from-appearing-in-your-website/2009/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 22:33:56 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[diamon]]></category>
		<category><![CDATA[diamonds]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[encoded]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[incorrect]]></category>
		<category><![CDATA[mark]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[render]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[special]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[symbol]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[webpage]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[wrong]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1069</guid>
		<description><![CDATA[Help! I've pasted some text from Microsoft Word and saved it to my SQL database! Now whenever I output my text there's a bunch of diamonds with a question mark symbols now appearing!


Related posts:<ol><li><a href='http://www.cybervaldez.com/how-to-fix-ocuploadone-click-upload-clicking-bug-in-ie7-ie8-jquery/2009/' rel='bookmark' title='Permanent Link: How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &#038; IE8 (jquery)'>How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &#038; IE8 (jquery)</a> <small>Problem: Help! I&#8217;m using the OCUpload, or One Click Upload...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong> Help! I&#8217;ve pasted some text from Microsoft Word and saved it to my SQL database! Now whenever I print my text there&#8217;s a bunch of diamonds with a question mark symbols appearing!</p>
<p><strong>Solution:</strong> You are trying to display characters that are outside your page&#8217;s character set, you have to tell your browser that you need to display characters from the iso-8859-1 set so it will know how to render them correctly. </p>
<p>Simply put the following inside your website&#8217;s &lt;head&gt;&lt;/head&gt;</p>
<blockquote><p>&lt;META http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;</p></blockquote>
<p>and in PHP(or any other similar language), simply put this at the top of your page(for other languages, look for an identical function):</p>
<blockquote><p>&lt;? header(&quot;Content-type: text/html; charset=iso-8859-1&quot;); ?&gt;</p></blockquote>
<p>and voila! Your characters should now be displayed correctly.</p>
<p><a href="http://www.stumbleupon.com/submit?url=http://www.cybervaldez.com/how-to-remove-those-nasty-question-mark-with-a-diamond-symbols-from-appearing-in-your-website/2009/%26title%3DThe%2BArticle%2BTitle"> <img border=0 src="http://cdn.stumble-upon.com/images/120x20_thumb_black.gif" alt="120x20 thumb black How to: Remove those nasty question marks with a diamond symbols that appears in your website"  title="How to: Remove those nasty question marks with a diamond symbols that appears in your website" /></a></p>


<p>Related posts:<ol><li><a href='http://www.cybervaldez.com/how-to-fix-ocuploadone-click-upload-clicking-bug-in-ie7-ie8-jquery/2009/' rel='bookmark' title='Permanent Link: How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &#038; IE8 (jquery)'>How to: Fix OCUpload/One-Click Upload clicking bug in IE7 &#038; IE8 (jquery)</a> <small>Problem: Help! I&#8217;m using the OCUpload, or One Click Upload...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-remove-those-nasty-question-mark-with-a-diamond-symbols-from-appearing-in-your-website/2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Super Tool: (Probably) the best SQLite Editor/IDE for web development and production use</title>
		<link>http://www.cybervaldez.com/super-tool-probably-the-best-sqlite-editoride-for-development-and-production-use/2009/</link>
		<comments>http://www.cybervaldez.com/super-tool-probably-the-best-sqlite-editoride-for-development-and-production-use/2009/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 18:18:37 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tool]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[complement]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[footprint]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[great]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[production]]></category>
		<category><![CDATA[small]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1061</guid>
		<description><![CDATA[A great IDE/editor to complement SQLite's small footprint.


Related posts:<ol><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I really <a href="http://www.sqlite.org/">love</a> SQLite. It&#8217;s lightweight and got a really small footprint. I use it as my database initially when i&#8217;m creating web applications(I then move to mySQL during production), the only issue I have is the lack of IDE for working with it. Of course there&#8217;s <a href="http://wzpo1.ask.com/r?t=p&#038;d=mys&#038;s=ads&#038;c=a&#038;l=dis&#038;o=13927&#038;sv=0a5c425b&#038;ip=781c4047&#038;id=E042DFC40D6748CBA41FB6DF6185413F&#038;q=sqlite+administrator&#038;p=1&#038;qs=2873&#038;ac=24&#038;g=0e73O8O5b25qHg&#038;en=te&#038;io=0&#038;ep=&#038;eo=&#038;b=a001&#038;bc=&#038;br=&#038;tp=d&#038;ec=1&#038;pt=SQLite%20Administrator%20-%20International%20Milestone%20Beta&#038;ex=tsrc%3Dvnru&#038;url=&#038;u=http://sqliteadmin.orbmu2k.de/">SQLite Administrator</a>, i&#8217;m just not into the idea of installing a software especially with SQLite being small(I prefer not to cramp up as much software possible in my Windows). </p>
<blockquote><p>This is where <a href="http://code.google.com/p/sqlite-manager/">sqlite-manager</a> comes along. It&#8217;s a 100kb plugin for Firefox(which also means cross compatibility with other OS), it&#8217;s a great complement to SQLite&#8217;s lightweight and small footprint. If you need to work with the database, you simply fire up sqlite-manager from the Tools menu.</p></blockquote>
<p>That&#8217;s It!</p>


<p>Related posts:<ol><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/super-tool-probably-the-best-sqlite-editoride-for-development-and-production-use/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Super Tip: How to CHMOD all your files recursively</title>
		<link>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/</link>
		<comments>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:09:09 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[individual]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[super]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1052</guid>
		<description><![CDATA[Problem: How do I set permissions to my files and/or directories without manually setting them up individually?
Note: You may need administrator privileges for these to work, if that&#8217;s the case simply add a sudo before typing the commands below.
If you want to chmod all your directories:
find . -type d -exec chmod 755 {} \;
and for [...]


Related posts:<ol><li><a href='http://www.cybervaldez.com/how-to-deleteremove-protected-folders-and-files-from-a-previous-installation-of-windows/2009/' rel='bookmark' title='Permanent Link: How to: Delete/Remove protected folders and files from a previous installation of Windows'>How to: Delete/Remove protected folders and files from a previous installation of Windows</a> <small>Problem: I&#8217;ve decided to re-install windows because of some issues....</small></li><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Problem: How do I set permissions to my files and/or directories without manually setting them up individually?</p>
<p><strong>Note:</strong> You may need administrator privileges for these to work, if that&#8217;s the case simply add a <strong>sudo</strong> before typing the commands below.</p>
<p>If you want to chmod all your directories:</p>
<blockquote><p>find . -type d -exec chmod 755 {} \;</p></blockquote>
<p>and for files:</p>
<blockquote><p>find . -type f -exec chmod 644 {} \;</p></blockquote>
<p><strong>That&#8217;s it!</strong></p>


<p>Related posts:<ol><li><a href='http://www.cybervaldez.com/how-to-deleteremove-protected-folders-and-files-from-a-previous-installation-of-windows/2009/' rel='bookmark' title='Permanent Link: How to: Delete/Remove protected folders and files from a previous installation of Windows'>How to: Delete/Remove protected folders and files from a previous installation of Windows</a> <small>Problem: I&#8217;ve decided to re-install windows because of some issues....</small></li><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Count your regex pattern matches in python</title>
		<link>http://www.cybervaldez.com/how-to-count-your-regex-pattern-matches-in-python/2009/</link>
		<comments>http://www.cybervaldez.com/how-to-count-your-regex-pattern-matches-in-python/2009/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 15:46:51 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[expression]]></category>
		<category><![CDATA[matches]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[re]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular]]></category>
		<category><![CDATA[times]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1030</guid>
		<description><![CDATA[A solution in python for displaying the count of your regular expression matches.


No related posts.]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong> I need to display the number of times my regex has matched.</p>
<p>Solution: No Problem! Use the <strong>len</strong> (abbrev. for length) function:</p>
<blockquote><p>
import re<br />
>>> regex = re.compile(r&#8221;your pattern here&#8230;*&#8221;)<br />
>>> match = regex.findall(&#8221;the contents&#8230;&#8221;)<br />
>>> len(match)<br />
10
</p></blockquote>
<p><strong>That&#8217;s It!</strong></p>
<p><a href="http://www.stumbleupon.com/submit?url=http://www.cybervaldez.com/how-to-count-your-regex-pattern-matches-in-python/2009/%26title%3DThe%2BArticle%2BTitle"> <img border=0 src="http://cdn.stumble-upon.com/images/120x20_thumb_black.gif" alt="120x20 thumb black How to: Count your regex pattern matches in python"  title="How to: Count your regex pattern matches in python" /></a></p>
<p>On a side note, you can also use len to count the number of characters in a string.</p>
<blockquote><p>
>>> text = &#8220;All your base&#8230;&#8221;<br />
>>> len(text)<br />
16
</p></blockquote>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-count-your-regex-pattern-matches-in-python/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opera&#8217;s New Technology, Opera Unite, opens endless possibilities</title>
		<link>http://www.cybervaldez.com/operas-new-technology-opera-unite-opens-endless-possibilities/2009/</link>
		<comments>http://www.cybervaldez.com/operas-new-technology-opera-unite-opens-endless-possibilities/2009/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 08:44:46 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[june]]></category>
		<category><![CDATA[labs]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[unite]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=981</guid>
		<description><![CDATA[With all the sad stories of attempts in changing how the web works, it&#8217;s a good thing Opera did something that works very well even in a premature state(still in beta as I type)
Watch the following video to get the hands up of things:

Think of Opera Unite as creating your own server without any hassle [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<blockquote><p>With all the sad stories of attempts in changing how the web works, it&#8217;s a good thing Opera did something that works very well even in a premature state(still in beta as I type)</p></blockquote>
<p>Watch the following video to get the hands up of things:<br />
<!-- Smart Youtube --><span class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/D5hr-6cw4M8&amp;rel=0&amp;color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" /><param name="allowFullScreen" value="true" /><embed wmode="transparent" src="http://www.youtube.com/v/D5hr-6cw4M8&amp;rel=0&amp;color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Think of Opera Unite as creating your own server without any hassle at all! The browser itself serves as your gateway with communicating to the outside world (this is through the use of P2P technology), if you want to share your files, stream your music from anywhere, chat with friends(or anyone) everything is done with 0 configuration. You simply install the Opera 10 Browser (<a href="http://www.opera.com/browser/download/?ver=10.00b1">here</a>), that&#8217;s it! it&#8217;s already preinstalled, click on the door with an arrow icon found on the brower&#8217;s corner (top left) and click on the propeller-like icon (hover on it and you&#8217;ll see Opera Unite), a list of available services (Media, File Sharing, Photo Sharing, Lounge and possibly more in the future) will show up. Double click on the service you want to run then login(registration is also hassle free) and that&#8217;s all there is to it! You will be given a url that you can share to friends or use for yourself so you can be connected to your files at all times! You can make your service available to everyone, limited(this is the default, a password is displayed that you can share to your those who you want access to your services to), or Private(for yourself only)</p>
<p>So that&#8217;s it!, once you have your services turned on, simply give your url to your friends. Remember to give them the password to your services that has Limited access&#8217; passwords as well(each service has their own password, setting them up yourself is much preferred of course!)</p>
<p>Oh and did I mention that your friends <strong>don&#8217;t need</strong> to have Opera installed to access your services? Firefox, Chrome, Safari and other next generation browsers works fine! You only need Opera 10 if you want to run your service.</p>
<p>I&#8217;m using Opera Unite to:</p>
<ul>
<li>Chat with Fellow Developers</li>
<li>Stream my music from anywhere</li>
<li>Share my photos with my friends and family</li>
</ul>
<p>With more services to follow, Opera Unite will always be in one of my &#8220;must-have&#8221; software installed in my computer.</p>
<p>With all the joys and positivities surrounding the new technology, there are still some quirks that needs to be patched up(namely the webservice server isn&#8217;t living up to what all web developers are expecting) but to be fair Opera 10 is still in it&#8217;s beta stages so with all the good things it have right now, we are bound to see more surprises soon.</p>
<p>Kudos Opera! You have won yourself a fan.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/operas-new-technology-opera-unite-opens-endless-possibilities/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
