Problem accessing /db/data/ext/CypherPlugin/graphdb/execute_query. Reason:
Relationship[17659] not found.
Caused by:
{ | |
"adjacencies": { | |
"node/1": { | |
"node/2": "rel/1", | |
"node/3": "rel/2" | |
}, | |
"node/2": { | |
"node/4": "rel/3" | |
}, | |
"node/3": { |
thing = | |
if id = input.id | |
Thing.getById id, _ | |
else | |
url = adjustURL input.url | |
Thing.getByURL url, _ |
console.log(Date.now() + ' requiring coffee-script...'); | |
require('coffee-script'); | |
console.log(Date.now() + ' requiring streamline...'); | |
require('streamline'); | |
console.log(Date.now() + ' requiring custom...'); | |
require('./custom'); |
# You need to have bash-completion installed, e.g. `brew install bash-completion`. | |
# And you may need to have git installed this way too, e.g. `brew install git`. | |
# This is needed for bash completion: | |
if [ -f `brew --prefix`/etc/bash_completion ]; then | |
. `brew --prefix`/etc/bash_completion | |
fi | |
# And here's the sexy prompt that shows the Git branch for git repos: | |
export PS1='\n\033[1m\w$(__git_ps1 " (%s)") $\033[0m ' |
$('.tweet').each -> | |
$tweet = $(this) | |
# ignore tweets from ABC and DEF user IDs | |
return if $tweet.data('user-id') in [123, 456] | |
# also ignore tweets we've seen | |
return if $tweet.data('image-opened') | |
$openLink = $tweet.find '.open-tweet' |
return if not require('streamline/module')(module) | |
task 'greet', -> | |
console.log 'Hello...' | |
setTimeout _, 1000 | |
console.log '...world' |
module.exports = class Model | |
toString: (raw) -> | |
return super if raw | |
'test 1 2 3' |
/*** Generated by streamline 0.2.2 - DO NOT EDIT ***/ | |
var __rt=require('streamline/lib/callbacks/runtime').runtime(__filename),__func=__rt.__func,__cb=__rt.__cb,__propagate=__rt.__propagate,__trap=__rt.__trap,__future=__rt.__future,__setEF=__rt.__setEF,__g=__rt.__g; | |
var Animal; | |
module.exports = Animal = (function() { | |
Animal.name = "Animal"; | |
function Animal() { | |
}; | |
Animal.prototype.greet = function Animal_prototype_greet__1(_) { | |
var __frame = { |
# url.coffee | |
# by Aseem Kishore ( https://github.com/aseemk ), under MIT license | |
# | |
# A simplified wrapper around the native 'url' module that returns "live" | |
# objects: updates to properties are reflected in related properties. E.g. | |
# updates to the `port` property will be reflected on the `host` property. | |
# | |
# The public API and behavior are pretty close to the native 'url' module's: | |
# http://nodejs.org/docs/latest/api/url.html Currently lacking / known issues: | |
# |