<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 03:12:06 +0000</lastBuildDate>
    <item>
      <title>(Objective C) Quickest Way to Shell - Use system() instead of NSTask - zingo</title>
      <link>https://snipplr.com/view/56345/quickest-way-to-shell--use-system-instead-of-nstask</link>
      <description>&lt;p&gt;Cocoa provides NSTask to run subprocesses. It can be used to run shell scripts, but all this manual pipe and file handling is a bit cumbersome. Fortunately, for a simple script, we can use the trusty old system and redirect its result to a file.&lt;/p&gt;</description>
      <pubDate>Sat, 09 Jul 2011 04:53:37 UTC</pubDate>
      <guid>https://snipplr.com/view/56345/quickest-way-to-shell--use-system-instead-of-nstask</guid>
    </item>
    <item>
      <title>(Objective C) Checking If You App Has Been Run Before - zingo</title>
      <link>https://snipplr.com/view/54411/checking-if-you-app-has-been-run-before</link>
      <description>&lt;p&gt;Do you need you app to do something when it is first run on a certain computer? Do you need to know if it has been run before? Enter the following code into your Application Delegate.&#13;
&#13;
This code creates a BOOL that is created when the app is run. The if-else statement reads the value of the BOOL -- Yes or No. NOTE: You'll notice that if you run the app from xcode with the run button it says "Not run before". When you run it again it still says that. In order to truly test locate you apps Debug .app application then run that. Xcode clears out the data when you run it again. IT DOES WORK though, so don't worry if running you app in Xcode still gives you the Not Run Before result.&lt;/p&gt;</description>
      <pubDate>Thu, 26 May 2011 14:19:04 UTC</pubDate>
      <guid>https://snipplr.com/view/54411/checking-if-you-app-has-been-run-before</guid>
    </item>
    <item>
      <title>(Bash) Get a list of unique dtrace providers - zingo</title>
      <link>https://snipplr.com/view/52340/get-a-list-of-unique-dtrace-providers</link>
      <description>&lt;p&gt;Get a list of providers for DTrace that OSX supports. (DTrace is a probe/profiling tool created by Sun that came with Mac OS X starting with Leopard.)&lt;/p&gt;</description>
      <pubDate>Wed, 20 Apr 2011 01:07:45 UTC</pubDate>
      <guid>https://snipplr.com/view/52340/get-a-list-of-unique-dtrace-providers</guid>
    </item>
    <item>
      <title>(Objective C) Drawing Scaled Rectangles with NSDrawNinePartImage - zingo</title>
      <link>https://snipplr.com/view/39335/drawing-scaled-rectangles-with-nsdrawninepartimage</link>
      <description>&lt;p&gt;Drawing scaled rectangles of arbitrary width and height that keeps the corner and sides properly scaled while growing the center.&lt;/p&gt;</description>
      <pubDate>Fri, 20 Aug 2010 08:22:46 UTC</pubDate>
      <guid>https://snipplr.com/view/39335/drawing-scaled-rectangles-with-nsdrawninepartimage</guid>
    </item>
    <item>
      <title>(Other) List of Breakpoints for gdb - zingo</title>
      <link>https://snipplr.com/view/38166/list-of-breakpoints-for-gdb</link>
      <description>&lt;p&gt;List of breakpoints for debuging with gdb. Add them to your ~/.gdbinit.&lt;/p&gt;</description>
      <pubDate>Sun, 01 Aug 2010 06:01:57 UTC</pubDate>
      <guid>https://snipplr.com/view/38166/list-of-breakpoints-for-gdb</guid>
    </item>
    <item>
      <title>(Bash) Searching through Subversion history - zingo</title>
      <link>https://snipplr.com/view/31291/searching-through-subversion-history</link>
      <description>&lt;p&gt;grep through all history from within a Subversion working directory, like:&#13;
&#13;
$ svngrep SecItemCopyMatching *&lt;/p&gt;</description>
      <pubDate>Sun, 11 Apr 2010 19:53:03 UTC</pubDate>
      <guid>https://snipplr.com/view/31291/searching-through-subversion-history</guid>
    </item>
    <item>
      <title>(Objective C) Sending emails from Cocoa - zingo</title>
      <link>https://snipplr.com/view/26934/sending-emails-from-cocoa</link>
      <description>&lt;p&gt;With 10.5 Apple deprecated the use of NSMailDelivery  â€“ without a replacement. So the questions comes up regulary â€“ how does one send emails from Cocoa? Turns out there are couple of frameworks available that can also be used to do the job.&#13;
&#13;
* Pantomime  (LGPL license) - http://www.collaboration-world.com/pantomime/&#13;
* MailCore (New BSD license) - http://www.mronge.com/m/MailCore/&#13;
* EDMessage (BSD syle license) - http://www.mulle-kybernetik.com/software/EDFrameworks/download.html#EDMessage&#13;
&#13;
EDMessage has been around for ages. Checkout the example on how to use the API. MailCore is also really easy to use. But both lack support for asynchronous mail delivery. With MailCore I couldnâ€™t even work out how to send attachments. Also no idea if itâ€™s getting developed anymore. So if you are OK to use a LGPL library Pantomime seemed like a good choice. Sending simple emails is quite straight forward.&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jan 2010 22:02:38 UTC</pubDate>
      <guid>https://snipplr.com/view/26934/sending-emails-from-cocoa</guid>
    </item>
    <item>
      <title>(SQL) Calculating distance in Kilometres and Miles from Latitude and Longitude - zingo</title>
      <link>https://snipplr.com/view/24082/calculating-distance-in-kilometres-and-miles-from-latitude-and-longitude</link>
      <description>&lt;p&gt;Using SQL you can have your database return the distance between 2 sets of Lat and Long points, and using some math functions also take into account the curvature of the earth.&lt;/p&gt;</description>
      <pubDate>Tue, 01 Dec 2009 20:22:06 UTC</pubDate>
      <guid>https://snipplr.com/view/24082/calculating-distance-in-kilometres-and-miles-from-latitude-and-longitude</guid>
    </item>
    <item>
      <title>(Objective C) Detailed NSLog() via a Preprocessor Macro - zingo</title>
      <link>https://snipplr.com/view/21528/detailed-nslog-via-a-preprocessor-macro</link>
      <description>&lt;p&gt;Ever needed to see more context surrounding your NSLog statement to help you debug in the console?&lt;/p&gt;</description>
      <pubDate>Tue, 20 Oct 2009 22:51:49 UTC</pubDate>
      <guid>https://snipplr.com/view/21528/detailed-nslog-via-a-preprocessor-macro</guid>
    </item>
    <item>
      <title>(Bash) Git and SVN Status in the Bash Prompt - zingo</title>
      <link>https://snipplr.com/view/19999/git-and-svn-status-in-the-bash-prompt</link>
      <description>&lt;p&gt;Put this into your ~/.bashrc script and you should see the Git/SVN status in your prompt if your working directory is a sandbox.&lt;/p&gt;</description>
      <pubDate>Tue, 22 Sep 2009 00:01:21 UTC</pubDate>
      <guid>https://snipplr.com/view/19999/git-and-svn-status-in-the-bash-prompt</guid>
    </item>
    <item>
      <title>(MySQL) MySQL table size, number of rows, and size of indexes - zingo</title>
      <link>https://snipplr.com/view/12811/mysql-table-size-number-of-rows-and-size-of-indexes</link>
      <description>&lt;p&gt;Show table size, number of rows, and size of indexes in MySQL.&lt;/p&gt;</description>
      <pubDate>Wed, 04 Mar 2009 22:15:38 UTC</pubDate>
      <guid>https://snipplr.com/view/12811/mysql-table-size-number-of-rows-and-size-of-indexes</guid>
    </item>
    <item>
      <title>(Objective C) Parse Header File for Outlets and makes sure that they are set at Runtime - zingo</title>
      <link>https://snipplr.com/view/8642/parse-header-file-for-outlets-and-makes-sure-that-they-are-set-at-runtime</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 26 Sep 2008 20:33:33 UTC</pubDate>
      <guid>https://snipplr.com/view/8642/parse-header-file-for-outlets-and-makes-sure-that-they-are-set-at-runtime</guid>
    </item>
    <item>
      <title>(SVN) Template for DocBlock and svn:keywords - zingo</title>
      <link>https://snipplr.com/view/7479/template-for-docblock-and-svnkeywords</link>
      <description>&lt;p&gt;Substitute and update keywords like $HeadURL$, $Revision$, etc. in a file on every commit to subversion repos.&#13;
&#13;
1. Set svn:keywords on repos:&#13;
$ svn propset --recursive svn:keywords 'HeadURL Revision LastChangedBy Date' /path/to/repo&#13;
&#13;
2. Use this source in your file.&lt;/p&gt;</description>
      <pubDate>Thu, 24 Jul 2008 17:04:02 UTC</pubDate>
      <guid>https://snipplr.com/view/7479/template-for-docblock-and-svnkeywords</guid>
    </item>
    <item>
      <title>(Objective C) Removing preferences belonging to your app - zingo</title>
      <link>https://snipplr.com/view/7453/removing-preferences-belonging-to-your-app</link>
      <description>&lt;p&gt;Remove all the keys of the applicationâ€™s preferences file from ~/Library/Preferences with Cocoaâ€™s NSUserDefaults class.&lt;/p&gt;</description>
      <pubDate>Tue, 22 Jul 2008 23:40:51 UTC</pubDate>
      <guid>https://snipplr.com/view/7453/removing-preferences-belonging-to-your-app</guid>
    </item>
    <item>
      <title>(Bash) Quick new tab from iTerm - zingo</title>
      <link>https://snipplr.com/view/7451/quick-new-tab-from-iterm</link>
      <description>&lt;p&gt;Place this in your ~/.bash_profile then type tab in your terminal window to see some magic happen.&lt;/p&gt;</description>
      <pubDate>Tue, 22 Jul 2008 21:46:31 UTC</pubDate>
      <guid>https://snipplr.com/view/7451/quick-new-tab-from-iterm</guid>
    </item>
    <item>
      <title>(Bash) Sort Directories by Size - zingo</title>
      <link>https://snipplr.com/view/7450/sort-directories-by-size</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 22 Jul 2008 21:19:52 UTC</pubDate>
      <guid>https://snipplr.com/view/7450/sort-directories-by-size</guid>
    </item>
    <item>
      <title>(Objective C) Kill App after Expire Date (Suicidal Code Redux) - zingo</title>
      <link>https://snipplr.com/view/7196/kill-app-after-expire-date-suicidal-code-redux</link>
      <description>&lt;p&gt;Using a gcc predefined macro, __DATE__, the code can know for itself when it was compiled, and build in an expiration date based on that value.&#13;
&#13;
The former code (http://snipplr.com/view/3448/kill-app-after-expire-date/) was not internationalised and might cause an issue when run outside of English speaking countries. This code resolves the locale issue.&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 22:39:05 UTC</pubDate>
      <guid>https://snipplr.com/view/7196/kill-app-after-expire-date-suicidal-code-redux</guid>
    </item>
    <item>
      <title>(Bash) Words with many doubled letters - zingo</title>
      <link>https://snipplr.com/view/7056/words-with-many-doubled-letters</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 01 Jul 2008 19:28:07 UTC</pubDate>
      <guid>https://snipplr.com/view/7056/words-with-many-doubled-letters</guid>
    </item>
    <item>
      <title>(PHP) Using the svn revision number in cakePHP application - zingo</title>
      <link>https://snipplr.com/view/6891/using-the-svn-revision-number-in-cakephp-application</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 24 Jun 2008 19:44:33 UTC</pubDate>
      <guid>https://snipplr.com/view/6891/using-the-svn-revision-number-in-cakephp-application</guid>
    </item>
    <item>
      <title>(Bash) SVN rename all your CakePHP views from thtml to ctp - zingo</title>
      <link>https://snipplr.com/view/6485/svn-rename-all-your-cakephp-views-from-thtml-to-ctp</link>
      <description>&lt;p&gt;Recursively SVN rename (move) all thtml-files to ctp-files .  Fires this up in CakePHPs /views path.&lt;/p&gt;</description>
      <pubDate>Wed, 28 May 2008 16:34:24 UTC</pubDate>
      <guid>https://snipplr.com/view/6485/svn-rename-all-your-cakephp-views-from-thtml-to-ctp</guid>
    </item>
    <item>
      <title>(Objective C) Filesystem - Testing FS Type - zingo</title>
      <link>https://snipplr.com/view/6193/filesystem--testing-fs-type</link>
      <description>&lt;p&gt;This can be used to test FS type.&lt;/p&gt;</description>
      <pubDate>Mon, 12 May 2008 21:54:23 UTC</pubDate>
      <guid>https://snipplr.com/view/6193/filesystem--testing-fs-type</guid>
    </item>
    <item>
      <title>(SQL) Storing an IP address in a database table - zingo</title>
      <link>https://snipplr.com/view/5761/storing-an-ip-address-in-a-database-table</link>
      <description>&lt;p&gt;You can store an IP address in an INT UNSIGNED (4 bytes) which is of course much more efficient and faster than a CHAR(15).&#13;
MySQL has two built-in functions: INET_ATON() and INET_NTOA(). These two functions are used allover the place in any TCP/IP stack implementation or even application.&#13;
The INET_ATON() function converts Internet addresses from the numbers-and-dots notation into a 32-bit unsigned integer, and INET_NTOA() does the opposite.&lt;/p&gt;</description>
      <pubDate>Wed, 09 Apr 2008 20:31:52 UTC</pubDate>
      <guid>https://snipplr.com/view/5761/storing-an-ip-address-in-a-database-table</guid>
    </item>
    <item>
      <title>(CSS) 8 Premium One Line Css Tips - zingo</title>
      <link>https://snipplr.com/view/5760/8-premium-one-line-css-tips</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 09 Apr 2008 19:56:26 UTC</pubDate>
      <guid>https://snipplr.com/view/5760/8-premium-one-line-css-tips</guid>
    </item>
    <item>
      <title>(Bash) Emulating a Slow Internet Link for HTTP - zingo</title>
      <link>https://snipplr.com/view/5552/emulating-a-slow-internet-link-for-http</link>
      <description>&lt;p&gt;recover to normal speed with &#13;
/sbin/ipfw delete 100&#13;
/sbin/ipfw delete 200&#13;
... or reboot&lt;/p&gt;</description>
      <pubDate>Mon, 24 Mar 2008 22:51:35 UTC</pubDate>
      <guid>https://snipplr.com/view/5552/emulating-a-slow-internet-link-for-http</guid>
    </item>
    <item>
      <title>(Other) Get Infos on a DVD from Amazon-Webservices by UPC - zingo</title>
      <link>https://snipplr.com/view/5306/get-infos-on-a-dvd-from-amazonwebservices-by-upc</link>
      <description>&lt;p&gt;[AmazonID] = your Amazon Webservice Access Id&#13;
[UPC] = the DVDs Universal Product Code&lt;/p&gt;</description>
      <pubDate>Thu, 06 Mar 2008 18:12:45 UTC</pubDate>
      <guid>https://snipplr.com/view/5306/get-infos-on-a-dvd-from-amazonwebservices-by-upc</guid>
    </item>
    <item>
      <title>(Objective C) Testing Regular Expressions for NSString - zingo</title>
      <link>https://snipplr.com/view/5165/testing-regular-expressions-for-nsstring</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 23 Feb 2008 22:16:42 UTC</pubDate>
      <guid>https://snipplr.com/view/5165/testing-regular-expressions-for-nsstring</guid>
    </item>
    <item>
      <title>(Objective C) Saving Data to File - zingo</title>
      <link>https://snipplr.com/view/5138/saving-data-to-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 21 Feb 2008 01:50:59 UTC</pubDate>
      <guid>https://snipplr.com/view/5138/saving-data-to-file</guid>
    </item>
    <item>
      <title>(Bash) Get Infos on WLAN on OSX - zingo</title>
      <link>https://snipplr.com/view/5050/get-infos-on-wlan-on-osx</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 13 Feb 2008 18:14:57 UTC</pubDate>
      <guid>https://snipplr.com/view/5050/get-infos-on-wlan-on-osx</guid>
    </item>
    <item>
      <title>(Bash) Get Infos on Battery on OSX - zingo</title>
      <link>https://snipplr.com/view/5049/get-infos-on-battery-on-osx</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 13 Feb 2008 18:11:53 UTC</pubDate>
      <guid>https://snipplr.com/view/5049/get-infos-on-battery-on-osx</guid>
    </item>
    <item>
      <title>(AppleScript) Get the Count of unread Messages in Vienna (RSS-Reader) - zingo</title>
      <link>https://snipplr.com/view/4991/get-the-count-of-unread-messages-in-vienna-rssreader</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 11 Feb 2008 14:35:45 UTC</pubDate>
      <guid>https://snipplr.com/view/4991/get-the-count-of-unread-messages-in-vienna-rssreader</guid>
    </item>
    <item>
      <title>(Bash) Get Temperature on OSX - zingo</title>
      <link>https://snipplr.com/view/4966/get-temperature-on-osx</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 09 Feb 2008 13:31:27 UTC</pubDate>
      <guid>https://snipplr.com/view/4966/get-temperature-on-osx</guid>
    </item>
    <item>
      <title>(SQL) Differences between two Tables - zingo</title>
      <link>https://snipplr.com/view/4869/differences-between-two-tables</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 01 Feb 2008 04:26:53 UTC</pubDate>
      <guid>https://snipplr.com/view/4869/differences-between-two-tables</guid>
    </item>
    <item>
      <title>(Objective C) Macro for ASL Log like NSLog - zingo</title>
      <link>https://snipplr.com/view/4684/macro-for-asl-log-like-nslog</link>
      <description>&lt;p&gt;Macro to give an asl_log-like NSLog.&lt;/p&gt;</description>
      <pubDate>Sun, 20 Jan 2008 20:19:32 UTC</pubDate>
      <guid>https://snipplr.com/view/4684/macro-for-asl-log-like-nslog</guid>
    </item>
    <item>
      <title>(Bash) Determine the change in file size in lines between Subversion revisions - zingo</title>
      <link>https://snipplr.com/view/4461/determine-the-change-in-file-size-in-lines-between-subversion-revisions</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 04 Jan 2008 20:55:20 UTC</pubDate>
      <guid>https://snipplr.com/view/4461/determine-the-change-in-file-size-in-lines-between-subversion-revisions</guid>
    </item>
    <item>
      <title>(Bash) Find possible plist-Files for an given Application - zingo</title>
      <link>https://snipplr.com/view/4368/find-possible-plistfiles-for-an-given-application</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 16 Dec 2007 02:30:43 UTC</pubDate>
      <guid>https://snipplr.com/view/4368/find-possible-plistfiles-for-an-given-application</guid>
    </item>
    <item>
      <title>(Other) ItemAttributes for SearchIndex "DVD" in Amazon Web Services - zingo</title>
      <link>https://snipplr.com/view/4324/itemattributes-for-searchindex-dvd-in-amazon-web-services</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 13 Dec 2007 22:54:22 UTC</pubDate>
      <guid>https://snipplr.com/view/4324/itemattributes-for-searchindex-dvd-in-amazon-web-services</guid>
    </item>
    <item>
      <title>(Objective C) Macro for VERBOSE_DEBUG_OUTPUT - zingo</title>
      <link>https://snipplr.com/view/4235/macro-for-verbosedebugoutput</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 01 Dec 2007 19:28:07 UTC</pubDate>
      <guid>https://snipplr.com/view/4235/macro-for-verbosedebugoutput</guid>
    </item>
    <item>
      <title>(SQL) Generate Simple Bar Charts From a MySQL Prompt - zingo</title>
      <link>https://snipplr.com/view/3934/generate-simple-bar-charts-from-a-mysql-prompt</link>
      <description>&lt;p&gt;You can generate a simple bar chart of the values by executing this command...&lt;/p&gt;</description>
      <pubDate>Fri, 19 Oct 2007 00:40:13 UTC</pubDate>
      <guid>https://snipplr.com/view/3934/generate-simple-bar-charts-from-a-mysql-prompt</guid>
    </item>
    <item>
      <title>(Objective C) Importing data with coredata - zingo</title>
      <link>https://snipplr.com/view/3884/importing-data-with-coredata</link>
      <description>&lt;p&gt;A database table is basically an array of dictionary objects. As long &#13;
as all the fields are valid property list types, you can loop through &#13;
the array creating a managed object for each dictionary and setting &#13;
the values. If you have an array controller in your nib and it's &#13;
configured for your managed object, you can use this (where plist is &#13;
expected to be an NSArray* - not sure why I made it an id).&lt;/p&gt;</description>
      <pubDate>Thu, 11 Oct 2007 21:57:17 UTC</pubDate>
      <guid>https://snipplr.com/view/3884/importing-data-with-coredata</guid>
    </item>
    <item>
      <title>(Bash) Enable Objective-C Messages Tracing - zingo</title>
      <link>https://snipplr.com/view/3856/enable-objectivec-messages-tracing</link>
      <description>&lt;p&gt;If you set the NSObjCMessageLoggingEnabled environment variable to "YES", the Objective-C runtime will log all dispatched Objective-C messages to a file named /tmp/msgSends-.&lt;/p&gt;</description>
      <pubDate>Sun, 07 Oct 2007 17:58:05 UTC</pubDate>
      <guid>https://snipplr.com/view/3856/enable-objectivec-messages-tracing</guid>
    </item>
    <item>
      <title>(Objective C) NSLog with NSError and NSArray with managedObjectContext - zingo</title>
      <link>https://snipplr.com/view/3497/nslog-with-nserror-and-nsarray-with-managedobjectcontext</link>
      <description>&lt;p&gt;Prints content from an NSError or NSArray content from a managedObjectContext.&lt;/p&gt;</description>
      <pubDate>Thu, 09 Aug 2007 19:28:39 UTC</pubDate>
      <guid>https://snipplr.com/view/3497/nslog-with-nserror-and-nsarray-with-managedobjectcontext</guid>
    </item>
    <item>
      <title>(Bash) List all application versions - zingo</title>
      <link>https://snipplr.com/view/3467/list-all-application-versions</link>
      <description>&lt;p&gt;List the current version and installation date of every application on a OS X system, using of Spotlight.&lt;/p&gt;</description>
      <pubDate>Sun, 05 Aug 2007 20:14:51 UTC</pubDate>
      <guid>https://snipplr.com/view/3467/list-all-application-versions</guid>
    </item>
    <item>
      <title>(CSS) Notebox for sourcecode on blog page - zingo</title>
      <link>https://snipplr.com/view/3455/notebox-for-sourcecode-on-blog-page</link>
      <description>&lt;p&gt;displays sourcecode in a nice notebox on blog pages. uses  with a class.&lt;/p&gt;</description>
      <pubDate>Sun, 05 Aug 2007 18:18:09 UTC</pubDate>
      <guid>https://snipplr.com/view/3455/notebox-for-sourcecode-on-blog-page</guid>
    </item>
    <item>
      <title>(Objective C) kill app after expire date - zingo</title>
      <link>https://snipplr.com/view/3448/kill-app-after-expire-date</link>
      <description>&lt;p&gt;Using a gcc predefined macro, __DATE__, the code can know for itself when it was compiled, and build in an expiration date based on that value.&#13;
&#13;
For a internationalised version see: http://snipplr.com/view/7196/kill-app-after-expire-date-suicidal-code-redux/&lt;/p&gt;</description>
      <pubDate>Fri, 03 Aug 2007 22:48:27 UTC</pubDate>
      <guid>https://snipplr.com/view/3448/kill-app-after-expire-date</guid>
    </item>
    <item>
      <title>(Bash) The Top Ten Unix Shell Commands You Use - zingo</title>
      <link>https://snipplr.com/view/3254/the-top-ten-unix-shell-commands-you-use</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 08 Jul 2007 19:24:31 UTC</pubDate>
      <guid>https://snipplr.com/view/3254/the-top-ten-unix-shell-commands-you-use</guid>
    </item>
    <item>
      <title>(Bash) cd's to a directory and lists the contents - zingo</title>
      <link>https://snipplr.com/view/2922/cds-to-a-directory-and-lists-the-contents</link>
      <description>&lt;p&gt;for .bashrc, a function that cd's to a directory and lists the contents it takes ls arguments and a directory. for example, cl goes to home dir and lists contents. cl -l goes to ~/ and long lists contents. and cl -lrt public_html shows the contents of public_html in long list reverse time order.&lt;/p&gt;</description>
      <pubDate>Sun, 17 Jun 2007 17:11:58 UTC</pubDate>
      <guid>https://snipplr.com/view/2922/cds-to-a-directory-and-lists-the-contents</guid>
    </item>
    <item>
      <title>(Bash) Display svn changelog on "svn up" - zingo</title>
      <link>https://snipplr.com/view/2921/display-svn-changelog-on-svn-up</link>
      <description>&lt;p&gt;updates (svn up) a working copy and displays the changes&lt;/p&gt;</description>
      <pubDate>Sun, 17 Jun 2007 16:43:03 UTC</pubDate>
      <guid>https://snipplr.com/view/2921/display-svn-changelog-on-svn-up</guid>
    </item>
  </channel>
</rss>
