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 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) |
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
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 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 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 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 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 | |
while true; | |
do | |
clear | |
git log \ | |
--graph \ | |
--all \ | |
--color \ | |
--date=short \ | |
-40 \ |
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
<?php | |
class Nutrient extends BaseModel { | |
protected $guarded = array(); | |
public static $rules = array( | |
'name' => 'required', | |
'unit' => 'required' | |
); |
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
<?php | |
class IngredientTypesController extends BaseController { | |
/** | |
* Ingredient Types Repository | |
* | |
* @var IngredientType | |
*/ | |
protected $type; |
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
<?php namespace Endata\Lists; | |
use MailChimp; | |
use Carbon\Carbon; | |
class MailingList { | |
protected $mailchimp; | |
protected $list_id = 'MCIDXXX'; // The MailChimp list 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
<?php namespace Endata\Data; | |
use Illuminate\Support\Facades\DB; | |
use Illuminate\Support\Facades\File; | |
use Ingredient; | |
use Nutrient; | |
use Composition; | |
use Settings; | |
use Plant; | |
use Formula; |
NewerOlder