<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - stayce</title>
<link>http://snipplr.com/users/stayce</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Mon, 20 May 2013 19:28:48 GMT</pubDate>
<item>
<title>(TCL) call jquery</title>
<link>http://snipplr.com/view/45432/call-jquery/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 08 Dec 2010 07:03:44 GMT</pubDate>
<guid>http://snipplr.com/view/45432/call-jquery/</guid>
</item>
<item>
<title>(Bash) uninstall all ruby gems</title>
<link>http://snipplr.com/view/41023/uninstall-all-ruby-gems/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 25 Sep 2010 10:25:08 GMT</pubDate>
<guid>http://snipplr.com/view/41023/uninstall-all-ruby-gems/</guid>
</item>
<item>
<title>(Bash) Fix textmate bundles after snow leopard upgrade</title>
<link>http://snipplr.com/view/40934/fix-textmate-bundles-after-snow-leopard-upgrade/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 23 Sep 2010 05:37:24 GMT</pubDate>
<guid>http://snipplr.com/view/40934/fix-textmate-bundles-after-snow-leopard-upgrade/</guid>
</item>
<item>
<title>(Bash) GIT ERROR - fixing Interactive rebase already started</title>
<link>http://snipplr.com/view/34498/git-error--fixing-interactive-rebase-already-started/</link>
<description><![CDATA[ <p>If you accidentally exit while doing an interactive rebase, you can clean it with this command.</p> ]]></description>
<pubDate>Fri, 14 May 2010 13:15:25 GMT</pubDate>
<guid>http://snipplr.com/view/34498/git-error--fixing-interactive-rebase-already-started/</guid>
</item>
<item>
<title>(Ruby) Ruby: Open a file, write to it, and close it in one line</title>
<link>http://snipplr.com/view/34376/ruby-open-a-file-write-to-it-and-close-it-in-one-line/</link>
<description><![CDATA[ <p>r - Open a file for reading. The file must exist.
w - Create an empty file for writing. If a file with the same name already exists its content is erased and the file is treated as a new empty file.
a - Append to a file. Writing operations append data at the end of the file. The file is created if it does not exist.
r+ - Open a file for update both reading and writing. The file must exist.
w+ - Create an empty file for both reading and writing. If a file with the same name already exists its content is erased and the file is treated as a new empty file.
a+ - Open a file for reading and appending. All writing operations are performed at the end of the file, protecting the previous content to be overwritten. You can reposition (fseek, rewind) the internal pointer to anywhere in the file for reading, but writing operations will move it back to the end of file. The file is created if it does not exist.</p> ]]></description>
<pubDate>Thu, 13 May 2010 01:44:05 GMT</pubDate>
<guid>http://snipplr.com/view/34376/ruby-open-a-file-write-to-it-and-close-it-in-one-line/</guid>
</item>
<item>
<title>(Ruby) validate with errors</title>
<link>http://snipplr.com/view/33672/validate-with-errors/</link>
<description><![CDATA[ <p>validate :price_must_be_at_least_a_cent
protected def price_must_be_at_least_a_cent
errors.add(:price, 'should be at least 0.01') if price.nil? || price < 0.01
end</p> ]]></description>
<pubDate>Fri, 30 Apr 2010 13:43:58 GMT</pubDate>
<guid>http://snipplr.com/view/33672/validate-with-errors/</guid>
</item>
<item>
<title>(Bash) removing old mysql on snow leopard os x</title>
<link>http://snipplr.com/view/32586/removing-old-mysql-on-snow-leopard-os-x/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 21 Apr 2010 12:38:54 GMT</pubDate>
<guid>http://snipplr.com/view/32586/removing-old-mysql-on-snow-leopard-os-x/</guid>
</item>
<item>
<title>(Bash) refresh and add textmate bundles from GIT</title>
<link>http://snipplr.com/view/31172/refresh-and-add-textmate-bundles-from-git/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 09 Apr 2010 18:48:15 GMT</pubDate>
<guid>http://snipplr.com/view/31172/refresh-and-add-textmate-bundles-from-git/</guid>
</item>
<item>
<title>(Bash) git temporary stash then update</title>
<link>http://snipplr.com/view/31117/git-temporary-stash-then-update/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 08 Apr 2010 16:13:03 GMT</pubDate>
<guid>http://snipplr.com/view/31117/git-temporary-stash-then-update/</guid>
</item>
<item>
<title>(CSS) Gradient 2.0 text</title>
<link>http://snipplr.com/view/31114/gradient-20-text/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 08 Apr 2010 12:15:36 GMT</pubDate>
<guid>http://snipplr.com/view/31114/gradient-20-text/</guid>
</item>
<item>
<title>(Bash) Add bundles from git to textmate</title>
<link>http://snipplr.com/view/31113/add-bundles-from-git-to-textmate/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 08 Apr 2010 12:13:09 GMT</pubDate>
<guid>http://snipplr.com/view/31113/add-bundles-from-git-to-textmate/</guid>
</item>
<item>
<title>(JavaScript) Goodbarry / Business Catalyst - Set Expiry on Secure Zone form - Javascript</title>
<link>http://snipplr.com/view/18419/goodbarry--business-catalyst--set-expiry-on-secure-zone-form--javascript/</link>
<description><![CDATA[ <p>test it with alert(xpires);  working well for me.  silly goodbarry format</p> ]]></description>
<pubDate>Tue, 18 Aug 2009 03:10:33 GMT</pubDate>
<guid>http://snipplr.com/view/18419/goodbarry--business-catalyst--set-expiry-on-secure-zone-form--javascript/</guid>
</item>
</channel>
</rss>