This file contains 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
const enemyTokens = game.canvas.scene.tokens.filter(entry => entry.disposition == -1); | |
const enemyDrawings = [ | |
// Name, Amount | |
["0HRRJvAy0DL9fZYj", "xOkLUlaf66MIWaEg"], | |
["fvEtY6HXxuWZwTaM", "3ZpYPphDlKP0qocJ"], | |
["BxYhCFss1Hxeubg1", "1cyj6HHCq1Dy5y9C"], | |
["0zVx7PfduwZbNqnj", "kkoOJOPxo6K8hIhV"], | |
].map(uis => uis.map(id => canvas.scene.drawings.get(id))); |
This file contains 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
(ns ukanren-transducers | |
(:refer-clojure :exclude [== disj conj])) | |
(defrecord Lvar [name]) | |
(defn lvar [] (->Lvar (gensym "lvar"))) | |
(defn lvar? [v] (instance? Lvar v)) | |
(def empty-state {}) | |
(defn walk [u s] |
This file contains 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
(defrecord JimFSFactory [] | |
component/Lifecycle | |
(start [t] (Jimfs/newFileSystem (Configuration/unix)))) | |
(extend-protocol component/Lifecycle | |
Jimfs | |
(stop [t] (.close t))) | |
(defrecord PathFactory [fs] | |
component/Lifecycle |
This file contains 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
(defrecord JimFSFactory [] | |
component/Lifecycle | |
(start [t] (Jimfs/newFileSystem (Configuration/unix)))) | |
(extend-protocol component/Lifecycle | |
Jimfs | |
(stop [t] (.close t))) | |
(defrecord PathFactory [fs] | |
component/Lifecycle |
This file contains 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
(ns sudoku | |
(:refer-clojure :exclude [==]) | |
(:use clojure.core.logic) | |
(:require [clojure.core.logic.fd :as fd])) | |
(defn get-square [rows x y] | |
(for [x (range x (+ x 3)) | |
y (range y (+ y 3))] | |
(get-in rows [x y]))) |
This file contains 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
{ :repl {:plugins [[cider/cider-nrepl "0.9.0-SNAPSHOT"]] | |
:dependencies [[org.clojure/tools.nrepl "0.2.7"]]} |
This file contains 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
(require 'cljs.closure) | |
(require 'cljs.js-deps) | |
(import 'java.net.URLClassLoader) | |
(import 'java.net.URL) | |
(def react-url | |
"https://clojars.org/repo/cljsjs/react/0.13.0-0/react-0.13.0-0.jar") |
This file contains 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
class Bob | |
def hey(message) | |
behaviors = { | |
-> {message.nil? || message.strip.empty?} => 'Fine. Be that way!', | |
-> {message.upcase == message} => 'Woah, chill out!', | |
-> {message[-1].chr == '?'} => 'Sure.' | |
} | |
behaviors.fetch(behaviors.keys.find(&:call), "Whatever.") | |
end | |
end |
This file contains 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
(require | |
'[pallet.crate.git :refer [git clone]] | |
'[pallet.crate.java :refer [java]] | |
'[pallet.crate.lein :refer [lein leiningen]]) | |
(def repo "git://github.com/jcrossley3/random-apps-of-kindness.git") | |
(def demo-directory "random-apps-of-kindness/demo") | |
(defplan setup-machine |
This file contains 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
$ TEST_DBS=sqlite mvn clojure:test | |
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Building java.jdbc | |
[INFO] task-segment: [clojure:test] | |
[INFO] ------------------------------------------------------------------------ | |
Downloading: http://repo1.maven.org/maven2/net/sourceforge/jtds/jtds/1.2.4/jtds-1.2.4.pom | |
Downloading: http://repo1.maven.org/maven2/net/sourceforge/jtds/jtds/1.2.4/jtds-1.2.4.jar | |
NewerOlder