<?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; Tips &amp; Tricks</title>
	<atom:link href="http://www.cybervaldez.com/category/tips-and-tricks/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>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: I&#8217;m unable or can&#8217;t copy, move or delete files in MAC because of insufficient privileges or permissions</title>
		<link>http://www.cybervaldez.com/how-to-fix-i-cant-or-im-unable-to-copy-move-or-delete-files-in-mac-because-of-insufficient-privileges-or-permissions/2009/</link>
		<comments>http://www.cybervaldez.com/how-to-fix-i-cant-or-im-unable-to-copy-move-or-delete-files-in-mac-because-of-insufficient-privileges-or-permissions/2009/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:26:47 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[can not]]></category>
		<category><![CDATA[cant]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[insufficient]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[privileges]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1055</guid>
		<description><![CDATA[Problem: My Mac OSX is complaining that the files im about to copy or move doesn't have sufficient privileges or permissions!


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/ultimate-guide-to-installing-windows-7-64-bitx64-in-your-macbook-white-and-solutions-to-bootcamp-driver-problems/2009/' rel='bookmark' title='Permanent Link: Ultimate guide to installing Windows 7 64-Bit(x64) in your Macbook White and solutions to Bootcamp driver problems!'>Ultimate guide to installing Windows 7 64-Bit(x64) in your Macbook White and solutions to Bootcamp driver problems!</a> <small>Problem #1: Help Me! How do I install Windows 7...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong> My Mac OSX is complaining that the files im about to copy or move doesn&#8217;t have sufficient privileges or permissions!</p>
<p><strong>Solution:</strong> Simply use the CHMOD trick here to recursively set all your files and directories permissions. After these are set, you will now be able to copy, move or delete these files.</p>
<p>You need to have administrative privileges for the following to work.</p>
<blockquote><p>
1. Open Terminal by typing Terminal in your spotlight(click the magnifying glass on the top right or press CMD+Spacebar on your keyboard). You can also open terminal from your Applications folder.<br />
2. Type <code>cd &lt;<em>Type the directory you want to give yourself permissions to here...</em>&gt;</code>&nbsp;<br />
3. Type the following commands(enter your password when it asks):<br />
sudo find . -type d -exec chmod 755 {} \;<br />
sudo find . -type f -exec chmod 644 {} \;
</p></blockquote>
<p><strong>That&#8217;s it!</strong> You can now backup, copy, move or delete these files.</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/ultimate-guide-to-installing-windows-7-64-bitx64-in-your-macbook-white-and-solutions-to-bootcamp-driver-problems/2009/' rel='bookmark' title='Permanent Link: Ultimate guide to installing Windows 7 64-Bit(x64) in your Macbook White and solutions to Bootcamp driver problems!'>Ultimate guide to installing Windows 7 64-Bit(x64) in your Macbook White and solutions to Bootcamp driver problems!</a> <small>Problem #1: Help Me! How do I install Windows 7...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-fix-i-cant-or-im-unable-to-copy-move-or-delete-files-in-mac-because-of-insufficient-privileges-or-permissions/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Super Tip: Easy Access to your files and directories by creating symbolic links(shortcuts)</title>
		<link>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/</link>
		<comments>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 18:36:15 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[linking]]></category>
		<category><![CDATA[ln]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[symbolic]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1009</guid>
		<description><![CDATA[How to create shortcuts to your folders and files in Mac or Linux, aka Symbolic Linking.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>The directory structure of Mac and Linux(both are UNIX) tends to get really <strong>_really_</strong> long. But don&#8217;t worry, by using the <code>ln -s</code>, or <strong>Symbolic Link</strong> command in the terminal(unix shell), creating <strong>&#8220;shortcuts&#8221;</strong> to your folders or files is now a breeze.</p>
<blockquote><p><code>ln -s <source_file_or_folder> <shortcut_name></code>  &nbsp;<br />
Here&#8217;s an example:<br />
<code>ln -s /Library/Python/2.5/ /shortcuts/PYTHON</code> &nbsp; </p></blockquote>
<p>The effect: <code>cd /shortcuts/PYTHON</code> is now the same as <code>cd /Library/Python/2.5/</code>, removing a shortcut is similar to removing a file: <code>rm /shortcuts/PYTHON</code>&#8230; <strong>that&#8217;s it!</strong></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: A beginner&#8217;s expert guide on blogging your way to the top.</title>
		<link>http://www.cybervaldez.com/how-to-a-beginners-expert-guide-on-blogging-your-way-to-the-top/2009/</link>
		<comments>http://www.cybervaldez.com/how-to-a-beginners-expert-guide-on-blogging-your-way-to-the-top/2009/#comments</comments>
		<pubDate>Tue, 05 May 2009 07:26:42 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Versus]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[best]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[bloggers]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[classic]]></category>
		<category><![CDATA[crazyegg]]></category>
		<category><![CDATA[expert]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[hit]]></category>
		<category><![CDATA[instant]]></category>
		<category><![CDATA[mybloglog]]></category>
		<category><![CDATA[newbies]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[top]]></category>
		<category><![CDATA[tracking]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[woopra]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=475</guid>
		<description><![CDATA[After writing my 6th post, i&#8217;ve decided that i&#8217;m now an expert blogger. This is a beginner&#8217;s expert guide on blogging your way to the top.
Hey, look. Isn&#8217;t that a great idea of yours that have just passed through?
Ideas flashes in an instant so it&#8217;s only natural that you could forget it just as fast [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<blockquote><p>After writing my 6th post, i&#8217;ve decided that i&#8217;m now an expert blogger. This is a beginner&#8217;s expert guide on blogging your way to the top.</p></blockquote>
<p><span class="xxsize"><strong>Hey, look. Isn&#8217;t that a great idea of yours that have just passed through?</strong></span><br />
Ideas flashes in an instant so it&#8217;s only natural that you could forget it just as fast &#8211; this is always a bad thing because that idea that you let passed through you? That could&#8217;ve been <strong>&#8220;the&#8221;</strong> post that could&#8217;ve made you an instant hit.</p>
<p><strong><span class="xxsize">Drafting your ideas should be your #1 priority.</span></strong><br />
This writing as of now is an idea that suddenly popped out of nowhere while writing a blog about a <a href="http://www.cybervaldez.com/starcraft-2-dota-allstars-map/2009/" target="_blank">game</a>. Ideas usually comes up in the weirdest times(and places) so make sure you&#8217;re always ready for it. Whenever that happens, I stop whatever I&#8217;m doing, fire up my notepad and start writing right away. <strong>One idea leads to another</strong> so don&#8217;t break it up by letting any of those ideas pass through. So draft, save and continue editing it in a later date. Before you know it, that little idea of yours has already become a very interesting blog on it&#8217;s own. This is one of the key to having many things to blog about in the future.</p>
<p><strong><span class="xxsize">Chop &#8216;em down</span></strong><br />
Sometimes even a well written post can be very exhausting when it&#8217;s too long. Break your posts down by sections or find a way to split some parts into an entire different post if its possible.</p>
<p><strong><span class="xxsize">It&#8217;s all about quality of the content&#8230;</span></strong><br />
How you write your content is very important. If you get a lot of visitor hits or traffic but your content is mediocre then it won&#8217;t matter, you are just turning them off and making them vow not to visit anything related to your website again, so take some time, grabe a coffee and polish your content. Getting visitors is one thing but keeping them is another.</p>
<p><strong><span class="xxsize">&#8230; and the blog title</span></strong><br />
How do you invite a visitor to read your content? That&#8217;s the job of your blog title, it&#8217;s the door that seperates the visitors from the blog itself. Placing a very uninteresting title is like putting a <code>"Do not disturb"</code> sign so make your title really stand out, read it over a couple of times and think: <code>"If im a regular reader, will I find this title interesting?"</code>.</p>
<p><strong><span class="xxsize">Nothing personal, you&#8217;re just becoming too personal.</span></strong><br />
Hey let&#8217;s face it, unless all visitors are friends and relatives, personal blogs about ourselves is just plain too uninteresting. I won&#8217;t be getting as much hits as I have now if my blogs is all about what I&#8217;ve done during my vacation, what I got for my birthday or whatever, <code>no one cares</code>. But don&#8217;t let me get you too worked up here, personal blogging is <strong>a-ok</strong>! just avoid having too many, unless you can make them very interesting. If personal blogging is more of your thing then you might want to try <a href="http://www.twitter.com" target="_blank">twitting</a> instead.</p>
<p><strong><span class="xxsize">Reach a wider audience by sticking to a certain theme and creating an online persona</span></strong>.<br />
Setting a certain category or theme to your blog will put some interests into your links and post. A reader from google who found you through a keyword for Technology might not be interested to click your recent posts about cultures or cooking, stick to a few themes and all your posts will now be related to each other, which your readers might find interesting. A wider audience is good but if you become too diverse, you will lose more readers than usual. If you prefer to blog about anything, <strong>then</strong> a very good way of attracting your users is through an online persona(build your own character, create a style of writing, cosplay, act) and carry it throughout your posts. Chances are, people will subscribe to you because they find how you write very interesting or entertaining.</p>
<p><strong><span class="xxsize">Do something special or unique</span></strong>.<br />
What makes your blog super-special? Exclusive contents of course! Contents that you can&#8217;t find anywhere but yours. Do something very original! did you a create a <a href="http://apps.adobolabs.com/fstyler" target="_blank">cool</a> application? are you a beta tester of an upcoming hyped up game? Did you discover the meaning of life? or perhaps you made an awesome video? then blog about it.</p>
<p><strong><span class="xxsize">Get your name out there. Explore, Connect.</span></strong><br />
Be part of <a href="http://www.mybloglog.com" target="_blank">communities</a>, participate in forums. Post a smart or helpful comment in other people&#8217;s blogs. Help people in IRCs. Join <a href="http;//www.friendster.com" target="_blank">social</a> <a href="http://www.facebook.com" target="_blank">networking</a> <a href="http://www.myspace.com" target="_blank">websites</a>. Getting your name out there by participating and being part of a large community is sure fire way of getting good traffic.</p>
<p><strong><span class="xxsize">Share anything useful.</span></strong><br />
Have you finally found the solution to a problem that&#8217;s been plaguing you for quite some time now? If you had this problem then chances are, someone else is having the same problem as yours right? Make things easier for other troubled users by <a href="http://www.cybervaldez.com/how-to-fix-wordpress-admin-keeps-on-auto-refreshing/2009/" target="_blank">blogging</a> about it.</p>
<p><strong><span class="xxsize">Motivate yourself.</span></strong><br />
Getting addicted to blogging, or writing content is of course, the most important part to blogging. Installing <a href="http://wordpress.org/extend/plugins/stats/" target="_blank">Wordpress Stats</a>, <a href="http://www.google.com/analytics" target="_blank">Google Analytics</a>, <a href="http://www.woopra.com" target="_blank">Woopra</a>, <a href="http://www.crazyegg.com" target="_blank">CrazyEgg</a> or <a href="http://www.mybloglog.com" target="_blank">myBlogLog</a> to keep track of your visitors Sources(where they come from), Unique Visitors and what search keywords they used to get to your site is a great way of motivating yourself.</p>
<p><strong><span class="xxsize">People are People. They have other important things to attend to as well.</span></strong><br />
I respect my readers and their valuable time &#8211; that&#8217;s why I always have something in the start of my post detailing what they&#8217;re about to read to save them the trouble of going through the content only to find out what they&#8217;re looking for isn&#8217;t there.</p>
<p><strong><span class="xxxsize" style="#ffff00;">Get Addicted to Blogging, Do a lot of Drafts, Have a lot of fun, and most importantly have a lot of heart</span></strong></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-a-beginners-expert-guide-on-blogging-your-way-to-the-top/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo Messenger 9 Standalone, Offline Installer</title>
		<link>http://www.cybervaldez.com/download-yahoo-messenger-standalone-offline-installer/2009/</link>
		<comments>http://www.cybervaldez.com/download-yahoo-messenger-standalone-offline-installer/2009/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 15:34:44 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[bottom right]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[chikka]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[control panel windows]]></category>
		<category><![CDATA[country code]]></category>
		<category><![CDATA[easy solution]]></category>
		<category><![CDATA[fashion]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[firewalls]]></category>
		<category><![CDATA[hiccups]]></category>
		<category><![CDATA[messenger web]]></category>
		<category><![CDATA[preferred method]]></category>
		<category><![CDATA[system tray]]></category>
		<category><![CDATA[version of yahoo messenger]]></category>
		<category><![CDATA[web installer]]></category>
		<category><![CDATA[website url]]></category>
		<category><![CDATA[yahoo]]></category>
		<category><![CDATA[ym]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=10</guid>
		<description><![CDATA[Running into some problems that you can't figure out during the installation of Yahoo Messenger? Then here are some fixes and solutions for you!


No related posts.]]></description>
			<content:encoded><![CDATA[<blockquote><p>There are times when your only option is to download the <span style="text-decoration: line-through;">local</span> <span style="text-decoration: line-through;">standalone</span> offline version of Yahoo Messenger 9.</p></blockquote>
<p>You can easily download the latest standalone, offline installer for YM 9 by going through this link:<br />
US: <a href="http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/us/ymsgr9us.exe">http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/us/ymsgr9us.exe</a><br />
PH: <a href="http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/ph/ymsgr9ph.exe">http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/ph/ymsgr9ph.exe</a></p>
<p><strong>Tip:</strong> If you want to download from a different country (for ex: Canada), simply change the 2 country codes in the end of the website url to your country code(in this case it&#8217;s <strong>ca</strong> for Canada):<br />
<span style="font-family: Consolas,Verdana,'Courier New',Sans-Serif; font-weight:normal; background: #000; color: #fff;">http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/ph/ymsgr9ph.exe</span> <strong>TO:</strong><br />
<span style="font-family: Consolas,Verdana,'Courier New',Sans-Serif; font-weight: normal; background: #000; color: #fff;">http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/<strong>ca</strong>/ymsgr9<strong>ca</strong>.exe</span></p>
<p><span class="xxsize" style="color: #fff;">How to fix any Yahoo Messenger Web Installer related problems.</span><br />
The preferred method of installation is through the Yahoo messenger web installer. This is the default installer that you can <a href="http://messenger.yahoo.com" target="_blank">get</a> in <a href="http://messenger.yahoo.com" target="_blank">Yahoo</a>. In some cases, there would be hiccups that will prevent you from installing YM in your machine. The most common reason is when your Firewall is preventing the web installer from downloading the required files. An easy solution is to stop or disable your antivirus firewall(if any) and your windows firewall <strong>temporarily</strong>. You can disable your antivirus by right-clicking on it&#8217;s icon on your system tray(found on the bottom right, besides the clock) and clicking <code>Shutdown</code>, <code>Stop</code>, <code>Disable</code> or anything similar. Windows Firewall can be disabled by going to <code>Start -&gt; Control Panel -&gt; Windows Firewall</code> and turning it off from there, <strong>don&#8217;t forget that you have firewall disabled</strong> which means your computer is vulnerable and can be infected during this state so it&#8217;s highly recommended you don&#8217;t do anything else(Yes, even browsing) until installation is done. When it&#8217;s finished, <strong>it&#8217;s time to re-enable your firewalls</strong>, this can be done in a similar fashion as to how you disabled them.</p>
<p><strong><em>Another method is to configure your firewall to allow the web installer to download the required files instead of shutting your firewall completely.</em></strong></p>
<p><span class="xxsize" style="color: #fff;">Online Alternatives</span><br />
Of course, if you can&#8217;t install it to the computer you are using and you really need to login, then there are some online alternatives that works like YM itself; Simply login your yahoo account in any of the following: <a href="http://www.meebo.com" target="_blank">Meebo</a>, <a href="http://messenger.yahoo.com/platform/web/" target="_blank">Yahoo Web Messenger</a> or <a href="http://www.chikka.com" target="_blank">Chikka</a> and start chatting right away.</p>
<p>You can also chat with your cellphone through a multiplatform cellphone app called <a href="http://www.fring.com/" target="_blank">Fring</a> or go to <a href="http://messenger.yahoo.com" target="_blank">yahoo</a> and check out the other platforms there.</p>
<p>If you are a chat person with many different IM accounts (Jabber, MSN, AOL, etc) then I would <strong>_highly_</strong> recommend you to try one of these multiple IM applications: <a href="http://www.pidgin.com" target="_blank">Pidgin</a>, <a href="http://www.adium.im" target="_blank">Adium</a>(Macintosh Only) or <a href="http://www.digsby.com" target="_blank">Digsby</a></p>
<p><a href="http://www.stumbleupon.com/submit?url=http://www.cybervaldez.com/download-yahoo-messenger-standalone-offline-installer/2009/%26title%3DThe%2BArticle%2BTitle"> <img border=0 src="http://cdn.stumble-upon.com/images/120x20_thumb_black.gif" alt="120x20 thumb black Yahoo Messenger 9 Standalone, Offline Installer"  title="Yahoo Messenger 9 Standalone, Offline Installer" /></a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/download-yahoo-messenger-standalone-offline-installer/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
