<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - adkatrit</title>
<link>http://snipplr.com/users/adkatrit</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Mon, 20 May 2013 03:54:31 GMT</pubDate>
<item>
<title>(Bash) backup into folder daily</title>
<link>http://snipplr.com/view/65862/backup-into-folder-daily/</link>
<description><![CDATA[ <p>i've got this running on an hourly cron.  works beautifully.</p> ]]></description>
<pubDate>Fri, 29 Jun 2012 07:36:39 GMT</pubDate>
<guid>http://snipplr.com/view/65862/backup-into-folder-daily/</guid>
</item>
<item>
<title>(Bash) robotic script done notification</title>
<link>http://snipplr.com/view/49183/robotic-script-done-notification/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 18 Feb 2011 09:00:51 GMT</pubDate>
<guid>http://snipplr.com/view/49183/robotic-script-done-notification/</guid>
</item>
<item>
<title>(Python) Euclidean Distance</title>
<link>http://snipplr.com/view/48799/euclidean-distance/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Feb 2011 04:05:09 GMT</pubDate>
<guid>http://snipplr.com/view/48799/euclidean-distance/</guid>
</item>
<item>
<title>(Python) Pearson Correlation Coefficient</title>
<link>http://snipplr.com/view/48798/pearson-correlation-coefficient/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Feb 2011 04:00:48 GMT</pubDate>
<guid>http://snipplr.com/view/48798/pearson-correlation-coefficient/</guid>
</item>
<item>
<title>(Python) Gini Impurity</title>
<link>http://snipplr.com/view/48797/gini-impurity/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:55:16 GMT</pubDate>
<guid>http://snipplr.com/view/48797/gini-impurity/</guid>
</item>
<item>
<title>(Python) Tanimoto Coefficient</title>
<link>http://snipplr.com/view/48796/tanimoto-coefficient/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:50:27 GMT</pubDate>
<guid>http://snipplr.com/view/48796/tanimoto-coefficient/</guid>
</item>
<item>
<title>(Python) Weighted Mean</title>
<link>http://snipplr.com/view/48795/weighted-mean/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:47:35 GMT</pubDate>
<guid>http://snipplr.com/view/48795/weighted-mean/</guid>
</item>
<item>
<title>(Python) calculate angle between two vectors</title>
<link>http://snipplr.com/view/48794/calculate-angle-between-two-vectors/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:45:06 GMT</pubDate>
<guid>http://snipplr.com/view/48794/calculate-angle-between-two-vectors/</guid>
</item>
<item>
<title>(Python) Gaussian</title>
<link>http://snipplr.com/view/48793/gaussian/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:37:21 GMT</pubDate>
<guid>http://snipplr.com/view/48793/gaussian/</guid>
</item>
<item>
<title>(Python) Variance</title>
<link>http://snipplr.com/view/48792/variance/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:33:56 GMT</pubDate>
<guid>http://snipplr.com/view/48792/variance/</guid>
</item>
<item>
<title>(Python) Entropy</title>
<link>http://snipplr.com/view/48791/entropy/</link>
<description><![CDATA[ <p>takes a list and returns the entropy</p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:32:13 GMT</pubDate>
<guid>http://snipplr.com/view/48791/entropy/</guid>
</item>
<item>
<title>(Python) K-Means Clustering</title>
<link>http://snipplr.com/view/48789/kmeans-clustering/</link>
<description><![CDATA[ <p>This is from the book: Programming Collective Intelligence</p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:07:54 GMT</pubDate>
<guid>http://snipplr.com/view/48789/kmeans-clustering/</guid>
</item>
<item>
<title>(Python) Hierarchical Clustering</title>
<link>http://snipplr.com/view/48788/hierarchical-clustering/</link>
<description><![CDATA[ <p>Helps if you have a distance function.  This will be implementation specific, but this is the main algo</p> ]]></description>
<pubDate>Fri, 11 Feb 2011 03:05:57 GMT</pubDate>
<guid>http://snipplr.com/view/48788/hierarchical-clustering/</guid>
</item>
<item>
<title>(Java) Matching elements in an array</title>
<link>http://snipplr.com/view/43264/matching-elements-in-an-array/</link>
<description><![CDATA[ <p>compare individual array elements with one another, without doing the same comparison twice (3vs2 then 2vs3).  this reduces the number of iterations by roughly half.  it's still O(n^2), an 1000 member array won't iterate a 1000X1000 times, it will be (1000X999)/2.  efficient!!
an array of 0,1,2,3  will print out the following:
01,02,03,,12,13,2,3
ENJOY MY MATHS</p> ]]></description>
<pubDate>Sat, 30 Oct 2010 02:21:58 GMT</pubDate>
<guid>http://snipplr.com/view/43264/matching-elements-in-an-array/</guid>
</item>
<item>
<title>(PHP) new york times article api function</title>
<link>http://snipplr.com/view/42380/new-york-times-article-api-function/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 16 Oct 2010 06:07:50 GMT</pubDate>
<guid>http://snipplr.com/view/42380/new-york-times-article-api-function/</guid>
</item>
<item>
<title>(Bash) download the first 50,000,000 prime numbers</title>
<link>http://snipplr.com/view/29996/download-the-first-50000000-prime-numbers/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 18 Mar 2010 20:53:15 GMT</pubDate>
<guid>http://snipplr.com/view/29996/download-the-first-50000000-prime-numbers/</guid>
</item>
<item>
<title>(Bash) mailing system profile on mac osx</title>
<link>http://snipplr.com/view/28705/mailing-system-profile-on-mac-osx/</link>
<description><![CDATA[ <p>don't forget to take my email out :)</p> ]]></description>
<pubDate>Sun, 21 Feb 2010 17:22:39 GMT</pubDate>
<guid>http://snipplr.com/view/28705/mailing-system-profile-on-mac-osx/</guid>
</item>
<item>
<title>(Bash) manpage to pdf</title>
<link>http://snipplr.com/view/28704/manpage-to-pdf/</link>
<description><![CDATA[ <p>1st argument to the script is the command you want to run.  (i can't live without this now)</p> ]]></description>
<pubDate>Sun, 21 Feb 2010 17:20:20 GMT</pubDate>
<guid>http://snipplr.com/view/28704/manpage-to-pdf/</guid>
</item>
<item>
<title>(Bash) show all http requests being made</title>
<link>http://snipplr.com/view/28703/show-all-http-requests-being-made/</link>
<description><![CDATA[ <p>make sure the en1 value is the interface you are using</p> ]]></description>
<pubDate>Sun, 21 Feb 2010 17:16:21 GMT</pubDate>
<guid>http://snipplr.com/view/28703/show-all-http-requests-being-made/</guid>
</item>
<item>
<title>(Bash) recursively find a string in any js,php,inc,htm,html,css files</title>
<link>http://snipplr.com/view/28702/recursively-find-a-string-in-any-jsphpinchtmhtmlcss-files/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 21 Feb 2010 17:09:40 GMT</pubDate>
<guid>http://snipplr.com/view/28702/recursively-find-a-string-in-any-jsphpinchtmhtmlcss-files/</guid>
</item>
</channel>
</rss>