<?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>Code Retard &#187; PHP</title>
	<atom:link href="http://www.coderetard.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coderetard.com</link>
	<description>Anything Geeky Goes!</description>
	<lastBuildDate>Fri, 20 Nov 2009 13:30:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Automate your MySQL database backups</title>
		<link>http://www.coderetard.com/2008/05/05/how-to-automate-your-mysql-database-backups/</link>
		<comments>http://www.coderetard.com/2008/05/05/how-to-automate-your-mysql-database-backups/#comments</comments>
		<pubDate>Mon, 05 May 2008 18:00:04 +0000</pubDate>
		<dc:creator>Son Riku</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.coderetard.com/?p=691</guid>
		<description><![CDATA[
		
		
		
		
for automating backups, you can use this: http://www.mysqldumper.de/en/

\or you can run this automatic script 
Hereâ€™s an essential automatic script and a cron job you will need in order to keep your backup automatic.
Yes, if you get a dedicated server, donâ€™t get their stupid extra $15/month for backing up your database.  (All they do is [...]


Related Posts:<ol><li><a href='http://www.coderetard.com/2008/12/09/sqlite-with-c-example-a-compact-serverless-database-alternative/' rel='bookmark' title='Permanent Link: SQLite with C++ Example: A Compact Serverless Database Alternative'>SQLite with C++ Example: A Compact Serverless Database Alternative</a></li><li><a href='http://www.coderetard.com/2008/04/07/how-to-automate-builds-with-visual-studio/' rel='bookmark' title='Permanent Link: How to Automate Builds with Visual Studio'>How to Automate Builds with Visual Studio</a></li><li><a href='http://www.coderetard.com/2008/12/08/warez-bust-database-goes-live-piracyisacrime-website/' rel='bookmark' title='Permanent Link: Warez Bust Database goes live &#8211; PiracyIsaCrime website'>Warez Bust Database goes live &#8211; PiracyIsaCrime website</a></li></ol>]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://www.coderetard.com/2008/05/05/how-to-automate-your-mysql-database-backups/";
		digg_bgcolor = "#FFFFFF";
		digg_skin = "";
		digg_window = "";
		digg_title = "How+to+Automate+your+MySQL+database+backups";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "for automating backups, you can use this: http://www.mysqldumper.de/en/\or you can run this automatic script Hereâ€™s an essential automatic script and a cron job you will need in order to keep your backup automatic.Yes, if you get a dedicated server,...";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p><img src="http://www.coderetard.com/wp-content/uploads/2008/05/logomysql1.gif" alt="logomysql1 How to Automate your MySQL database backups" title="logomysql1" width="425" height="283" class="alignnone size-full wp-image-701" /></p>
<p>for automating backups, you can use this: <a href="http://www.mysqldumper.de/en/">http://www.mysqldumper.de/en/<br />
</a></p>
<p>\or you can run this automatic script </p>
<p>Hereâ€™s an essential automatic script and a cron job you will need in order to keep your backup automatic.</p>
<p>Yes, if you get a dedicated server, donâ€™t get their stupid extra $15/month for backing up your database.  (All they do is make scripts like this one and charge you for it)</p>
<p>You can follow this example and go spend that money on junk food.</p>
<p>So all you have to do is FTP your backup files.</p>
<p>This is way better than going into your phpMyAdmin and downloading from the web interface since the file is already ready for you to download.</p>
<p>Hereâ€™s how you do it:</p>
<p>1) Make a new file called backup.sh in your home directory. 2) Use the following syntax:</p>
<p><span id="more-691"></span><br />
mysqldump -u[USERNAME] -p[PASSWORD] &#8211;opt [DATABASE NAME] <br />> /root/backup/DATABASE1.sqlHereâ€™s an example backup.sh file if you had 2 databases:</p>
<p>mysqldump -uUser1 -pPassword1 &#8211;opt Database1 > /root/backup/Database1.sql<br />
mysqldump -uUser2 -pPassword2 &#8211;opt Database2 > /root/backup/Database2.sql<br />
tar cvf /root/backup/sqlbackup.tar /root/backup/*You can test your script by typing this:</p>
<p>sh backup.sh(The mysqldump will overwrite the older file if you run this more than once)</p>
<p>3) If everything is working good, now you can put that script to be run once a day in your cron job.</p>
<p>For Fedora Core, you can edit this file /etc/cron.d/sa-update</p>
<p>Add the following line:</p>
<p>10 3 * * * root sh /root/backup/backup.shThis will execute the script once a day at 3:10AM.</p>
<p>Now simply download one tar ball file whenever you feel like backing up your database.</p>
<p>You can probably change this a little bit and use it for many other things like backing up all your files too. (which I do)</p>
<p>If you have multiple servers like me, you can also automate your scripts to download backup databases to each server. That keeps things real redundant in case of server failure.</p>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2" title="How to Automate your MySQL database backups" url="http://www.coderetard.com/2008/05/05/how-to-automate-your-mysql-database-backups/"></script>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow" id="twitter"  target="_blank" href="http://twitter.com/home?status=How%20to%20Automate%20your%20MySQL%20database%20backups%20-%20http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F" title="Twitter"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="digg"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;title=How%20to%20Automate%20your%20MySQL%20database%20backups&amp;bodytext=%0D%0A%0D%0Afor%20automating%20backups%2C%20you%20can%20use%20this%3A%20http%3A%2F%2Fwww.mysqldumper.de%2Fen%2F%0D%0A%0D%0A%5Cor%20you%20can%20run%20this%20automatic%20script%20%0D%0A%0D%0AHere%C3%A2%E2%82%AC%E2%84%A2s%20an%20essential%20automatic%20script%20and%20a%20cron%20job%20you%20will%20need%20in%20order%20to%20keep%20your%20backup%20automatic.%0D%0A%0D%0AYes%2C%20if%20you%20g" title="Digg"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="del.icio.us"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;title=How%20to%20Automate%20your%20MySQL%20database%20backups&amp;notes=%0D%0A%0D%0Afor%20automating%20backups%2C%20you%20can%20use%20this%3A%20http%3A%2F%2Fwww.mysqldumper.de%2Fen%2F%0D%0A%0D%0A%5Cor%20you%20can%20run%20this%20automatic%20script%20%0D%0A%0D%0AHere%C3%A2%E2%82%AC%E2%84%A2s%20an%20essential%20automatic%20script%20and%20a%20cron%20job%20you%20will%20need%20in%20order%20to%20keep%20your%20backup%20automatic.%0D%0A%0D%0AYes%2C%20if%20you%20g" title="del.icio.us"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="propeller"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F" title="Propeller"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="reddit"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;title=How%20to%20Automate%20your%20MySQL%20database%20backups" title="Reddit"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="slashdot"  target="_blank" href="http://slashdot.org/bookmark.pl?title=How%20to%20Automate%20your%20MySQL%20database%20backups&amp;url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F" title="Slashdot"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="stumbleupon"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;title=How%20to%20Automate%20your%20MySQL%20database%20backups" title="StumbleUpon"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="technorati"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F" title="Technorati"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="mixx"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;title=How%20to%20Automate%20your%20MySQL%20database%20backups" title="Mixx"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="yahoobuzz"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;submitHeadline=How%20to%20Automate%20your%20MySQL%20database%20backups&amp;submitSummary=%0D%0A%0D%0Afor%20automating%20backups%2C%20you%20can%20use%20this%3A%20http%3A%2F%2Fwww.mysqldumper.de%2Fen%2F%0D%0A%0D%0A%5Cor%20you%20can%20run%20this%20automatic%20script%20%0D%0A%0D%0AHere%C3%A2%E2%82%AC%E2%84%A2s%20an%20essential%20automatic%20script%20and%20a%20cron%20job%20you%20will%20need%20in%20order%20to%20keep%20your%20backup%20automatic.%0D%0A%0D%0AYes%2C%20if%20you%20g&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="newsvine"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;h=How%20to%20Automate%20your%20MySQL%20database%20backups" title="NewsVine"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="facebook"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;t=How%20to%20Automate%20your%20MySQL%20database%20backups" title="Facebook"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" id="google"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-automate-your-mysql-database-backups%2F&amp;title=How%20to%20Automate%20your%20MySQL%20database%20backups&amp;annotation=%0D%0A%0D%0Afor%20automating%20backups%2C%20you%20can%20use%20this%3A%20http%3A%2F%2Fwww.mysqldumper.de%2Fen%2F%0D%0A%0D%0A%5Cor%20you%20can%20run%20this%20automatic%20script%20%0D%0A%0D%0AHere%C3%A2%E2%82%AC%E2%84%A2s%20an%20essential%20automatic%20script%20and%20a%20cron%20job%20you%20will%20need%20in%20order%20to%20keep%20your%20backup%20automatic.%0D%0A%0D%0AYes%2C%20if%20you%20g" title="Google Bookmarks"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related Posts:<ol><li><a href='http://www.coderetard.com/2008/12/09/sqlite-with-c-example-a-compact-serverless-database-alternative/' rel='bookmark' title='Permanent Link: SQLite with C++ Example: A Compact Serverless Database Alternative'>SQLite with C++ Example: A Compact Serverless Database Alternative</a></li><li><a href='http://www.coderetard.com/2008/04/07/how-to-automate-builds-with-visual-studio/' rel='bookmark' title='Permanent Link: How to Automate Builds with Visual Studio'>How to Automate Builds with Visual Studio</a></li><li><a href='http://www.coderetard.com/2008/12/08/warez-bust-database-goes-live-piracyisacrime-website/' rel='bookmark' title='Permanent Link: Warez Bust Database goes live &#8211; PiracyIsaCrime website'>Warez Bust Database goes live &#8211; PiracyIsaCrime website</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.coderetard.com/2008/05/05/how-to-automate-your-mysql-database-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Quick References</title>
		<link>http://www.coderetard.com/2008/03/17/useful-quick-references/</link>
		<comments>http://www.coderetard.com/2008/03/17/useful-quick-references/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 05:12:39 +0000</pubDate>
		<dc:creator>adm_snackbar</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[quick references]]></category>
		<category><![CDATA[quickref]]></category>
		<category><![CDATA[quickrefs]]></category>
		<category><![CDATA[stl]]></category>
		<category><![CDATA[verilog]]></category>

		<guid isPermaLink="false">http://www.coderetard.com/2008/03/17/useful-quick-references/</guid>
		<description><![CDATA[
		
		
		
		Whether you program in C++ or code in HTML, you&#8217;ve probably encountered a quick reference (&#8221;quickref&#8221; for short) at some point in your career. These handy guides aren&#8217;t meant to teach newbies how to use the language, but are more like the index at the back of your textbook except condensed and consolidated in a [...]


Related Posts:<ol><li><a href='http://www.coderetard.com/2009/02/17/mindys-daily-links-21709/' rel='bookmark' title='Permanent Link: Mindy&#8217;s Daily Links &#8211; 2/17/09'>Mindy&#8217;s Daily Links &#8211; 2/17/09</a></li><li><a href='http://www.coderetard.com/2009/03/02/mindys-daily-links-3209/' rel='bookmark' title='Permanent Link: Mindy&#8217;s Daily Links &#8211; 3/2/09'>Mindy&#8217;s Daily Links &#8211; 3/2/09</a></li></ol>]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://www.coderetard.com/2008/03/17/useful-quick-references/";
		digg_bgcolor = "#FFFFFF";
		digg_skin = "";
		digg_window = "";
		digg_title = "Useful+Quick+References";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "Whether you program in C++ or code in HTML, you&#8217;ve probably encountered a quick reference (&#8221;quickref&#8221; for short) at some point in your career. These handy guides aren&#8217;t meant to teach newbies how to use the language, but are more...";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>Whether you program in C++ or code in HTML, you&#8217;ve probably encountered a quick reference (&#8221;quickref&#8221; for short) at some point in your career. These handy guides aren&#8217;t meant to teach newbies how to use the language, but are more like the index at the back of your textbook except condensed and consolidated in a few pages. Today&#8217;s post lists a few useful quickrefs that I&#8217;ve accumulated over the years.<span id="more-111"></span> Here they are sorted by category:</p>
<p>For the web:</p>
<ul>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/visibone_web_designers_html_card.pdf' title='Web Designer's HTML Card'>Web Designer&#8217;s HTML Card</a> (credit: VisiBone)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/jsquick.pdf' title='Javascript Quickref v1.03'>Javascript Quickref v1.03</a> (credit: explain.th.at)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/cascading-style-sheets-10.pdf' title='CSS Quickref'>CSS Quickref</a> (credit: deepx)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/php-cheat-sheet.pdf' title='PHP Quickref'>PHP Quickref</a> (credit: ilovejackdaniels.com)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/mysql-402a.pdf' title='MySQL Quickref v4.0.2a'>MySQL Quickref v4.0.2a</a> (credit: deepx)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/jsp-quick-reference-card.pdf' title='JSP Quickref'>JSP Quickref</a> (credit: Allaire)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/ruby-language-quickref.pdf' title='Ruby Language Quickref'>Ruby Language Quickref</a></li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/ruby-library-quickref.pdf' title='Ruby Library Quickref'>Ruby Library Quickref</a></li>
</ul>
<p><br/></p>
<p>For Microsoft:</p>
<ul>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/core-csharp-and-net-quick-reference.pdf' title='C# Quickref'>C# Quickref</a></li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/microsoft-foundation-classes-mfc-quick-reference.pdf' title='MFC Quickref'>MFC Quickref</a> (credit: He)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/vbnet-quick-reference.pdf' title='VB.NET Quickref'>VB.NET Quickref</a> (credit: Kellerman)</li>
</ul>
<p><br/></p>
<p>For C/C++:</p>
<ul>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/c-reference-card-ansi.pdf' title='ANSI C Quickref v1.3'>ANSI C Quickref v1.3</a> (credit: Silverman)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/stl-quick-reference-126.pdf' title='STL Quickref v1.26'>STL Quickref v1.26</a> (credit: Medini)</li>
</ul>
<p><br/></p>
<p>For Configuration Management:</p>
<ul>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/cvs-quick-reference-card.pdf' title='CVS Quickref v0.1'>CVS Quickref v0.1</a> (credit: Ford)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/subversion-quick-reference-card.pdf' title='SVN Quickref v28'>SVN Quickref v28</a> (credit: Sobaniec)</li>
</ul>
<p><br/></p>
<p>For Hardware:</p>
<ul>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/verilog_quickref_card1.pdf' title='Verilog Quickref'>Verilog Quickref</a> (credit: Qualis)</li>
<li><a href='http://www.coderetard.com/wp-content/uploads/2008/03/systemc_quickreference.pdf' title='SystemC Quickref'>SystemC Quickref</a> (credit: Transfer)</li>
</ul>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2" title="Useful Quick References" url="http://www.coderetard.com/2008/03/17/useful-quick-references/"></script>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow" id="twitter"  target="_blank" href="http://twitter.com/home?status=Useful%20Quick%20References%20-%20http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F" title="Twitter"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="digg"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;title=Useful%20Quick%20References&amp;bodytext=Whether%20you%20program%20in%20C%2B%2B%20or%20code%20in%20HTML%2C%20you%27ve%20probably%20encountered%20a%20quick%20reference%20%28%22quickref%22%20for%20short%29%20at%20some%20point%20in%20your%20career.%20These%20handy%20guides%20aren%27t%20meant%20to%20teach%20newbies%20how%20to%20use%20the%20language%2C%20but%20are%20more%20like%20the%20index%20at%20th" title="Digg"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="del.icio.us"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;title=Useful%20Quick%20References&amp;notes=Whether%20you%20program%20in%20C%2B%2B%20or%20code%20in%20HTML%2C%20you%27ve%20probably%20encountered%20a%20quick%20reference%20%28%22quickref%22%20for%20short%29%20at%20some%20point%20in%20your%20career.%20These%20handy%20guides%20aren%27t%20meant%20to%20teach%20newbies%20how%20to%20use%20the%20language%2C%20but%20are%20more%20like%20the%20index%20at%20th" title="del.icio.us"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="propeller"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F" title="Propeller"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="reddit"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;title=Useful%20Quick%20References" title="Reddit"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="slashdot"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Useful%20Quick%20References&amp;url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F" title="Slashdot"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="stumbleupon"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;title=Useful%20Quick%20References" title="StumbleUpon"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="technorati"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F" title="Technorati"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="mixx"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;title=Useful%20Quick%20References" title="Mixx"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="yahoobuzz"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;submitHeadline=Useful%20Quick%20References&amp;submitSummary=Whether%20you%20program%20in%20C%2B%2B%20or%20code%20in%20HTML%2C%20you%27ve%20probably%20encountered%20a%20quick%20reference%20%28%22quickref%22%20for%20short%29%20at%20some%20point%20in%20your%20career.%20These%20handy%20guides%20aren%27t%20meant%20to%20teach%20newbies%20how%20to%20use%20the%20language%2C%20but%20are%20more%20like%20the%20index%20at%20th&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="newsvine"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;h=Useful%20Quick%20References" title="NewsVine"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="facebook"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;t=Useful%20Quick%20References" title="Facebook"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" id="google"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F17%2Fuseful-quick-references%2F&amp;title=Useful%20Quick%20References&amp;annotation=Whether%20you%20program%20in%20C%2B%2B%20or%20code%20in%20HTML%2C%20you%27ve%20probably%20encountered%20a%20quick%20reference%20%28%22quickref%22%20for%20short%29%20at%20some%20point%20in%20your%20career.%20These%20handy%20guides%20aren%27t%20meant%20to%20teach%20newbies%20how%20to%20use%20the%20language%2C%20but%20are%20more%20like%20the%20index%20at%20th" title="Google Bookmarks"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related Posts:<ol><li><a href='http://www.coderetard.com/2009/02/17/mindys-daily-links-21709/' rel='bookmark' title='Permanent Link: Mindy&#8217;s Daily Links &#8211; 2/17/09'>Mindy&#8217;s Daily Links &#8211; 2/17/09</a></li><li><a href='http://www.coderetard.com/2009/03/02/mindys-daily-links-3209/' rel='bookmark' title='Permanent Link: Mindy&#8217;s Daily Links &#8211; 3/2/09'>Mindy&#8217;s Daily Links &#8211; 3/2/09</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.coderetard.com/2008/03/17/useful-quick-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
