<?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>cachomenguito.com</title>
	<atom:link href="http://www.cachomenguito.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cachomenguito.com</link>
	<description>Shared Repository</description>
	<lastBuildDate>Wed, 11 Apr 2012 07:15:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Reminder: Creating SSH Keys</title>
		<link>http://www.cachomenguito.com/technology/reminder-creating-ssh-keys/</link>
		<comments>http://www.cachomenguito.com/technology/reminder-creating-ssh-keys/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 07:15:20 +0000</pubDate>
		<dc:creator>Cacho</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Reminders]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[SSH Key]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.cachomenguito.com/?p=72</guid>
		<description><![CDATA[So I keep forgetting how to setup SSH keys. Here&#8217;s how to create an SSH key: Step 1. Generate an SSH Key $ ssh-keygen -t rsa -C "my_email@cachomenguito.com" Press Enter. It should show something like this: Generating public/private rsa key pair. Enter file in which to save the key (/home/cachomenguito/.ssh/id_rsa): Just press Enter to have [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So I keep forgetting how to setup SSH keys. Here&#8217;s how to create an SSH key:</p>
<p><strong>Step 1.</strong> Generate an SSH Key<br />
<code>$ ssh-keygen -t rsa -C "my_email@cachomenguito.com"</code></p>
<p>Press Enter.</p>
<p>It should show something like this:<br />
<code>Generating public/private rsa key pair.<br />
Enter file in which to save the key (/home/cachomenguito/.ssh/id_rsa): </code></p>
<p>Just press Enter to have it create the key in <em><strong>/home/cachomenguito/.ssh/id_rsa</strong></em></p>
<p>After that it will show something like this:</p>
<p><code>Enter passphrase (empty for no passphrase):<br />
Enter same passphrase again:</code></p>
<p>I just pressed enter for both to have no passphrase.</p>
<p>It should then show something like this:</p>
<p><code>Your identification has been saved in /home/cachomenguito/.ssh/id_rsa.<br />
Your public key has been saved in /home/cachomenguito/.ssh/id_rsa.pub.<br />
The key fingerprint is:<br />
1b:c1:1e:a1:13:d1:17:11:12:16:d1:f1:15:15:15:18 my_email@cachomenguito.com<br />
The key's randomart image is:<br />
+--[ RSA 2048]----+<br />
|           E. . =|<br />
|         .   o o |<br />
|      . + o   .  |<br />
|   . = o * * o   |<br />
|    * + S + +    |<br />
|   . + o + *     |<br />
|      . . .      |<br />
|                 |<br />
|                 |<br />
+-----------------+</code></p>
<p><strong>Step 2.</strong> Just go to <em><strong>/home/cachomenguito/.ssh</strong></em> and copy all the contents of <strong><em>id_rsa.pub</em></strong></p>
<p>Voila! You now have an SSH Key! <img src='http://www.cachomenguito.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cachomenguito.com/technology/reminder-creating-ssh-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reminder: Automate Apache Starting with SSL</title>
		<link>http://www.cachomenguito.com/technology/reminder-automate-apache-starting-with-ssl/</link>
		<comments>http://www.cachomenguito.com/technology/reminder-automate-apache-starting-with-ssl/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 06:10:55 +0000</pubDate>
		<dc:creator>Cacho</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Reminders]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.cachomenguito.com/?p=68</guid>
		<description><![CDATA[So have you been wondering how to start your Apache server without having to enter the passphrase all the time? I have found two ways to do it. Here they are: The first method is to create a script that contains the passphrase and configure your Apache to execute that script. Just add this to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So have you been wondering how to start your Apache server without having to enter the passphrase all the time? I have found two ways to do it. Here they are:</p>
<p>The first method is to create a script that contains the passphrase and configure your Apache to execute that script.</p>
<p>Just add this to your configuration file, if the variable is existing already please change it like so:<br />
<code>SSLPassPhraseDialog  exec:/path/to/ssl_passphrase_file.sh</code></p>
<p>That file should have this as the contents:<br />
<code><br />
#!/bin/sh<br />
echo "mypassphrase"<br />
</code></p>
<p>The second method is to create a no password version of the key. Just run this command:<br />
<code>$ openssl rsa -in cachomenguito.com.key -out cachomenguito.com.key.nopass</code></p>
<p>Restart your apache server and voila! No need to enter the passphrase.</p>
<p>I would like to believe the second method is better especially if you have several virtual hosts in one server. <img src='http://www.cachomenguito.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cachomenguito.com/technology/reminder-automate-apache-starting-with-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reminder: How to duplicate a table in MySQL properly</title>
		<link>http://www.cachomenguito.com/technology/reminder-how-to-duplicate-a-table-in-mysql-properly/</link>
		<comments>http://www.cachomenguito.com/technology/reminder-how-to-duplicate-a-table-in-mysql-properly/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 12:00:35 +0000</pubDate>
		<dc:creator>Cacho</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Reminders]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[duplicate]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://www.cachomenguito.com/?p=62</guid>
		<description><![CDATA[So what I wanted to happen was to duplicate a table in MySQL as a backup with the same attributes and constraints (collation, increment_id, etc.). So here are the commands: First, this query will create a copy of the original table with all the constraints and attributes: CREATE TABLE my_backup_table LIKE my_original_table; my_backup_table is the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So what I wanted to happen was to duplicate a table in MySQL as a backup with the same attributes and constraints (collation, increment_id, etc.). So here are the commands:</p>
<p>First, this query will create a copy of the original table with all the constraints and attributes:<br />
<code>CREATE TABLE my_backup_table LIKE my_original_table;</code></p>
<p><strong>my_backup_table</strong> is the new/duplicate table while <strong>my_original_table</strong> is the table you want to copy. If you notice, there are norecords in this table. So how do you insert the data from the original table to the new one?</p>
<p>Run this query:<br />
<code>INSERT INTO my_backup_table SELECT * FROM my_original_table;</code></p>
<p>And you&#8217;re about done. To restore it, just drop the original table and recreate it using the same process above. <img src='http://www.cachomenguito.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cachomenguito.com/technology/reminder-how-to-duplicate-a-table-in-mysql-properly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reminder: Extracting a TAR file to a different location</title>
		<link>http://www.cachomenguito.com/technology/reminder-extracting-a-tar-file-to-a-different-location/</link>
		<comments>http://www.cachomenguito.com/technology/reminder-extracting-a-tar-file-to-a-different-location/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 05:20:13 +0000</pubDate>
		<dc:creator>Cacho</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Reminders]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[extract]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[tar]]></category>
		<category><![CDATA[untar]]></category>

		<guid isPermaLink="false">http://www.cachomenguito.com/?p=36</guid>
		<description><![CDATA[Here&#8217;s how to extract a TAR file to a different location: $ tar -C /usr/local/apache2/htdocs/ -xvf /home/mytarfile.tar Explanation: -C is the option to specify where to extract your TAR file. /usr/local/apache2/htdocs/ is the specified path where to extract your TAR file. -xvf are the options used to extract the TAR file /home/mytarfile.tar is the tar [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Here&#8217;s how to extract a TAR file to a different location:</p>
<p><code>$ tar -C /usr/local/apache2/htdocs/ -xvf /home/mytarfile.tar</code></p>
<p>Explanation:</p>
<p><strong>-C</strong> is the option to specify where to extract your TAR file.</p>
<p><strong>/usr/local/apache2/htdocs/</strong> is the specified path where to extract your TAR file.</p>
<p><strong>-xvf</strong> are the options used to extract the TAR file</p>
<p><strong>/home/mytarfile.tar</strong> is the tar file itself.</p>
<p><em>Disclaimer: The options i use are based on how the file was TAR-ed. In this case, it was:</em></p>
<p><code><em>$ tar -cvf mytarfile.tar *</em></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cachomenguito.com/technology/reminder-extracting-a-tar-file-to-a-different-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reminder: Running SQL Files from MySQL Command Line</title>
		<link>http://www.cachomenguito.com/technology/reminder-running-sql-files-from-mysql-command-line/</link>
		<comments>http://www.cachomenguito.com/technology/reminder-running-sql-files-from-mysql-command-line/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 05:28:54 +0000</pubDate>
		<dc:creator>Cacho</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Reminders]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.cachomenguito.com/?p=33</guid>
		<description><![CDATA[I keep on forgetting on how to run an SQL file from the command line. So here&#8217;s how you run an SQL file from the command line. shell&#62; mysql db_name &#60; script.sql &#62; output.tab]]></description>
			<content:encoded><![CDATA[<p></p><p>I keep on forgetting on how to run an SQL file from the command line. So here&#8217;s how you run an SQL file from the command line. <img src='http://www.cachomenguito.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><code>shell&gt; mysql db_name &lt; script.sql &gt; output.tab</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cachomenguito.com/technology/reminder-running-sql-files-from-mysql-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ronnel + Leslie SDE</title>
		<link>http://www.cachomenguito.com/videography/ronnel-leslie-sde/</link>
		<comments>http://www.cachomenguito.com/videography/ronnel-leslie-sde/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 03:26:38 +0000</pubDate>
		<dc:creator>Cacho</dc:creator>
				<category><![CDATA[Videography]]></category>
		<category><![CDATA[7d]]></category>
		<category><![CDATA[bacolod]]></category>
		<category><![CDATA[canon]]></category>
		<category><![CDATA[creole cakes]]></category>
		<category><![CDATA[philippines]]></category>
		<category><![CDATA[videography]]></category>
		<category><![CDATA[wedding]]></category>
		<category><![CDATA[wedding passport]]></category>

		<guid isPermaLink="false">http://www.cachomenguito.com/?p=26</guid>
		<description><![CDATA[In case you&#8217;re wondering what SDE means, it stands for Same Day Edit. Last January 8 2011, in Bacolod City, Philippines, I tried my hand at making an SDE for Ronnel and Leslie for their wedding day. It was quite a challenge considering that it was my first time and I didn&#8217;t know what to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In case you&#8217;re wondering what SDE means, it stands for Same Day Edit. Last January 8 2011, in Bacolod City, Philippines, I tried my hand at making an SDE for Ronnel and Leslie for their wedding day. It was quite a challenge considering that it was my first time and I didn&#8217;t know what to expect. Slow laptops, large files, card getting full, working as fast as I can so that this can be showed at the reception. Successfully pulled it off and I was quite satisfied with the result. Needs more improvement! So here&#8217;s the video.</p>
<p><center><iframe src="http://player.vimeo.com/video/18589913" width="601" height="338" frameborder="0"></iframe></center></p>
<p>Gear: Canon 7D, 50mm f1.8 II, 70-200mm f4L IS USM, 17-40mm f4L USM<br />
Special thanks to: <a href="http://www.weddingpassport.net" target="_blank">Wedding Passport</a>, Ronnel and Leslie and <a href="http://www.facebook.com/creolecakes" target="_blank">Jade Saducas</a> for helping me out. <img src='http://www.cachomenguito.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cachomenguito.com/videography/ronnel-leslie-sde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ian + Giselle E-Session</title>
		<link>http://www.cachomenguito.com/videography/ian-giselle/</link>
		<comments>http://www.cachomenguito.com/videography/ian-giselle/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 03:15:36 +0000</pubDate>
		<dc:creator>Cacho</dc:creator>
				<category><![CDATA[Videography]]></category>
		<category><![CDATA[7d]]></category>
		<category><![CDATA[cebu]]></category>
		<category><![CDATA[creole cakes]]></category>
		<category><![CDATA[engagement session]]></category>
		<category><![CDATA[philippines]]></category>
		<category><![CDATA[prenup]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wedding passport]]></category>

		<guid isPermaLink="false">http://www.cachomenguito.com/?p=22</guid>
		<description><![CDATA[Practiced taking and editing a video. I used a Canon 7D and used iMovie for editing the video. Was quite disappointed with the fact that in iMovie there was a glitch. The glitch was that when you slow down a clip to speeds other than what they have preset, the sound on some of the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Practiced taking and editing a video. I used a Canon 7D and used iMovie for editing the video. Was quite disappointed with the fact that in iMovie there was a glitch. The glitch was that when you slow down a clip to speeds other than what they have preset, the sound on some of the clips &#8220;leak&#8221; out. Here it is. <img src='http://www.cachomenguito.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ian + Giselle E-Session</p>
<p>Featuring:<br />
Johan Sisno of <a href="http://www.weddingpassport.net" target="_blank">Wedding Passport</a><br />
Noli Perez of Mother Superior Land<br />
Jade Saducas of <a href="http://www.facebook.com/creolecakes" target="_blank">Creole Cakes</a></p>
<p><center><iframe src="http://player.vimeo.com/video/18439198" width="601" height="338" frameborder="0"></iframe></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cachomenguito.com/videography/ian-giselle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1st Post!</title>
		<link>http://www.cachomenguito.com/hogwash/17/</link>
		<comments>http://www.cachomenguito.com/hogwash/17/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 08:22:12 +0000</pubDate>
		<dc:creator>Cacho</dc:creator>
				<category><![CDATA[Hogwash]]></category>

		<guid isPermaLink="false">http://www.cachomenguito.com/?p=17</guid>
		<description><![CDATA[1st Post! Finally started to post stuff. This blog is gonna be about reminders, memories and information. Enjoy!]]></description>
			<content:encoded><![CDATA[<p></p><p>1st Post! <img src='http://www.cachomenguito.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Finally started to post stuff. This blog is gonna be about reminders, memories and information. Enjoy! <img src='http://www.cachomenguito.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cachomenguito.com/hogwash/17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

