Keybase proof
I hereby claim:
- I am flyingmachine on github.
- I am nonrecursive (https://keybase.io/nonrecursive) on keybase.
- I have a public key ASDS9szLnff6f8HuT0fd8PAIK9wAr_4J8_68dAGc2z50GQo
To claim this, I am signing this object:
;; The question: how to clearly provide system def overrides? | |
;; There are two main scenarios where we want to do this: | |
;; | |
;; 1. Deriving a new "profile", e.g. deriving a test profile from a base profile | |
;; to be used for all tests | |
;; 2. Defining point overrides, e.g. you might want to mock out a specific component | |
;; only for a specific test | |
;; | |
;; Ultimately developers can use what works for them, but I want to figure out | |
;; the recommended approach. Also, I need to figure out the behavior of helpers |
(ns scratch.scratch) | |
(def locations | |
[{:unit "moscow" | |
:type "city" | |
:subunits [{:unit "abc" | |
:type "area"} | |
{:unit "xyz"}]} | |
{:unit "london"} | |
{:unit "tokyo"}]) |
I hereby claim:
To claim this, I am signing this object:
(set-env! | |
:source-paths #{"src"} | |
:resource-paths #{"html"} | |
:dependencies '[[adzerk/boot-cljs "2.1.3" :scope "test"] | |
[adzerk/boot-reload "0.5.2" :scope "test"] | |
[org.clojure/clojurescript "1.9.908"] | |
[pandeiro/boot-http "0.8.3" :scope "test"]]) | |
(require | |
'[adzerk.boot-cljs :refer [cljs]] |
(ns cljobs.resources.manage.os-projects | |
(:require [cljobs.resources.common :as c] | |
[cljobs.db.queries :as q])) | |
(def new-data (c/query-result q/user-os-projects)) | |
(defn process-params | |
[ctx] | |
(-> (c/assoc-user ctx :os-project/user) | |
(update-in [:request :params] |
(ns cljobs.resources.manage.os-projects | |
(:require [cljobs.resources.common :as c] | |
[cljobs.db.validations :as v] | |
[cljobs.db.queries :as q] | |
[datomic.api :as d])) | |
(def new-data (c/query-result q/user-os-projects)) | |
(defn process-params | |
[ctx] |
@charset "UTF-8"; | |
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600,700); | |
@import url(http://fonts.googleapis.com/css?family=Source+Code+Pro:400,600); | |
@-webkit-keyframes blinking { | |
0% { | |
opacity: 1; } | |
50% { | |
opacity: 0; } | |
100% { | |
opacity: 1; } } |
(ns pleasework.app | |
(:require [om.core :as om :include-macros true] | |
[om.dom :as dom :include-macros true])) | |
(enable-console-print!) | |
(def app-state (atom {})) | |
(def ctg (-> js/React (aget "addons") (aget "CSSTransitionGroup"))) |
[!] clj-time | |
✔ 0.6.0 | |
ring/ring-core | |
✘ 0.5.0 | |
cljs-ajax | |
[✔] org.clojure/clojure | |
✘ 1.7.0-beta2 | |
cljs-ajax | |
✔ 1.7.0-RC2 | |
org.clojure/clojure |
(set-env! | |
:source-paths #{"src/clj" "src/cljs"} | |
:resource-paths #{"resources"} | |
:dependencies '[[adzerk/boot-cljs "0.0-2814-4"] | |
[adzerk/boot-cljs-repl "0.1.10-SNAPSHOT" :scope "test"] | |
[adzerk/boot-reload "0.2.6" :scope "test"] | |
[environ "1.0.0"] | |
[danielsz/boot-environ "0.0.1"] | |
[org.clojure/core.async "0.1.346.0-17112a-alpha"] |