Skip to content

Instantly share code, notes, and snippets.

We are hiring SREs and cloud engineers!
Setting Default Description
unsupported.dbms.directories.neo4j_home null Root relative to which directory settings are resolved. This is set in code and should never be configured explicitly.
dbms.read_only false Only allow read operations from this Neo4j instance. This mode still requires write access to the directory for lock purposes.
unsupported.dbms.disconnected false Disable all protocol connectors.
unsupported.dbms.report_configuration false Print out the effective Neo4j configuration after startup.
dbms.config.strict_validation false A strict configuration validation will prevent the database from starting up if unknown configuration options are specified in the neo4j settings namespace (such as dbms., ha., cypher., etc). This is currently false by default but will be true by default in 4.0.
dbms.allow_format_migration false Whether to allow a store upgrade in case the current version of the database starts against an older store version. Setting this to `true` does not guarantee successful upgrade, i
---- MODULE dbm ----
EXTENDS TLC, Integers, Sequences
(* --algorithm dbm
variables
Ids = {1..100},
requested = [i \in Ids |-> FALSE],
processed = [i \in Ids |-> FALSE];
from morse.builder import *
class Sickle(GroundRobot):
"""
A template robot model for kuka, with a motion controller and a pose sensor.
"""
def __init__(self, name = None, debug = True):
# kuka.blend is located in the data/robots directory
GroundRobot.__init__(self, 'mysim/data/mysim/robots/sickle.blend', name)
2016-02-23T05:22:26.516+0000: 66359.089: [GC pause (G1 Evacuation Pause) (young)
Desired survivor size 367001600 bytes, new threshold 15 (max 15)
- age 1: 3140560 bytes, 3140560 total
- age 2: 341600 bytes, 3482160 total
- age 3: 454032 bytes, 3936192 total
- age 4: 190776 bytes, 4126968 total
- age 5: 151928 bytes, 4278896 total
- age 6: 258312 bytes, 4537208 total
- age 7: 141808 bytes, 4679016 total
- age 8: 1008912 bytes, 5687928 total
@jakewins
jakewins / keybase.md
Created September 29, 2014 18:25
Keybase proof

Keybase proof

I hereby claim:

  • I am jakewins on github.
  • I am jakewins (https://keybase.io/jakewins) on keybase.
  • I have a public key whose fingerprint is C039 183B DF5F 3B0F 479F 6FE3 86C3 657C 10A2 B20C

To claim this, I am signing this object:

const int fanPin = 5; // The arduino connector that controls the motor relay
const int tempSensorPin = 1; // The arduino connector that is connected to our thermistor
const short targetTemperature = 15760; // 15760 from thermistor = 107C, or 224F
short currentTemperature;
void setup() {
// This sets the arduino up to talk to my laptop, to let it send temperature readings
Serial.begin(9600);
@jakewins
jakewins / gist:3580935
Created September 1, 2012 17:25
SCAD Package Manager example
# Define this project, this lets others depend on us
Project:
Group: org.jakewins
Name: example
Version: 1.0
# Other projects we depend on
Dependencies:
# We use parametric gears (which in turn might have other dependencies)