This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'world': 1, | |
'continent': 3, | |
'country': 7, | |
'region': 8, | |
'city': 11, | |
'village': 13, | |
'district': 15, | |
'block': 17, | |
'street': 19 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wij zijn op zoek naar een ervaren (backend) programmeur die ons kan helpen het laatste gedeelte van onze product te realiseren. | |
Wij: is een team van een designer, een UX’er en een front-end developer. | |
Je zal nauw samenwerken met onze front-end developer die dedicated op het project werkzaam is (volledige Fte). De werkzaamheden kan je deels vanuit huis doen en deels op locatie met onze front-end developer in Utrecht. | |
Waar zijn we naar op zoek? | |
Een all-round developer met focus op backend development in een PHP omgeving, en dan het liefst nog eentje die het leuk vindt om in een start-up omgeving te werken. | |
Je moet kennis hebben van: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!someObject.someArray) { | |
someObject.someArray = []; | |
} | |
someObject.someArray.unshift(item); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.getStory = function(id) { | |
storyService.getStory(id) | |
.then(function(data) { | |
if (data !== undefined) { | |
$scope.storyDetail = data; | |
console.log($scope.storyDetail); | |
} | |
else { | |
console.log("something went wrong with the data"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute pathogen#infect() | |
" set tabs to 2 spaces" | |
set smartindent | |
set expandtab | |
set tabstop=2 | |
set shiftwidth=2 | |
" set linenumbering |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load plugins | |
var gulp = require('gulp'), | |
sass = require('gulp-ruby-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
jshint = require('gulp-jshint'), | |
uglify = require('gulp-uglify'), | |
imagemin = require('gulp-imagemin'), | |
rename = require('gulp-rename'), | |
clean = require('gulp-clean'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin - My Template</title> | |
<style id="jsbin-css"> | |
*, *:before, *:after { | |
box-sizing: border-box; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:not(:last-child):after { | |
content: " | "; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width"> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
html { | |
font-family: sans-serif; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while test $# -gt 0; do | |
case "$1" in | |
--rebuild) | |
cd assets/jscss && bower update && cd - | |
cd assets/jscss && npm update && cd - | |
break | |
;; | |
esac |
NewerOlder