<?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 17:53:46 +0000</lastBuildDate>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - b0tanik</title>
      <link>https://snipplr.com/view/109811/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 16 Sep 2015 18:36:50 UTC</pubDate>
      <guid>https://snipplr.com/view/109811/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(iPhone) fetch drop down values from API using ionic - w2ssolutions</title>
      <link>https://snipplr.com/view/102890/fetch-drop-down-values-from-api-using-ionic</link>
      <description>&lt;p&gt;Cross platform development is usually an interesting puzzle to solve. Developers will have to concentrate on meeting the requirement and also focus on getting it done for multiple platforms. We would like to showcase a small html and control file that uses ionic framework. Ofcourse the base app development tool is Adobe Phonegap. Ionic framework provides us the flexibility to use Angular JS and HTML 5. &#13;
&#13;
Here is a sample code for an UI and the controller.js file. The controller uses a dropdown that fetch values dynamically from a Webservice.&lt;/p&gt;</description>
      <pubDate>Fri, 19 Jun 2015 19:13:32 UTC</pubDate>
      <guid>https://snipplr.com/view/102890/fetch-drop-down-values-from-api-using-ionic</guid>
    </item>
    <item>
      <title>(C#) How to achieve auto answer for SIP telephony in C# - sacha-manji</title>
      <link>https://snipplr.com/view/96704/how-to-achieve-auto-answer-for-sip-telephony-in-c</link>
      <description>&lt;p&gt;I had a go at softphone development some months ago. It isnâ€™t secret that I want to build a powerful IVR system to make the current call centers much more effective. Yes, there are many similar software available on the market for this purpose, but I believe in my idea that can turn call centers better than ever. Iâ€™m intended to give a taste of my project from time to time. First, I present a short and concise guide on how to implement auto answering to be able to accept a SIP phone call immediately.&#13;
&#13;
Letâ€™s look at the prerequisites:&#13;
&#13;
 - PBX: To be able to make and receive SIP voice calls, a phone system (e.g. Asterisk) is essentially needed. You need to add a new SIP account in your PBX for this console application.&#13;
 - Visual Studio: This solution is based on a console softphone, so a new Visual C# Console Application is just enough.&#13;
 - VoIPSDK.dll: I used prewritten VoIP components to implement the SIP telephony feature. The necessary .dll file can be found on this website: http://www.voip-sip-sdk.com/. It should be added to your references.&#13;
 - Test phone: To test your application you can use any VoIP phone that supports video calling (e.g. Bria softphone).&#13;
&#13;
After checking the prerequisites, take a look at the code. As it can be seen, just a few lines of C# code are enough to connect the application to a PBX and to build the auto answering. First of all, you need to implement the SIP registration. Thereafter, you need to create a softphone and a phone line object, then you need to specify the SIP account to be used for the phone line. These configurations are needed to be able to register to your PBX. After calling the RegisterAccount method the registration procedure starts, and the application will indicates its status due to the line_RegStateChanged method. The softphone_IncomingCall method is used to perceive the incoming calls, while the Auto_Answer_Method is responsible for accepting the incoming calls automatically. The call_CallStateChanged method is used to indicate the state of the call.&#13;
&#13;
Test the program:&#13;
&#13;
In order to demonstrate how this solution works, I provided valid SIP account details for this console application to be able to register to my PBX, and I also configured an other SIP account for my Bria softphone. After running the application, I dialled the telephone number of the console application by using Bria, and the console application accepted the incoming call automatically â€“ without any human intervention.&lt;/p&gt;</description>
      <pubDate>Mon, 13 Apr 2015 23:49:56 UTC</pubDate>
      <guid>https://snipplr.com/view/96704/how-to-achieve-auto-answer-for-sip-telephony-in-c</guid>
    </item>
    <item>
      <title>(C#) How to achieve auto answer for SIP telephony in C# - sacha-manji</title>
      <link>https://snipplr.com/view/96703/how-to-achieve-auto-answer-for-sip-telephony-in-c</link>
      <description>&lt;p&gt;I had a go at softphone development some months ago. It isnâ€™t secret that I want to build a powerful IVR system to make the current call centers much more effective. Yes, there are many similar software available on the market for this purpose, but I believe in my idea that can turn call centers better than ever. Iâ€™m intended to give a taste of my project from time to time. First, I present a short and concise guide on how to implement auto answering to be able to accept a SIP phone call immediately.&#13;
&#13;
Letâ€™s look at the prerequisites:&#13;
&#13;
 - PBX: To be able to make and receive SIP voice calls, a phone system (e.g. Asterisk) is essentially needed. You need to add a new SIP account in your PBX for this console application.&#13;
 - Visual Studio: This solution is based on a console softphone, so a new Visual C# Console Application is just enough.&#13;
 - VoIPSDK.dll: I used prewritten VoIP components to implement the SIP telephony feature. The necessary .dll file can be found on this website: http://www.voip-sip-sdk.com/. It should be added to your references.&#13;
 - Test phone: To test your application you can use any VoIP phone that supports video calling (e.g. Bria softphone).&#13;
&#13;
After checking the prerequisites, take a look at the code. As it can be seen, just a few lines of C# code are enough to connect the application to a PBX and to build the auto answering. First of all, you need to implement the SIP registration. Thereafter, you need to create a softphone and a phone line object, then you need to specify the SIP account to be used for the phone line. These configurations are needed to be able to register to your PBX. After calling the RegisterAccount method the registration procedure starts, and the application will indicates its status due to the line_RegStateChanged method. The softphone_IncomingCall method is used to perceive the incoming calls, while the Auto_Answer_Method is responsible for accepting the incoming calls automatically. The call_CallStateChanged method is used to indicate the state of the call.&#13;
&#13;
Test the program:&#13;
&#13;
In order to demonstrate how this solution works, I provided valid SIP account details for this console application to be able to register to my PBX, and I also configured an other SIP account for my Bria softphone. After running the application, I dialled the telephone number of the console application by using Bria, and the console application accepted the incoming call automatically â€“ without any human intervention.&lt;/p&gt;</description>
      <pubDate>Mon, 13 Apr 2015 23:49:49 UTC</pubDate>
      <guid>https://snipplr.com/view/96703/how-to-achieve-auto-answer-for-sip-telephony-in-c</guid>
    </item>
    <item>
      <title>(PHP) Secure Your Cakephp Website By Following These Simple Steps! - cakephpexpert</title>
      <link>https://snipplr.com/view/93678/secure-your-cakephp-website-by-following-these-simple-steps</link>
      <description>&lt;p&gt;&lt;p&gt;Follow these steps to secure your Cakephp Website:&lt;/p&gt;&#13;
&#13;
&lt;p&gt;*Before you actually start using Security Component functionality, make sure you use $components = array (â€˜Securityâ€™, â€˜Authâ€™) in the array so you can extend its functionality in the other components as well.&lt;/p&gt;&#13;
&#13;
&lt;p&gt;*Set security level "Medium" or "High" (in core.php config file)&lt;/p&gt;&#13;
&#13;
&lt;p&gt;*Add single line of code to your controllerâ€™s before Filter () method: $this-&gt;Security-&gt;requireAuth(â€˜action_nameâ€™) &lt;/p&gt;&#13;
&#13;
&lt;p&gt;&lt;strong&gt;To assure more security, add few more lines of code in controller section:&lt;/strong&gt;&lt;/p&gt;&#13;
&#13;
&lt;p&gt;&lt;code&gt;$key = Security::generateAuthKey ();&#13;
$this-&gt;set (â€˜safeâ€™, $key);&#13;
$this-&gt;Session-&gt;write (â€˜safeâ€™, $key);&lt;/code&gt;&lt;/p&gt;&#13;
&#13;
&lt;p&gt;&lt;strong&gt;Or alternatively adding this code sequence in your view&lt;/strong&gt;&lt;/p&gt;&#13;
&#13;
&lt;p&gt;&lt;code&gt;echo $this-&gt;Form-&gt;create(â€˜Postâ€™);&#13;
echo $this-&gt;Form-&gt;hidden(â€˜safeâ€™, $safe);&#13;
echo $this-&gt;Form-&gt;input(â€˜titleâ€™);&#13;
echo $this-&gt;Form-&gt;input(â€˜contentâ€™);&#13;
echo $this-&gt;Form-&gt;end(â€˜Submitâ€™);&lt;/code&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 16 Mar 2015 21:58:17 UTC</pubDate>
      <guid>https://snipplr.com/view/93678/secure-your-cakephp-website-by-following-these-simple-steps</guid>
    </item>
    <item>
      <title>(JavaScript) EnjoyHint 3.0 To Add Free Hints and Tips To Site Or App - lanagio</title>
      <link>https://snipplr.com/view/89543/enjoyhint-30-to-add-free-hints-and-tips-to-site-or-app</link>
      <description>&lt;p&gt;The new updated introduced auto scrolling to highlighted elements, possibility to hide 'next' and 'skip' buttons, add html markup in description, and more.&lt;/p&gt;</description>
      <pubDate>Fri, 06 Feb 2015 22:41:28 UTC</pubDate>
      <guid>https://snipplr.com/view/89543/enjoyhint-30-to-add-free-hints-and-tips-to-site-or-app</guid>
    </item>
    <item>
      <title>(C#) How to make SIP video calls in C# - sacha-manji</title>
      <link>https://snipplr.com/view/88431/how-to-make-sip-video-calls-in-c</link>
      <description>&lt;p&gt;While searching on the Internet on how to make SIP video calls using C#, I recognised that there arenâ€™t any brief and straightforward tutorial in this topic. I found multi-page articles (sorry, but some of them are full of bullsh*t) and neverending forum threads, but none of them provided me complete solution. Therefore, I undertook to create a short and concise guide on how to make video calls in C# using the VoIP technology.&#13;
&#13;
Look at the prerequisites:&#13;
&#13;
-	PBX: To be able to make and receive video calls you, a phone system (e.g. Asterisk) is essentially needed. You need to add a new SIP account in your PBX for this application.&#13;
&#13;
-	Visual Studio: This solution is based on a console softphone, so a new Visual C# Console Application is just enough.&#13;
&#13;
-	VoIPSDK.dll: I used prewritten VoIP components to implement the SIP video calling feature. The necessary .dll file can be found on this website: http://www.voip-sip-sdk.com/. It should be added to your references.&#13;
&#13;
-	Test phone: To test your application you can use any VoIP phone stat supports video calling (e.g. Bria softphone).&#13;
&#13;
Now take a look at the code. As you can see below, just a few lines of C# code are enough to connect the application to a PBX and to initiate a video call. Firstly, you need to perform the SIP registration tasks. You need to create a softphone and a phone line object, then you need to specify the SIP account to be used for the phone line. These configurations are needed to be able to register to your PBX. After calling the RegisterPhoneLine method the regsitration procedure starts, and the application will indicates its status due to the mySoftphone_PhoneLineStateChanged method. The PhoneCallVideoSender and PhoneCallVideoReceiver objects are responsible for video handling. To handle the USB webcamera, the WebCamera object can be used. The CallType class is used to identify whether the call is a video or an audio call.&#13;
&#13;
To make a test call, provide valid SIP account details for this console application to be able to register to your PBX, then specify a telephone number to be dialled (it can be an other SIP account that has been previously registered to the PBX). After running the application, it dials the provided phone number automatically meanwhile sending the image of the webcamera.&lt;/p&gt;</description>
      <pubDate>Mon, 26 Jan 2015 21:50:53 UTC</pubDate>
      <guid>https://snipplr.com/view/88431/how-to-make-sip-video-calls-in-c</guid>
    </item>
    <item>
      <title>(PHP) Magento Tutorial: Magento Module Development - magestore</title>
      <link>https://snipplr.com/view/80552/magento-tutorial-magento-module-development</link>
      <description>&lt;p&gt;Magento Made Easy - Comprehensive Guide to Magento Setup and Development is a free and easy to use Magento book. It gives you the fundamental background of Magento with two parts: Magento Overview and Magento Module Development.&lt;/p&gt;</description>
      <pubDate>Thu, 30 Oct 2014 14:59:32 UTC</pubDate>
      <guid>https://snipplr.com/view/80552/magento-tutorial-magento-module-development</guid>
    </item>
    <item>
      <title>(Java) Load Existing Email Message and Modify its Contents inside Android Apps - johansonkatherine</title>
      <link>https://snipplr.com/view/74654/load-existing-email-message-and-modify-its-contents-inside-android-apps</link>
      <description>&lt;p&gt;This technical tip shows how to load any existing email message and modify its contents before saving it back to disk using Aspose.Email for Android API. To do this successfully, specify the MessageFormat when loading the email message from disk. In addition, it is important to specify the correct MailMessageSaveType when saving the message back to disk.&#13;
&#13;
To update and save an email, the following steps can be used:&#13;
1.	Create an instance of the MailMessage class.&#13;
2.	Load an existing message using the MailMessage class' load() method and specifying the MessageFormat of the existing message.&#13;
3.	Get the subject using getSubject().&#13;
4.	After modifying the subject, set it again using the setSubject() method.&#13;
5.	Get the body using getHtmlBody().&#13;
6.	AFter modifying the body, set it using the setHtmlBody() method .&#13;
7.	Create an instance of the MailAddressCollection class.&#13;
8.	Get the recipients from the TO field into a MailAddressCollection object using the getTo() method exposed by the MailMessage class.&#13;
9.	Add or remove recipients using the add() and remove() methods exposed by the MailAddressCollection class.&#13;
10.	Get the recipients from the CC field into a MailAddressCollection object using the getCC() method exposed by MailMessage class.&#13;
11.	Add or remove recipients using the add() and remove() methods exposed by the MailAddressCollection class.&#13;
12.	Call the save() method exposed by the MailMessage class, specifying the correct MailMessageSaveType to save the message file to the disk in MSG format.&lt;/p&gt;</description>
      <pubDate>Thu, 22 May 2014 14:54:02 UTC</pubDate>
      <guid>https://snipplr.com/view/74654/load-existing-email-message-and-modify-its-contents-inside-android-apps</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - gurin2014</title>
      <link>https://snipplr.com/view/73754/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 28 Feb 2014 02:42:03 UTC</pubDate>
      <guid>https://snipplr.com/view/73754/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - jtjiver</title>
      <link>https://snipplr.com/view/72177/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 22 Aug 2013 16:51:30 UTC</pubDate>
      <guid>https://snipplr.com/view/72177/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - jdcruz74</title>
      <link>https://snipplr.com/view/71398/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 05 Jun 2013 02:13:54 UTC</pubDate>
      <guid>https://snipplr.com/view/71398/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - Bloguintosh</title>
      <link>https://snipplr.com/view/71138/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 11 May 2013 19:37:53 UTC</pubDate>
      <guid>https://snipplr.com/view/71138/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - cray</title>
      <link>https://snipplr.com/view/70481/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 20 Mar 2013 07:42:35 UTC</pubDate>
      <guid>https://snipplr.com/view/70481/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - ekarakas</title>
      <link>https://snipplr.com/view/70414/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 14 Mar 2013 03:33:11 UTC</pubDate>
      <guid>https://snipplr.com/view/70414/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - fvanommen</title>
      <link>https://snipplr.com/view/70122/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 27 Feb 2013 21:44:27 UTC</pubDate>
      <guid>https://snipplr.com/view/70122/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(AppleScript) Restart Django development server using AppleScript - reynoldsdigital</title>
      <link>https://snipplr.com/view/69782/restart-django-development-server-using-applescript</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 05 Feb 2013 03:44:27 UTC</pubDate>
      <guid>https://snipplr.com/view/69782/restart-django-development-server-using-applescript</guid>
    </item>
    <item>
      <title>(DOS Batch) 7zip commandline builder for zipping extensions in an svn repository - lookmatters</title>
      <link>https://snipplr.com/view/69190/7zip-commandline-builder-for-zipping-extensions-in-an-svn-repository</link>
      <description>&lt;p&gt;7zip commandline builder for zipping extensions in an svn repository&lt;/p&gt;</description>
      <pubDate>Fri, 21 Dec 2012 04:47:35 UTC</pubDate>
      <guid>https://snipplr.com/view/69190/7zip-commandline-builder-for-zipping-extensions-in-an-svn-repository</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - lilanc</title>
      <link>https://snipplr.com/view/67854/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 22 Oct 2012 04:43:03 UTC</pubDate>
      <guid>https://snipplr.com/view/67854/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(PHP) Intergrating the wordpress media uploader into your plugin - FatFolderDesigner</title>
      <link>https://snipplr.com/view/67849/intergrating-the-wordpress-media-uploader-into-your-plugin</link>
      <description>&lt;p&gt;It's a 3 part process, first is the PHP that you need to run, which includes the appropriate scripts and styles into the admin header, then you need an html button and input field to put the stored value in, then you need some jQuery to open the popup and get the appropriate information from it (then close it again).&#13;
&#13;
There more information on implementation at the URL.&lt;/p&gt;</description>
      <pubDate>Sun, 21 Oct 2012 08:29:36 UTC</pubDate>
      <guid>https://snipplr.com/view/67849/intergrating-the-wordpress-media-uploader-into-your-plugin</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - XtreamIT</title>
      <link>https://snipplr.com/view/67702/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 12 Oct 2012 10:14:47 UTC</pubDate>
      <guid>https://snipplr.com/view/67702/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(PHP) Database Connection - evinweissenberg</title>
      <link>https://snipplr.com/view/66799/database-connection</link>
      <description>&lt;p&gt;Allows you to connect to different datasources. Very common to use something like this for development,staging and production deployments.&lt;/p&gt;</description>
      <pubDate>Sat, 18 Aug 2012 07:31:41 UTC</pubDate>
      <guid>https://snipplr.com/view/66799/database-connection</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - cphoover</title>
      <link>https://snipplr.com/view/66506/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 03 Aug 2012 10:45:38 UTC</pubDate>
      <guid>https://snipplr.com/view/66506/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Correct way to draw background using a pattern image - cphoover</title>
      <link>https://snipplr.com/view/66503/correct-way-to-draw-background-using-a-pattern-image</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 03 Aug 2012 10:44:54 UTC</pubDate>
      <guid>https://snipplr.com/view/66503/correct-way-to-draw-background-using-a-pattern-image</guid>
    </item>
    <item>
      <title>(AppleScript) Restart Django development server using AppleScript - cphoover</title>
      <link>https://snipplr.com/view/66489/restart-django-development-server-using-applescript</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 03 Aug 2012 10:43:00 UTC</pubDate>
      <guid>https://snipplr.com/view/66489/restart-django-development-server-using-applescript</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - tomascayuelas</title>
      <link>https://snipplr.com/view/65868/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 29 Jun 2012 19:38:32 UTC</pubDate>
      <guid>https://snipplr.com/view/65868/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - 1957butcher</title>
      <link>https://snipplr.com/view/65794/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 25 Jun 2012 23:46:22 UTC</pubDate>
      <guid>https://snipplr.com/view/65794/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Correct way to draw background using a pattern image - munrobaggers</title>
      <link>https://snipplr.com/view/65446/correct-way-to-draw-background-using-a-pattern-image</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 07 Jun 2012 02:52:34 UTC</pubDate>
      <guid>https://snipplr.com/view/65446/correct-way-to-draw-background-using-a-pattern-image</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - munrobaggers</title>
      <link>https://snipplr.com/view/65445/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 07 Jun 2012 02:52:32 UTC</pubDate>
      <guid>https://snipplr.com/view/65445/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Bash) How to make a DMG file without Trashes folder - munrobaggers</title>
      <link>https://snipplr.com/view/65444/how-to-make-a-dmg-file-without-trashes-folder</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 07 Jun 2012 02:51:52 UTC</pubDate>
      <guid>https://snipplr.com/view/65444/how-to-make-a-dmg-file-without-trashes-folder</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - oeeckhoutte</title>
      <link>https://snipplr.com/view/65391/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jun 2012 00:03:27 UTC</pubDate>
      <guid>https://snipplr.com/view/65391/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - wastemobile</title>
      <link>https://snipplr.com/view/64701/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 22 Apr 2012 03:37:13 UTC</pubDate>
      <guid>https://snipplr.com/view/64701/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - Tintenklecks</title>
      <link>https://snipplr.com/view/63931/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 15 Mar 2012 01:17:13 UTC</pubDate>
      <guid>https://snipplr.com/view/63931/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(AppleScript) Restart Django development server using AppleScript - Tintenklecks</title>
      <link>https://snipplr.com/view/63930/restart-django-development-server-using-applescript</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 15 Mar 2012 01:11:41 UTC</pubDate>
      <guid>https://snipplr.com/view/63930/restart-django-development-server-using-applescript</guid>
    </item>
    <item>
      <title>(AppleScript) Restart Django development server using AppleScript - inky76</title>
      <link>https://snipplr.com/view/63759/restart-django-development-server-using-applescript</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 07 Mar 2012 11:35:37 UTC</pubDate>
      <guid>https://snipplr.com/view/63759/restart-django-development-server-using-applescript</guid>
    </item>
    <item>
      <title>(C) How to measure time of execution - inky76</title>
      <link>https://snipplr.com/view/63755/how-to-measure-time-of-execution</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 07 Mar 2012 11:35:10 UTC</pubDate>
      <guid>https://snipplr.com/view/63755/how-to-measure-time-of-execution</guid>
    </item>
    <item>
      <title>(Bash) How to make a DMG file without Trashes folder - inky76</title>
      <link>https://snipplr.com/view/63753/how-to-make-a-dmg-file-without-trashes-folder</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 07 Mar 2012 11:34:53 UTC</pubDate>
      <guid>https://snipplr.com/view/63753/how-to-make-a-dmg-file-without-trashes-folder</guid>
    </item>
    <item>
      <title>(Objective C) Correct way to draw background using a pattern image - inky76</title>
      <link>https://snipplr.com/view/63748/correct-way-to-draw-background-using-a-pattern-image</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 07 Mar 2012 11:34:07 UTC</pubDate>
      <guid>https://snipplr.com/view/63748/correct-way-to-draw-background-using-a-pattern-image</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - inky76</title>
      <link>https://snipplr.com/view/63746/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 07 Mar 2012 11:33:52 UTC</pubDate>
      <guid>https://snipplr.com/view/63746/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - akazah</title>
      <link>https://snipplr.com/view/63221/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 10 Feb 2012 05:59:07 UTC</pubDate>
      <guid>https://snipplr.com/view/63221/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - akazah</title>
      <link>https://snipplr.com/view/63220/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 10 Feb 2012 05:57:55 UTC</pubDate>
      <guid>https://snipplr.com/view/63220/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - siteology</title>
      <link>https://snipplr.com/view/62830/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 29 Jan 2012 05:48:38 UTC</pubDate>
      <guid>https://snipplr.com/view/62830/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(C) How to measure time of execution - tilakapash</title>
      <link>https://snipplr.com/view/62280/how-to-measure-time-of-execution</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 01:00:06 UTC</pubDate>
      <guid>https://snipplr.com/view/62280/how-to-measure-time-of-execution</guid>
    </item>
    <item>
      <title>(Bash) How to make a DMG file without Trashes folder - tilakapash</title>
      <link>https://snipplr.com/view/62278/how-to-make-a-dmg-file-without-trashes-folder</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 01:00:00 UTC</pubDate>
      <guid>https://snipplr.com/view/62278/how-to-make-a-dmg-file-without-trashes-folder</guid>
    </item>
    <item>
      <title>(Objective C) Correct way to draw background using a pattern image - tilakapash</title>
      <link>https://snipplr.com/view/62273/correct-way-to-draw-background-using-a-pattern-image</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 00:59:51 UTC</pubDate>
      <guid>https://snipplr.com/view/62273/correct-way-to-draw-background-using-a-pattern-image</guid>
    </item>
    <item>
      <title>(Objective C) Adding to OS X Status Tray - tilakapash</title>
      <link>https://snipplr.com/view/62269/adding-to-os-x-status-tray</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 00:58:46 UTC</pubDate>
      <guid>https://snipplr.com/view/62269/adding-to-os-x-status-tray</guid>
    </item>
    <item>
      <title>(AppleScript) Restart Django development server using AppleScript - tilakapash</title>
      <link>https://snipplr.com/view/62262/restart-django-development-server-using-applescript</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 00:57:16 UTC</pubDate>
      <guid>https://snipplr.com/view/62262/restart-django-development-server-using-applescript</guid>
    </item>
    <item>
      <title>(C) How to measure time of execution - tilakapash</title>
      <link>https://snipplr.com/view/62258/how-to-measure-time-of-execution</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 00:57:01 UTC</pubDate>
      <guid>https://snipplr.com/view/62258/how-to-measure-time-of-execution</guid>
    </item>
    <item>
      <title>(Bash) How to make a DMG file without Trashes folder - tilakapash</title>
      <link>https://snipplr.com/view/62256/how-to-make-a-dmg-file-without-trashes-folder</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 00:56:57 UTC</pubDate>
      <guid>https://snipplr.com/view/62256/how-to-make-a-dmg-file-without-trashes-folder</guid>
    </item>
    <item>
      <title>(Objective C) Correct way to draw background using a pattern image - tilakapash</title>
      <link>https://snipplr.com/view/62251/correct-way-to-draw-background-using-a-pattern-image</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 00:56:49 UTC</pubDate>
      <guid>https://snipplr.com/view/62251/correct-way-to-draw-background-using-a-pattern-image</guid>
    </item>
  </channel>
</rss>
