Skip to content

Instantly share code, notes, and snippets.

View fritzvd's full-sized avatar

Fritz van Deventer fritzvd

View GitHub Profile
@fritzvd
fritzvd / unconf.js
Last active April 22, 2016 15:07
unconf
console.lol = function (arguments) {
var monkeys = '🐒'
arguments = Array.prototype.concat([monkeys], arguments, [monkeys])
console.log.call(null, arguments)
}
console.lol('hi')
@fritzvd
fritzvd / server.js
Last active March 17, 2017 13:20 — forked from inotives/server.js
express static server template
var express = require('express');
var app = express();
var port = process.env.PORT || 3000;
app.use(express.static('./buildfolder'));
app.listen(port, function() {
console.log('Server started and listening to::'+port);
});
@fritzvd
fritzvd / IDoelwit.java
Last active March 12, 2018 10:49
Radioknop
public interface IDoelwit {
public void schakel();
}
@fritzvd
fritzvd / README.md
Last active February 21, 2019 14:19
preferences

RrHN Continued: Adding a preferences form.

Create the preferences forms as it was demo-ed in class. In the preparations folder you'll find some instructions, and the HTML and CSS that should help you along.

Notice the gear-icon in the header of the left-column.
Please ignore the "Mark all items as seen" button and the different colors of the titles in the left-hand column. That will be the next task.