<?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>blog.hersoncruz.com</title>
	<atom:link href="http://blog.hersoncruz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hersoncruz.com</link>
	<description>&#34;The quieter you become, the more are you able to hear...&#34;</description>
	<lastBuildDate>Fri, 03 May 2013 04:39:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Find and remove files with pattern in bash</title>
		<link>http://blog.hersoncruz.com/2013/04/find-and-remove-files-with-pattern-in-bash/</link>
		<comments>http://blog.hersoncruz.com/2013/04/find-and-remove-files-with-pattern-in-bash/#comments</comments>
		<pubDate>Fri, 19 Apr 2013 17:06:35 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[remove]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=3056</guid>
		<description><![CDATA[Useful command to delete files that start with "._" (no quotes),]]></description>
				<content:encoded><![CDATA[<p>Useful command to remove files that start with "._" (no quotes), for some reason tar command in OS X creates those files and I found an app having problems with them, here is how to get rid of those unnecessary hidden files:</p>
<pre class="wp-code-highlight prettyprint">
find . -name *._* -exec rm -f {} \;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2013/04/find-and-remove-files-with-pattern-in-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento current year on footer</title>
		<link>http://blog.hersoncruz.com/2013/01/magento-current-year-on-footer/</link>
		<comments>http://blog.hersoncruz.com/2013/01/magento-current-year-on-footer/#comments</comments>
		<pubDate>Thu, 31 Jan 2013 15:52:16 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[current]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=3046</guid>
		<description><![CDATA[If you ever wonder why some sites have old years (not even the last on) on footer copyright text, for me this comes from]]></description>
				<content:encoded><![CDATA[<p>If you ever wonder why some sites have old years (not even the last one) on footer copyright text, for me this comes from a lazy development, since it can be quickly fixed with code, in this case I'm going to show you how to do it in <a href="http://www.magentocommerce.com/" title="Magento Site" target="_blank">Magento</a> e-commerce platform:</p>
<p>First login to your Magento admin panel and in
<pre class="wp-code-highlight prettyprint">
System -&gt; Configuration -&gt; Design -&gt; Footer -&gt; Copyright
</pre>
<p> type: </p>
<pre class="wp-code-highlight prettyprint">
Copyright &amp;copy; &lt;YEAR/&gt; Company Name. All Rights Reserved.
</pre>
<p>Then open the following file to edit code:</p>
<pre class="wp-code-highlight prettyprint">
/app/design/frontend/[interface]/[theme]/template/page/html/footer.phtml
</pre>
<p>Lookup for the following section of code:</p>
<pre class="wp-code-highlight prettyprint">
&lt;?php echo $this-&gt;getCopyright() ?&gt;
</pre>
<p>And replace it with:</p>
<pre class="wp-code-highlight prettyprint">
&lt;?php echo preg_replace(&#039;/&lt;YEAR\/&gt;/&#039;, date(&#039;Y&#039;), $this-&gt;getCopyright()) ?&gt;
</pre>
<p>Hope this help someone out there.</p>
<p>See this solutions on <a href="http://www.magentocommerce.com/boards/viewthread/14469/#t152446" target="_blank">Magento forums</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2013/01/magento-current-year-on-footer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coda 2 SSH Terminal connection with private key</title>
		<link>http://blog.hersoncruz.com/2012/06/coda-2-ssh-terminal-connection-with-private-key/</link>
		<comments>http://blog.hersoncruz.com/2012/06/coda-2-ssh-terminal-connection-with-private-key/#comments</comments>
		<pubDate>Tue, 26 Jun 2012 15:56:19 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[coda2]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=514</guid>
		<description><![CDATA[When it's needed to connect to a remote host using SSH private key with Coda 2, first you have to add the keychain to SSH: ssh-add -K ~/path_to_key/user_id_rsa Then just open terminal in Coda and leave password field blank.]]></description>
				<content:encoded><![CDATA[<p>When it's needed to connect to a remote host using SSH private key with Coda 2, first you have to add the keychain to SSH:</p>
<pre class="wp-code-highlight prettyprint">
ssh-add -K ~/path_to_key/user_id_rsa
</pre>
<p>Then just open terminal in Coda and leave password field blank.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2012/06/coda-2-ssh-terminal-connection-with-private-key/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Find out Ubuntu version from command line</title>
		<link>http://blog.hersoncruz.com/2012/06/find-out-ubuntu-version-from-command-line/</link>
		<comments>http://blog.hersoncruz.com/2012/06/find-out-ubuntu-version-from-command-line/#comments</comments>
		<pubDate>Tue, 05 Jun 2012 17:12:20 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=506</guid>
		<description><![CDATA[Type the following command on a terminal window: $ lsb_release -a LSB Version: core-2.0-ia32:... Distributor ID: Ubuntu Description: Ubuntu 12.04 LTS Release: 12.04 Codename: precise]]></description>
				<content:encoded><![CDATA[<p>Type the following command on a terminal window:</p>
<pre class="wp-code-highlight prettyprint">$ lsb_release -a
LSB Version:    core-2.0-ia32:...
Distributor ID: Ubuntu
Description:    Ubuntu 12.04 LTS
Release:        12.04
Codename:       precise
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2012/06/find-out-ubuntu-version-from-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List files installed by a package (RPM and APT based distributions)</title>
		<link>http://blog.hersoncruz.com/2012/06/list-files-installed-by-a-package-rpm-and-apt-based-distributions/</link>
		<comments>http://blog.hersoncruz.com/2012/06/list-files-installed-by-a-package-rpm-and-apt-based-distributions/#comments</comments>
		<pubDate>Tue, 05 Jun 2012 17:03:46 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[rpm]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=493</guid>
		<description><![CDATA[RPM: Install yum-utils with: yum install yum-utils Make your query: repoquery --list *package_name* Sample: $ repoquery --list httpd /etc/httpd /etc/httpd/conf /etc/httpd/conf.d /etc/httpd/conf.d/README /etc/httpd/conf.d/welcome.conf /etc/httpd/conf/httpd.conf … APT Just type your query: dpkg -L *package_name* Sample: $ dpkg -L apache2 /. /usr /usr/share /usr/share/bug /usr/share/bug/apache2 /usr/share/bug/apache2/control …]]></description>
				<content:encoded><![CDATA[<p><strong>RPM:</strong></p>
<ol>
<li>Install yum-utils with:
<pre class="wp-code-highlight prettyprint">yum install yum-utils</pre>
</li>
<li>Make your query:
<pre class="wp-code-highlight prettyprint">repoquery --list *package_name*</pre>
</li>
<li>Sample:
<pre class="wp-code-highlight prettyprint">$ repoquery --list httpd 
/etc/httpd
/etc/httpd/conf
/etc/httpd/conf.d
/etc/httpd/conf.d/README
/etc/httpd/conf.d/welcome.conf
/etc/httpd/conf/httpd.conf
…</pre>
</li>
</ol>
<p><strong>APT</strong></p>
<ol>
<li>Just type your query:
<pre class="wp-code-highlight prettyprint">dpkg -L *package_name*</pre>
</li>
<li>Sample:
<pre class="wp-code-highlight prettyprint">$ dpkg -L apache2
/.
/usr
/usr/share
/usr/share/bug
/usr/share/bug/apache2
/usr/share/bug/apache2/control
…</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2012/06/list-files-installed-by-a-package-rpm-and-apt-based-distributions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostgreSQL services Mac OS X Lion start/stop</title>
		<link>http://blog.hersoncruz.com/2011/12/postgresql-services-mac-os-x-lion-startstop/</link>
		<comments>http://blog.hersoncruz.com/2011/12/postgresql-services-mac-os-x-lion-startstop/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 23:23:11 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[stop]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=487</guid>
		<description><![CDATA[When it comes to manually start/stop services installed by PostgreSQL on a Mac, I had a hard time figuring out how to do it, so here is the solution: First you need to know where definition files for daemons are located: /Library/LaunchDaemons Here you will find at least 2 files (if you installed EnterpriseDB-ApachePhp with [...]]]></description>
				<content:encoded><![CDATA[<p>When it comes to manually start/stop services installed by PostgreSQL on a Mac, I had a hard time figuring out how to do it, so here is the solution:</p>
<p>First you need to know where definition files for daemons are located:</p>
<pre class="wp-code-highlight prettyprint">/Library/LaunchDaemons</pre>
<p>Here you will find at least 2 files (if you installed EnterpriseDB-ApachePhp with StackBuilder)</p>
<pre class="wp-code-highlight prettyprint">com.edb.launchd.apache.plist
com.edb.launchd.postgresql-9.1.plist</pre>
<p>You can start/stop this daemons with:</p>
<pre class="wp-code-highlight prettyprint">launchctl start com.edb.launchd.apache
launchctl stop com.edb.launchd.apache
</pre>
<p>or</p>
<pre class="wp-code-highlight prettyprint">launchctl start com.edb.launchd.postgresql-9.1
launchctl stop com.edb.launchd.postgresql-9.1</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2011/12/postgresql-services-mac-os-x-lion-startstop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technology Day 2011</title>
		<link>http://blog.hersoncruz.com/2011/07/technology-day-2011/</link>
		<comments>http://blog.hersoncruz.com/2011/07/technology-day-2011/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 01:08:29 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=481</guid>
		<description><![CDATA[IT NOW magazine is organazing the Technology Day 2011 today and tomorrow in well known hotels of Central America, Panamá and Dominican Republic, mayor brands are assisting and providing information abut new products and services, today it started around 14:00 hours in San Salvador and was pleasant to see a lot of local providers participating, [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.revistaitnow.com/" title="Revista IT NOW">IT NOW</a> magazine is organazing the <a href="http://td.revistaitnow.com/" title="Technology Day 2011">Technology Day 2011</a> today and tomorrow in well known hotels of Central America, Panamá and Dominican Republic, mayor brands are assisting and providing information abut new products and services, today it started around 14:00 hours in San Salvador and was pleasant to see a lot of local providers participating, if you're interested I think you can make it for tomorrow and see what's going on.</p>
<p>Here is a picture of first participations in Costa Rica:</p>
<p><a href="http://blog.hersoncruz.com/wp-content/uploads/2011/07/CSI-Leasing.jpg"><img src="http://blog.hersoncruz.com/wp-content/uploads/2011/07/CSI-Leasing-300x199.jpg" alt="" title="CSI Leasing" width="300" height="199" class="alignleft size-medium wp-image-483" /></a> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2011/07/technology-day-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 11.04 &#8220;Natty Narwhal&#8221; released!</title>
		<link>http://blog.hersoncruz.com/2011/04/ubuntu-11-04-natty-narwhal-released/</link>
		<comments>http://blog.hersoncruz.com/2011/04/ubuntu-11-04-natty-narwhal-released/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 13:10:31 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[11.04]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=477</guid>
		<description><![CDATA[30 minutes ago Ubuntu 10.04 has been released, according to the features page: Your Ubuntu, your way Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Fast, secure and with thousands of apps to choose from, Ubuntu gives you a clean and streamlined experience that you can really make your own. And now you can even [...]]]></description>
				<content:encoded><![CDATA[<p>30 minutes ago Ubuntu 10.04 has been released, according to the <a href="http://www.ubuntu.com/ubuntu/features">features page</a>:</p>
<blockquote><p><strong>Your Ubuntu, your way</strong></p>
<p>Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Fast, secure and with thousands of apps to choose from, Ubuntu gives you a clean and streamlined experience that you can really make your own. And now you can even decide how you want it to look. Simply choose between our new and classic desktop experiences.</p></blockquote>
<p>Wait for a full review in a couple of days.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2011/04/ubuntu-11-04-natty-narwhal-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 steps to success Document Management System Implementation</title>
		<link>http://blog.hersoncruz.com/2011/04/8-steps-to-success-document-management-system-implementation/</link>
		<comments>http://blog.hersoncruz.com/2011/04/8-steps-to-success-document-management-system-implementation/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 12:20:41 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[knowledgetree]]></category>
		<category><![CDATA[management]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=474</guid>
		<description><![CDATA[If deploying a document management solution seems daunting for your organization, don’t worry – KnowledgeTree has distilled the document management best practice process into 8 manageable steps. View an infographic that illustrates the 8 Steps for Success when selecting and implementing online document management software for your small and medium business. You’ll be walked through [...]]]></description>
				<content:encoded><![CDATA[<p>If deploying a document management solution seems daunting for your organization, don’t worry – KnowledgeTree has distilled the document management best practice process into 8 manageable steps.</p>
<p>View an infographic that illustrates the 8 Steps for Success when selecting and implementing online document management software for your small and medium business.</p>
<p>You’ll be walked through a set of key points to consider as you:</p>
<ul>
<li>Define your document management objectives and system requirements
</li>
<li>Understand your business processes
</li>
<li>Determine your preferred delivery model – on-premise or hosted
</li>
<li>Select a document management system
</li>
<li>Prepare to implement it
</li>
<li>Get started and ensure user adoption</li>
</ul>
<div style="width:477px" id="__ss_7079719"> <strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/knowledgetree/document-management-best-practices-infographic" title="Document Management Best practices Infographic">Document Management Best practices Infographic</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/7079719" width="477" height="510" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
<div style="padding:5px 0 12px"> View more documents from <a href="http://www.slideshare.net/knowledgetree">KnowledgeTree Inc.</a> </div>
</p></div>
<p>Original URL for this post:</p>
<p>http://www.knowledgetree.com/trackback/873</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2011/04/8-steps-to-success-document-management-system-implementation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: The Unity Desktop Environment</title>
		<link>http://blog.hersoncruz.com/2011/03/video-the-unity-desktop-environment/</link>
		<comments>http://blog.hersoncruz.com/2011/03/video-the-unity-desktop-environment/#comments</comments>
		<pubDate>Sun, 27 Mar 2011 14:11:39 +0000</pubDate>
		<dc:creator>Herson</dc:creator>
				<category><![CDATA[debconf]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[unity]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://blog.hersoncruz.com/?p=470</guid>
		<description><![CDATA[Mark Shuttleworth discusses Unity, the shell for the Ubuntu Netbook Edition 10.10 at Debconf 10.]]></description>
				<content:encoded><![CDATA[<p>Mark Shuttleworth discusses Unity, the shell for the Ubuntu Netbook Edition 10.10 at Debconf 10.<br />
<center><br />
<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/0la37TaQs-o" frameborder="0" allowfullscreen></iframe><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hersoncruz.com/2011/03/video-the-unity-desktop-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
