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
#!/bin/sh | |
lessc resources/less/lurch.main.less resources/public/css/lurch.css |
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
(ns karmalack.server | |
(:require [karmalack.config :refer [slack-conn-config dev?]] | |
[karmalack.db :as db] | |
[compojure.core :refer :all] | |
[liberator.core :refer [defresource resource]] | |
[clj-slack.core :as slack] | |
[org.httpkit.server :refer [run-server]] | |
[com.stuartsierra.component :as component] | |
[ring.middleware.cors :refer [wrap-cors]] | |
[ring.middleware.reload :refer [wrap-reload]] |
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
(defn- -single-line-input [value on-key placeholder] | |
(fn [value on-key placeholder] | |
[:input.form-control.input-lg {:type "text" | |
:value @value | |
:on-key-down on-key | |
:on-change #(reset! value (.. % -target -value)) | |
:placeholder placeholder | |
:autoFocus true}])) | |
(defn- single-line-input [value on-key placeholder] |
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
;; input lines are like: | |
;; fs.truncate(path, len, callback) | |
;; fs.truncateSync(path, len) | |
;; fs.chown(path, uid, gid, callback) | |
;; fs.chownSync(path, uid, gid) | |
;; which are converted to: | |
;; (def ftruncate (core/clojureify fs.ftruncate)) | |
;; (def ftruncate-sync (core/clojureify-sync fs.ftruncateSync)) | |
;; ... |
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
(ns node-tests.core | |
(:refer-clojure :exclude [exists?]) | |
(:require [cljs.nodejs :as nodejs] | |
[cljs.core.async :as async :refer [<!]]) | |
(:require-macros [cljs.core.async.macros :refer [go]])) | |
(nodejs/enable-util-print!) | |
;; Some helpers which help transform node style functions into clojurey ones | |
;; |
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
(ns node-tests.core | |
(:require [cljs.nodejs :as nodejs] | |
[cljs.core.async :as async :refer [<!]]) | |
(:require-macros [cljs.core.async.macros :refer [go]])) | |
(nodejs/enable-util-print!) | |
(defn clojureify [f] | |
(fn [] (js/console.log 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
" Enable syntax highlighting | |
" and apply our nice color theme | |
" | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() |
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
GreyhoundReader.prototype.readIndexed = function(sessionId, bbox, schema, depthBegin, depthEnd, cb) { | |
var options = { | |
schema: (schema || Schema.standard()), | |
}; | |
if (typeof(bbox) === 'function') { | |
cb = bbox; | |
bbox = schema = depthBegin = depthEnd = null; | |
} |
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
Compiling "target/dev/renderer.js" failed. | |
clojure.lang.ExceptionInfo: failed compiling file:src/renderer/core.cljs | |
core.clj:4403 clojure.core/ex-info | |
compiler.clj:1029 cljs.compiler/compile-file | |
compiler.clj:1082 cljs.compiler/compile-root | |
closure.clj:341 cljs.closure/compile-dir | |
closure.clj:381 cljs.closure/eval2986[fn] | |
closure.clj:292 cljs.closure/eval2923[fn] | |
closure.clj:395 cljs.closure/eval2973[fn] | |
closure.clj:292 cljs.closure/eval2923[fn] |
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
user=> (require 'weasel.repl.websocket) | |
nil | |
user=> (cemerick.piggieback/cljs-repl | |
#_=> :repl-env (weasel.repl.websocket/repl-env | |
#_=> :ip "0.0.0.0" :port 9001)) | |
WARNING: Symbol event/EventType is not a protocol at line 25 file:/Users/verma/.m2/repository/weasel/weasel/0.3.0/weasel-0.3.0.jar!/weasel/impls/websocket.cljs | |
WARNING: Symbol event/EventType is not a protocol at line 25 out/weasel/impls/websocket.cljs | |
UnsupportedOperationException count not supported on this type: Symbol clojure.lang.RT.countFrom (RT.java:556) | |
user=> |