<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - dorseye</title>
<link>http://snipplr.com/users/dorseye</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sat, 25 May 2013 12:13:59 GMT</pubDate>
<item>
<title>(Bash) BASH one liner to rename extension of all files in folder</title>
<link>http://snipplr.com/view/65741/bash-one-liner-to-rename-extension-of-all-files-in-folder/</link>
<description><![CDATA[ <p>BASH one liner to rename extension of all files in folder</p> ]]></description>
<pubDate>Thu, 21 Jun 2012 12:14:50 GMT</pubDate>
<guid>http://snipplr.com/view/65741/bash-one-liner-to-rename-extension-of-all-files-in-folder/</guid>
</item>
<item>
<title>(Other) Windows CMD open at specific location</title>
<link>http://snipplr.com/view/32198/windows-cmd-open-at-specific-location/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 17 Apr 2010 23:35:42 GMT</pubDate>
<guid>http://snipplr.com/view/32198/windows-cmd-open-at-specific-location/</guid>
</item>
<item>
<title>(C++) Make int act like float</title>
<link>http://snipplr.com/view/31357/make-int-act-like-float/</link>
<description><![CDATA[ <p>Handy for built in functions that aren't fond of 'int' types.</p> ]]></description>
<pubDate>Mon, 12 Apr 2010 02:54:07 GMT</pubDate>
<guid>http://snipplr.com/view/31357/make-int-act-like-float/</guid>
</item>
<item>
<title>(Other) Link to specific part of YouTube file</title>
<link>http://snipplr.com/view/31356/link-to-specific-part-of-youtube-file/</link>
<description><![CDATA[ <p>example: link to 3 min, 14 seconds in</p> ]]></description>
<pubDate>Mon, 12 Apr 2010 02:49:28 GMT</pubDate>
<guid>http://snipplr.com/view/31356/link-to-specific-part-of-youtube-file/</guid>
</item>
<item>
<title>(Other) Create shortcut to folder</title>
<link>http://snipplr.com/view/27578/create-shortcut-to-folder/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 02 Feb 2010 19:37:34 GMT</pubDate>
<guid>http://snipplr.com/view/27578/create-shortcut-to-folder/</guid>
</item>
<item>
<title>(Bash) Show OS version from command line (Mac)</title>
<link>http://snipplr.com/view/27576/show-os-version-from-command-line-mac/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 02 Feb 2010 16:53:29 GMT</pubDate>
<guid>http://snipplr.com/view/27576/show-os-version-from-command-line-mac/</guid>
</item>
<item>
<title>(Bash) Open specific app from command line</title>
<link>http://snipplr.com/view/27521/open-specific-app-from-command-line/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 01 Feb 2010 22:58:34 GMT</pubDate>
<guid>http://snipplr.com/view/27521/open-specific-app-from-command-line/</guid>
</item>
<item>
<title>(Bash) Output clipboard to file in OSX command line</title>
<link>http://snipplr.com/view/27109/output-clipboard-to-file-in-osx-command-line/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 26 Jan 2010 13:51:01 GMT</pubDate>
<guid>http://snipplr.com/view/27109/output-clipboard-to-file-in-osx-command-line/</guid>
</item>
<item>
<title>(Bash) Grep string search inside files &amp;amp; subfolder files</title>
<link>http://snipplr.com/view/23567/grep-string-search-inside-files--subfolder-files/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 22 Nov 2009 22:10:33 GMT</pubDate>
<guid>http://snipplr.com/view/23567/grep-string-search-inside-files--subfolder-files/</guid>
</item>
<item>
<title>(Other) Search BASH history w/ grep</title>
<link>http://snipplr.com/view/21855/search-bash-history-w-grep/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 25 Oct 2009 23:38:07 GMT</pubDate>
<guid>http://snipplr.com/view/21855/search-bash-history-w-grep/</guid>
</item>
<item>
<title>(Bash) Open app from command line: OSX</title>
<link>http://snipplr.com/view/21759/open-app-from-command-line-osx/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 24 Oct 2009 16:00:25 GMT</pubDate>
<guid>http://snipplr.com/view/21759/open-app-from-command-line-osx/</guid>
</item>
<item>
<title>(Other) mvim help inside MacVim</title>
<link>http://snipplr.com/view/21757/mvim-help-inside-macvim/</link>
<description><![CDATA[ <p>Launching MacVim from command line</p> ]]></description>
<pubDate>Sat, 24 Oct 2009 13:57:49 GMT</pubDate>
<guid>http://snipplr.com/view/21757/mvim-help-inside-macvim/</guid>
</item>
<item>
<title>(Python) Django interactive interpreter</title>
<link>http://snipplr.com/view/21375/django-interactive-interpreter/</link>
<description><![CDATA[ <p>From: http://www.djangobook.com/en/2.0/chapter04/

A special Python prompt

If you’ve used Python before, you may be wondering why we’re running python manage.py shell instead of just python. Both commands will start the interactive interpreter, but the manage.py shell command has one key difference: before starting the interpreter, it tells Django which settings file to use. Many parts of Django, including the template system, rely on your settings, and you won’t be able to use them unless the framework knows which settings to use.

If you’re curious, here’s how it works behind the scenes. Django looks for an environment variable called DJANGO_SETTINGS_MODULE, which should be set to the import path of your settings.py. For example, DJANGO_SETTINGS_MODULE might be set to 'mysite.settings', assuming mysite is on your Python path.

When you run python manage.py shell, the command takes care of setting DJANGO_SETTINGS_MODULE for you. We’re encouraging you to use python manage.py shell in these examples so as to minimize the amount of tweaking and configuring you have to do.

As you become more familiar with Django, you’ll likely stop using manage.py shell and will set DJANGO_SETTINGS_MODULE manually in your .bash_profile or other shell environment configuration file.</p> ]]></description>
<pubDate>Fri, 16 Oct 2009 23:16:57 GMT</pubDate>
<guid>http://snipplr.com/view/21375/django-interactive-interpreter/</guid>
</item>
<item>
<title>(Bash) Add to file from BASH</title>
<link>http://snipplr.com/view/21064/add-to-file-from-bash/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 12 Oct 2009 21:33:26 GMT</pubDate>
<guid>http://snipplr.com/view/21064/add-to-file-from-bash/</guid>
</item>
<item>
<title>(Python) "Reload" Python module</title>
<link>http://snipplr.com/view/21013/reload-python-module/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 11 Oct 2009 23:58:34 GMT</pubDate>
<guid>http://snipplr.com/view/21013/reload-python-module/</guid>
</item>
<item>
<title>(Bash) Search (grep) current dir for matching text</title>
<link>http://snipplr.com/view/19965/search-grep-current-dir-for-matching-text/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 20 Sep 2009 20:37:32 GMT</pubDate>
<guid>http://snipplr.com/view/19965/search-grep-current-dir-for-matching-text/</guid>
</item>
<item>
<title>(Bash) Running syslog dialog</title>
<link>http://snipplr.com/view/19662/running-syslog-dialog/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 13 Sep 2009 19:35:12 GMT</pubDate>
<guid>http://snipplr.com/view/19662/running-syslog-dialog/</guid>
</item>
<item>
<title>(Bash) Restart cron</title>
<link>http://snipplr.com/view/19661/restart-cron/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 13 Sep 2009 18:48:54 GMT</pubDate>
<guid>http://snipplr.com/view/19661/restart-cron/</guid>
</item>
<item>
<title>(Bash) Append clipboard to file</title>
<link>http://snipplr.com/view/19658/append-clipboard-to-file/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 13 Sep 2009 14:43:19 GMT</pubDate>
<guid>http://snipplr.com/view/19658/append-clipboard-to-file/</guid>
</item>
<item>
<title>(Bash) Check if specific program (ex: Opera) installed</title>
<link>http://snipplr.com/view/19366/check-if-specific-program-ex-opera-installed/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 07 Sep 2009 22:25:57 GMT</pubDate>
<guid>http://snipplr.com/view/19366/check-if-specific-program-ex-opera-installed/</guid>
</item>
</channel>
</rss>