Couldn't find the text of this for a while...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Copyright (c) Alan Dipert. All rights reserved. | |
| ;; The use and distribution terms for this software are covered by the | |
| ;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) | |
| ;; By using this software in any fashion, you are agreeing to be bound by | |
| ;; the terms of this license. | |
| ;; You must not remove this notice, or any other, from this software. | |
| (ns alandipert.kahn | |
| (:require [clojure.set :refer [difference union intersection]])) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Lee Spector ([email protected]) 20111018 - 20111121 | |
| (ns evolvegeo | |
| (:require [clojure.zip :as zip])) | |
| ;; Like evolvefn.clj (https://gist.github.com/1335696), this this code | |
| ;; defines and runs a genetic programming system on the problem | |
| ;; of finding a function that fits a particular set of [x y] pairs. | |
| ;; Unlike evolvefn.clj, this code incorporates trivial geography | |
| ;; (http://hampshire.edu/lspector/pubs/trivial-geography-toappear.pdf). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;Using the Cassowary constraint solver from ClojureScript | |
| ;;This demo shows using multimethods for readable constraint syntax using +, -, and =. | |
| ;;Output is a row of circles with random radii spaced so that the space between their boundaries is uniform. | |
| (ns c2.main | |
| ;;refer-clojure :exclude is currently broken in ClojureScript master | |
| ;;Ticket open: http://dev.clojure.org/jira/browse/CLJS-114 | |
| ;;Fix applied here: https://github.com/lynaghk/clojurescript/tree/114-refer-clojure-exclude | |
| (:refer-clojure :exclude [+ - =]) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (extend-type js/RegExp | |
| cljs.core/IFn | |
| (-invoke ([this s] (re-matches this s)))) | |
| (#"foo.*" "foobar") ;=> "foobar" | |
| (#"zoo.*" "foobar") ;=> nil | |
| (filter #".*foo.*" ["foobar" "goobar" "foobaz"]) ;=> ("foobar" "foobaz") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| for i in range(0, 100): | |
| if not i % 15: | |
| random.seed(1178741599) | |
| print [i+1, "Fizz", "Buzz", "FizzBuzz"][random.randint(0,3)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @font-face { | |
| font-family: 'EntypoRegular'; | |
| src: url('font/entypo.eot'); | |
| src: url('font/entypo.eot?#iefix') format('embedded-opentype'), | |
| url('font/entypo.woff') format('woff'), | |
| url('font/entypo.ttf') format('truetype'), | |
| url('font/entypo.svg#EntypoRegular') format('svg'); | |
| font-weight: normal; | |
| font-style: normal; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data IOAction a = Return a | |
| | Put String (IOAction a) | |
| | Get (String -> IOAction a) | |
| get = Get Return | |
| put s = Put s (Return ()) | |
| seqio :: IOAction a -> (a -> IOAction b) -> IOAction b | |
| seqio (Return a) f = f a | |
| seqio (Put s io) f = Put s (seqio io f) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| import random | |
| def vtoc_idx(s): | |
| match_obj = re.search(r'[aeiou][^aeiou]', s.lower()) | |
| if match_obj: | |
| return match_obj.start() + 1 | |
| else: | |
| return None |
OlderNewer
