<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>celsobarriga-dot-com</title>
	<link>http://www.celsobarriga.com</link>
	<description>Wasting bandwidth in style!</description>
	<lastBuildDate>Sun, 06 Nov 2011 21:27:51 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>Enabling AirDrop on older systems</title>
		<description><![CDATA[You can enable AirDrop for many older Lion systems at the Terminal command line. Enter: defaults write com.apple.NetworkBrowser BrowseAllInterfaces 1 After setting the defaults, you&#8217;ll need to restart Finder: killall Finder]]></description>
		<link>http://www.celsobarriga.com/2011/11/06/enabling-airdrop-on-older-systems/</link>
			</item>
	<item>
		<title>Ejecting a stuck CD or DVD on a Mac</title>
		<description><![CDATA[If you have a stuck CD or DVD on your Mac, and the desktop icon for the media has disappeared from the desktop so that you can no longer drag it to the trash, you can manually eject the media without rebooting the machine by executing the following command from the Terminal: drutil tray eject]]></description>
		<link>http://www.celsobarriga.com/2010/09/13/ejecting-a-stuck-cd-or-dvd-on-a-mac/</link>
			</item>
	<item>
		<title>dyld: shared cached was built against a different libSystem.dylib, ignoring cache</title>
		<description><![CDATA[I just upgraded my MacBook Pro&#8217;s hard drive to one with a bigger capacity. After restoring the contents from the old drive to the new one using an image created by SuperDuper!, I keep on getting this error every time I launch the Terminal application: dyld: shared cached was built against a different libSystem.dylib, ignoring [...]]]></description>
		<link>http://www.celsobarriga.com/2009/08/13/dyld-shared-cached-was-built-against-a-different-libsystemdylib-ignoring-cache/</link>
			</item>
	<item>
		<title>Wish you were here!</title>
		<description><![CDATA[&#8230; but this is probably the next best thing! Took some panorama shots of the front and back yards today. It&#8217;s been a while since I&#8217;ve done my last panoramas, so it&#8217;s almost like learning from the beginning once again. Anyway, here&#8217;s the result and pardon some of the photo misalignments. Frontyard Backyard Note:This requires [...]]]></description>
		<link>http://www.celsobarriga.com/2009/08/09/wish-you-were-here/</link>
			</item>
	<item>
		<title>Base64 Encoding and Decoding</title>
		<description><![CDATA[At one time, I needed to encode and decode strings in Base64 but I was on a very old Perl version that does not include the MIME::Base64 core module, nor am I able to install the said module. So, here&#8217;s the source for encoding and decoding Base64 ripped from the MIME::Base64 module: sub EncodeBase64 { [...]]]></description>
		<link>http://www.celsobarriga.com/2009/05/28/base64-encoding-and-decoding/</link>
			</item>
	<item>
		<title>Skydiving video</title>
		<description><![CDATA[Look what I did last weekend! I went for a tandem skydive at Pepperell, MA on May 24th, 2009. What a rush; it was an awesome experience! See full post to see the movie.]]></description>
		<link>http://www.celsobarriga.com/2009/05/25/skydiving-video/</link>
			</item>
	<item>
		<title>Read string from stdin using fgets</title>
		<description><![CDATA[#include &#60;stdio.h> #include &#60;string.h> int main(void) { char str[80]; int i; printf("Enter a string: "); fgets(str, 10, stdin); /* remove newline, if present */ i = strlen(str)-1; if( str[ i ] == '\n') str[i] = '\0'; printf("This is your string: %s", str); return 0; }]]></description>
		<link>http://www.celsobarriga.com/2009/02/26/read-string-from-stdin-using-fgets/</link>
			</item>
	<item>
		<title>How to determine DST time changes</title>
		<description><![CDATA[Here&#8217;s how to determine the dates when the Daylight Savings Time changes for a given year (I keep forgetting how to do this.): zdump -v /etc/localtime&#124;grep 2008 /etc/localtime Sun Mar 9 06:59:59 2008 UTC = Sun Mar 9 01:59:59 2008 EST isdst=0 gmtoff=-18000 /etc/localtime Sun Mar 9 07:00:00 2008 UTC = Sun Mar 9 03:00:00 [...]]]></description>
		<link>http://www.celsobarriga.com/2008/02/01/how-to-determine-dst-time-changes/</link>
			</item>
	<item>
		<title>Uninstall Perl Module</title>
		<description><![CDATA[Here&#39;s how to cleanly uninstall any Perl module: #!/usr/local/bin/perl use ExtUtils::Packlist; use ExtUtils::Installed; $ARGV[0] or die "Usage: $0 Module::Name\n"; my $mod = $ARGV[0]; my $inst = ExtUtils::Installed->new(); foreach my $item (sort($inst->files($mod))) { print "removing $item\n"; unlink $item; } my $packfile = $inst->packlist($mod)->packlist_file(); print "removing $packfile\n"; unlink $packfile;]]></description>
		<link>http://www.celsobarriga.com/2008/01/10/uninstall-perl-module/</link>
			</item>
	<item>
		<title>Find Out the Top 10 CPU Hogs</title>
		<description><![CDATA[I found this command useful in finding out which top 10 processes are hogging my CPU resources. Note that this command is specific to the Red Hat flavor of Linux. See the man page for ps for the correct output format to use for your specific platform: ps -eo pcpu,pid,user,args &#124; sort -k1 -r &#124; [...]]]></description>
		<link>http://www.celsobarriga.com/2007/08/29/find-out-the-top-10-cpu-hogs/</link>
			</item>
</channel>
</rss>

