<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/clojure</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sun, 19 May 2013 03:39:30 GMT</pubDate>
<item>
<title>(Clojure) Where to get PSN Code Generators - aimeeh82</title>
<link>http://snipplr.com/view/70212/where-to-get-psn-code-generators/</link>
<description><![CDATA[ <p>Quit paying instead get going personal savings. Makes you happy . the amount of cash you'll lay aside within the event begin using PSN Computer code Dynamo finally. Dream of personal rather than making minute card or even your finances purely to develop Playstation 3 Requirements don't you think extraordinary, are you currently mesmerized? Also which you even so you're yourrrre able to treat looking at this study. Dsi Computer Motor great can help to individuals who are incompetent at obtaining a Playstation 3 or xbox Community Piece of plastic which comes with $10, $20 as well as $50 denomination. The new sony said that they need to always providing reasonably limited monthly often called Ps And furthermore for one's online players which is certainly establish that will help through immediately, if you haven't, yet.</p> ]]></description>
<pubDate>Sat, 02 Mar 2013 16:34:18 GMT</pubDate>
<guid>http://snipplr.com/view/70212/where-to-get-psn-code-generators/</guid>
</item>
<item>
<title>(Clojure) Listing special forms - ef</title>
<link>http://snipplr.com/view/65485/listing-special-forms/</link>
<description><![CDATA[ <p>Title tells everything</p> ]]></description>
<pubDate>Fri, 08 Jun 2012 21:12:35 GMT</pubDate>
<guid>http://snipplr.com/view/65485/listing-special-forms/</guid>
</item>
<item>
<title>(Clojure) Logarithm with base 2 (log2) - ef</title>
<link>http://snipplr.com/view/65234/logarithm-with-base-2-log2/</link>
<description><![CDATA[ <p>Implementation of base2 logarithm</p> ]]></description>
<pubDate>Mon, 28 May 2012 18:25:18 GMT</pubDate>
<guid>http://snipplr.com/view/65234/logarithm-with-base-2-log2/</guid>
</item>
<item>
<title>(Clojure) k-d tree - weilawei</title>
<link>http://snipplr.com/view/64805/kd-tree/</link>
<description><![CDATA[ <p>make-kd-node [median left right]: Creates a node in a kd-tree.

make-kd-tree [k depth points]: Creates a kd-tree of kd-nodes. **TODO**: Not stack safe. Use loop/recur.

kd-nearest-neighbor [a-point kd-tree]: Returns the nearest neighboring point to a given point, using a kd-tree.</p> ]]></description>
<pubDate>Mon, 07 May 2012 00:51:46 GMT</pubDate>
<guid>http://snipplr.com/view/64805/kd-tree/</guid>
</item>
<item>
<title>(Clojure) Axis-Aligned Bounding Box - weilawei</title>
<link>http://snipplr.com/view/64804/axisaligned-bounding-box/</link>
<description><![CDATA[ <p>make-aabb [a-point b-point] [a-point b-point]: Creates a 3D Axis-Aligned Bounding Box (AABB).

aabb-contains? [a-box a-point]: Returns true if a 3D AABB contains a given point.</p> ]]></description>
<pubDate>Mon, 07 May 2012 00:50:21 GMT</pubDate>
<guid>http://snipplr.com/view/64804/axisaligned-bounding-box/</guid>
</item>
<item>
<title>(Clojure) Filtering by using case example - ef</title>
<link>http://snipplr.com/view/64775/filtering-by-using-case-example/</link>
<description><![CDATA[ <p>Example of filtering by using case</p> ]]></description>
<pubDate>Tue, 01 May 2012 01:33:18 GMT</pubDate>
<guid>http://snipplr.com/view/64775/filtering-by-using-case-example/</guid>
</item>
<item>
<title>(Clojure) Starting multiple threads - ef</title>
<link>http://snipplr.com/view/63387/starting-multiple-threads/</link>
<description><![CDATA[ <p>Creates number of threads (specified by 'threads-number') running fn-name function. This is possible, because every Clojure function implements Runnable interface.</p> ]]></description>
<pubDate>Fri, 17 Feb 2012 07:00:52 GMT</pubDate>
<guid>http://snipplr.com/view/63387/starting-multiple-threads/</guid>
</item>
<item>
<title>(Clojure) Strip tags from HTML - ef</title>
<link>http://snipplr.com/view/62826/strip-tags-from-html/</link>
<description><![CDATA[ <p>Function strips HTML tags from string.</p> ]]></description>
<pubDate>Sat, 28 Jan 2012 04:07:35 GMT</pubDate>
<guid>http://snipplr.com/view/62826/strip-tags-from-html/</guid>
</item>
<item>
<title>(Clojure) Split string by whitespace - ef</title>
<link>http://snipplr.com/view/62749/split-string-by-whitespace/</link>
<description><![CDATA[ <p>Function splits string by whitespace.</p> ]]></description>
<pubDate>Tue, 24 Jan 2012 21:29:25 GMT</pubDate>
<guid>http://snipplr.com/view/62749/split-string-by-whitespace/</guid>
</item>
<item>
<title>(Clojure) Lazy characters input - ef</title>
<link>http://snipplr.com/view/62727/lazy-characters-input/</link>
<description><![CDATA[ <p>Taken from here http://groups.google.com/group/clojure/msg/1590311bac972d15, useful if you can not (or do not want to) line-seq file (e.g. when whole file is one big line).</p> ]]></description>
<pubDate>Mon, 23 Jan 2012 23:53:30 GMT</pubDate>
<guid>http://snipplr.com/view/62727/lazy-characters-input/</guid>
</item>
<item>
<title>(Clojure) Clojure test stubbing - ef</title>
<link>http://snipplr.com/view/62692/clojure-test-stubbing/</link>
<description><![CDATA[ <p>Macro allowing for substitution of functions with predefined values.
Taken from "Clojure in action" page 180
Example:
(defn calc-x [x1 x2]
  (* x1 x2))
(defn calc-y [y1 y2]
   (/ y2 y1))
(defn some-client []
  (println (calc-x 2 3) (calc-y 3 4)))
(stubbing [calc-x 1
            calc-y 2
   (some-client))

prints: "1 2" instead of  "6 4/3"</p> ]]></description>
<pubDate>Sat, 21 Jan 2012 05:57:32 GMT</pubDate>
<guid>http://snipplr.com/view/62692/clojure-test-stubbing/</guid>
</item>
<item>
<title>(Clojure) Getting function by name (in string) in Clojure. - ef</title>
<link>http://snipplr.com/view/62381/getting-function-by-name-in-string-in-clojure/</link>
<description><![CDATA[ <p>Gets function by name.</p> ]]></description>
<pubDate>Sat, 07 Jan 2012 09:59:07 GMT</pubDate>
<guid>http://snipplr.com/view/62381/getting-function-by-name-in-string-in-clojure/</guid>
</item>
<item>
<title>(Clojure) Clojure ISO 8601 current date with clj-time - ef</title>
<link>http://snipplr.com/view/62060/clojure-iso-8601-current-date-with-cljtime/</link>
<description><![CDATA[ <p>Better way of generating date in ISO 8601 format (e.g. "2011-12-12T20:50:22+0100").  
Needs to require  [clj-time.core :as time]  and  [clj-time.format :as time-format].</p> ]]></description>
<pubDate>Wed, 21 Dec 2011 23:10:15 GMT</pubDate>
<guid>http://snipplr.com/view/62060/clojure-iso-8601-current-date-with-cljtime/</guid>
</item>
<item>
<title>(Clojure) Print classpath in Clojure - ef</title>
<link>http://snipplr.com/view/61859/print-classpath-in-clojure/</link>
<description><![CDATA[ <p>Inspired by this: http://pupeno.com/2008/11/26/printing-the-class-path-in-clojure/</p> ]]></description>
<pubDate>Wed, 14 Dec 2011 01:50:50 GMT</pubDate>
<guid>http://snipplr.com/view/61859/print-classpath-in-clojure/</guid>
</item>
<item>
<title>(Clojure) Clojure ISO 8601 current date - ef</title>
<link>http://snipplr.com/view/61835/clojure-iso-8601-current-date/</link>
<description><![CDATA[ <p>Return string representing current date in ISO 8601 format, e.g. "2011-12-12T20:50:22+0100".
java.util.Calendar and java.text.SimpleDateFormat have to be imported first.
NOTICE: Use this instead: http://snipplr.com/view/62060/clojure-iso-8601-current-date-with-cljtime/</p> ]]></description>
<pubDate>Tue, 13 Dec 2011 06:54:22 GMT</pubDate>
<guid>http://snipplr.com/view/61835/clojure-iso-8601-current-date/</guid>
</item>
<item>
<title>(Clojure) Printing map in Clojure - ef</title>
<link>http://snipplr.com/view/61745/printing-map-in-clojure/</link>
<description><![CDATA[ <p>Function prints all key value pars of Clojure map in key : value format.
Useful in debugging.</p> ]]></description>
<pubDate>Fri, 09 Dec 2011 00:30:06 GMT</pubDate>
<guid>http://snipplr.com/view/61745/printing-map-in-clojure/</guid>
</item>
<item>
<title>(Clojure) Printing files in Clojure - ef</title>
<link>http://snipplr.com/view/61743/printing-files-in-clojure/</link>
<description><![CDATA[ <p>Preferred way of printing files in Clojure.</p> ]]></description>
<pubDate>Thu, 08 Dec 2011 23:25:16 GMT</pubDate>
<guid>http://snipplr.com/view/61743/printing-files-in-clojure/</guid>
</item>
<item>
<title>(Clojure) Evaluate form data structure and returns the result - Mardoch</title>
<link>http://snipplr.com/view/60830/evaluate-form-data-structure-and-returns-the-result/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 15 Nov 2011 07:06:26 GMT</pubDate>
<guid>http://snipplr.com/view/60830/evaluate-form-data-structure-and-returns-the-result/</guid>
</item>
<item>
<title>(Clojure) View Helper To Display a Field - adeandrade</title>
<link>http://snipplr.com/view/60578/view-helper-to-display-a-field/</link>
<description><![CDATA[ <p>Short yet highly configurable. Great to show off Clojure.</p> ]]></description>
<pubDate>Sun, 06 Nov 2011 15:34:40 GMT</pubDate>
<guid>http://snipplr.com/view/60578/view-helper-to-display-a-field/</guid>
</item>
<item>
<title>(Clojure) Navigation Screen - dAlLcOaP865</title>
<link>http://snipplr.com/view/51892/navigation-screen/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 10 Apr 2011 21:29:09 GMT</pubDate>
<guid>http://snipplr.com/view/51892/navigation-screen/</guid>
</item>
</channel>
</rss>