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 | |
| sudo apt-get purge -y maven | |
| if ! [ -e apache-maven-3.3.3-bin.tar.gz ]; then (curl -OL http://mirror.olnevhost.net/pub/apache/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz); fi | |
| sudo tar -zxf apache-maven-3.3.3-bin.tar.gz -C /usr/local/ | |
| sudo ln -s /usr/local/apache-maven-3.3.3/bin/mvn /usr/bin/mvn | |
| echo "Maven is on version `mvn -v`" |
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
| babel github-es6.js -o github.js --optional runtime --experimental |
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 typeahead [data owner] | |
| (reify | |
| om/IInitState | |
| (init-state [_] {:text ""}) | |
| om/IRenderState | |
| (render-state [_ {:keys [text]}] | |
| (let [words (:words data)] | |
| (dom/div nil | |
| (dom/h2 nil "Tag") | |
| (dom/input |
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
| defresource contact [handlers] | |
| :allowed-methods #{:delete :put} | |
| :available-media-types #{"application/json"} | |
| :handle-ok (fn [{{{id :id} :route-params routes :routes} :request}] | |
| (assert (realized? handlers)) | |
| (html [:div [:h2 "Contact: " id] | |
| [:a {:href (path-for routes (:contacts @handlers))} "Index"]]))) | |
| (defn make-handlers [database] | |
| (let [p (promise)] |
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 om-data-vis.chart | |
| (:require-macros [cljs.core.async.macros :refer [go go-loop]]) | |
| (:require [om.core :as om :include-macros true] | |
| [cljs.core.async :refer [<! chan put! sliding-buffer]] | |
| [ajax.core :refer (GET)] | |
| [sablono.core :as html :refer-macros [html]])) | |
| (defn- draw-chart [cursor {:keys [div bounds x-axis y-axis plot]}] | |
| (let [{:keys [id width height]} div | |
| Chart (.-chart js/dimple) |
OlderNewer