I hereby claim:
- I am moonglum on github.
- I am moonglum (https://keybase.io/moonglum) on keybase.
- I have a public key whose fingerprint is 1EEF 0573 E355 33E8 1722 042F E203 C1DA 52DA 2D13
To claim this, I am signing this object:
fn main() { | |
println!("Hello, world!"); | |
} | |
fn make_guess(_g: Game, _c: char) -> Game { | |
unimplemented!() | |
} | |
#[derive(Debug, PartialEq, Eq)] | |
struct Game { |
<html> | |
<head> | |
<style> | |
body { | |
counter-reset: n; | |
} | |
div:before { | |
counter-increment: n; | |
content: counter(n); | |
} |
I hereby claim:
To claim this, I am signing this object:
/*jslint indent: 2, nomen: true, maxlen: 100 */ | |
/*global require, applicationContext, Joi */ | |
(function () { | |
'use strict'; | |
var FoxxGenerator = require('foxx_generator').Generator, | |
Joi = require('joi'), | |
generator; | |
generator = new FoxxGenerator('books', { |
var relationName = applicationContext.collectionName("containsX"); | |
var vertexCollectionName = applicationContext.collectionName("X"); | |
var graph_module = require("org/arangodb/general-graph"); | |
var sampleGraph = graph_module._graph("sampleGraph"); | |
var contactSpaceGraph = graph_module._graph("sampleGraph"); | |
var vertex = contactSpaceGraph._getVertexCollectionByName(vertexCollectionName); | |
var edge = contactSpaceGraph._getEdgeCollectionByName(relationName); | |
var Foxx = require("org/arangodb/foxx"); | |
var controller = new Foxx.Controller(applicationContext); |
Bringing machine 'default' up with 'virtualbox' provider... | |
==> default: Importing base box 'hashicorp/precise64'... | |
==> default: Matching MAC address for NAT networking... | |
==> default: Checking if box 'hashicorp/precise64' is up to date... | |
==> default: Setting the name of the VM: hcking_default_1399932017650_56132 | |
==> default: Clearing any previously set network interfaces... | |
==> default: Preparing network interfaces based on configuration... | |
default: Adapter 1: nat | |
default: Adapter 2: hostonly | |
==> default: Forwarding ports... |
I’m a member of the core team of the NoSQL database project ArangoDB where I work on the graph functionality, tools for the Ruby community to use the database and Foxx. Furthermore I contribute to various open source projects like hacken.in (an event calender for nerds in my hometown written in Rails) and projects related to ArangoDB. You can find me listening or speaking at our local usergroups for Ruby, JavaScript, NoSQL and (as a coach for) Rails Girls and Coder Dojo.
// Feedback Foxx | |
Movie = Model.extend({ | |
// attribute? schema? | |
schema: { | |
// Long Form | |
// title: { | |
// required: false, | |
// defaultValue: "Unknown", | |
// type: "String" |
require "ashikawa-core" | |
db = Ashikawa::Core::Database.new do |config| | |
config.url = "http://localhost:8529" | |
end | |
collection = db["documenttests"] | |
document = collection.create_document(:name => "The Dude") | |
document_key = document.key |