Ingredienten 4 personen
rijst -> 1 cups rijst
koriander -> 1 bussel
look -> 2-3 teentjes
gehakt -> 250 gram
{ | |
"build": { | |
"development": { | |
"distribution": "internal", | |
"channel": "develop", | |
"ios": { | |
"simulator": true | |
}, | |
"autoIncrement": true | |
}, |
Ingredienten 4 personen
rijst -> 1 cups rijst
koriander -> 1 bussel
look -> 2-3 teentjes
gehakt -> 250 gram
{ | |
"id":33, | |
"plichtigeId":8, | |
"volgnummer":999, | |
"naam":"d", | |
"omschrijvingPlichtige":"d", | |
"vrijstellingOppervlaktewater":null, | |
"vrijstellingPwz":null, | |
"vrijstellingGrondwater":null, | |
"aantalGezinsleden":5, |
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
function api(services){ | |
function getUser(){ | |
return services.user.get(); | |
} | |
function getName(){ | |
return services.user.getName(); | |
} | |
function play(){ |
source "https://rubygems.org" | |
gem 'breakpoint', '1.3' | |
gem 'chunky_png', '1.2.7' | |
gem 'compass', '0.12.2' | |
gem 'fssm', '0.2.9' | |
gem 'modular-scale', '1.0.4' | |
gem 'respond-to', '2.6' | |
gem 'sass', '3.2.5' | |
gem 'sassy-math', '1.2' |
module.exports = function (grunt) { | |
"use strict"; | |
var neat = require('node-neat').includePaths; | |
// Config... | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
connect: { | |
server: { | |
options: { | |
port: 9001, |
[user] | |
# Credentials. | |
name = Foo Bar | |
email = [email protected] | |
drupal = $(whoami) | |
[credential] | |
# Save passwords in ~/.git-credentials. | |
helper = store |
/** | |
* A* (A-Star) Pathfinding Algorithm in JavaScript | |
* @author Matthew Trost | |
* @license Creative Commons Attribution-ShareAlike 3.0 Unported License | |
* @datepublished December 2010 | |
*/ | |
function astar (map, heuristic, cutCorners) { | |
var listOpen = []; | |
var listClosed = []; |