I hereby claim:
- I am ducky427 on github.
- I am rohit (https://keybase.io/rohit) on keybase.
- I have a public key ASCGRWg4tLLWMcKtvJs4JSaz7rzYoThes3Rzbyc_WqqTmQo
To claim this, I am signing this object:
Homebrew build logs for llvm on macOS 10.14.2 | |
Build date: 2018-12-28 11:11:55 |
(ns datatable.core | |
(:require [reagent.core :as reagent] | |
[cljsjs.fixed-data-table])) | |
(def Table (reagent/adapt-react-class js/FixedDataTable.Table)) | |
(def Column (reagent/adapt-react-class js/FixedDataTable.Column)) | |
(defn gen-table | |
"Generate `size` rows vector of 4 columns vectors to mock up the table." | |
[size] |
(ns neocons-timeout.core | |
(:require [clojurewerkz.neocons.rest :as nr] | |
[clojurewerkz.neocons.rest.nodes :as nn])) | |
(defn -main | |
[& args] | |
(let [conn (-> (nr/connect "http://localhost:7474/db/data/") | |
(assoc-in [:options :socket-timeout] 1000) ;;timeout in milliseconds | |
(assoc-in [:options :conn-timeout] 1000))] | |
(println (nr/create conn {:name "John"})))) |
;; Copyright (c) 2011-2014 Michael S. Klishin, Alex Petrov, and The ClojureWerkz | |
;; Team | |
;; | |
;; The use and distribution terms for this software are covered by the | |
;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) | |
;; which can be found in the file epl-v10.html at the root of this distribution. | |
;; By using this software in any fashion, you are agreeing to be bound by | |
;; the terms of this license. | |
;; You must not remove this notice, or any other, from this software. |
try(Transaction tx = db.beginTx()) { | |
Node startNode = db.getNodeById( nodeId ); | |
int maxLength = 0; | |
boolean to_continue = true; | |
while (to_continue) { | |
maxLength++; | |
Iterator<Relationship> rels = startNode.getRelationships(Direction.OUTGOING, NEXT).iterator(); | |
if (rels.hasNext()) { | |
startNode = rels.next().getEndNode(); |
(ns bulk-test.core | |
(:require [clojurewerkz.neocons.rest :as nr] | |
[clojurewerkz.neocons.rest.nodes :as nn] | |
[clojurewerkz.neocons.rest.cypher :as cy]) | |
(:gen-class)) | |
(defn create-nodes | |
[conn num] | |
(let [nodes (repeat num {:name "Joe Bloggs" :age 32})] | |
(nn/create-batch conn nodes))) |
I hereby claim:
To claim this, I am signing this object:
d3.csv("data/gates_money.csv", function(data) { | |
custom_bubble_chart.init(data); | |
custom_bubble_chart.toggle_view('all'); | |
}); | |
$(document).ready(function() { | |
$('#view_selection a').click(function() { | |
var view_type = $(this).attr('id'); | |
$('#view_selection a').removeClass('active'); | |
$(this).toggleClass('active'); |
from macropy.macros.string_interp import macros, s | |
a, b = 1, 2 | |
c = s%"%{a} apple and %{b} bananas" |