Skip to content

Instantly share code, notes, and snippets.

View sebdeckers's full-sized avatar
🐑
Hacking on Commons Host

Sebastiaan Deckers sebdeckers

🐑
Hacking on Commons Host
View GitHub Profile
@sebdeckers
sebdeckers / README.md
Created August 28, 2019 08:26
k3s-playground
@sebdeckers
sebdeckers / keybase.md
Created August 15, 2019 09:13
keybase.md

Keybase proof

I hereby claim:

  • I am sebdeckers on github.
  • I am sebdeckers (https://keybase.io/sebdeckers) on keybase.
  • I have a public key ASCdrZZCHTmmCqUhg3EHartVEhC25LJN4Ue9IUKFKg67Tgo

To claim this, I am signing this object:

@sebdeckers
sebdeckers / README.md
Created July 29, 2019 10:10
HTTP/2, HTTP/3, and Beyond

HTTP/2, HTTP/3, and Beyond

A brief overview of the web's latest transport protocols and an exploration of what's coming soon-ish.

  • Date: 2019-07-26
  • Speaker: Sebastiaan Deckers
  • Location: Zendesk, Singapore

Introduction

@sebdeckers
sebdeckers / bench-loops.js
Created May 3, 2017 03:45
Micro benchmark for and for-of loops in Node.js
var Benchmark = require('benchmark');
var suite = new Benchmark.Suite;
var arr = [1,2,3,4,5,6,7,8,9,0]
suite.add('for', function() {
for (var i = 0, len = arr.length; i < len; i++) {
var item = arr[i];
item + 1;
}
})
.add('for-of', function() {
@sebdeckers
sebdeckers / GASGWDI.md
Created December 13, 2016 12:35 — forked from tongrhj/GASGWDI.md
General Assembly Singapore WDI Curriculum Syllabus 2015

General Assembly Singapore

Web Development Immersive

Curriculum 2015-2016

2016-01-20

Breakfast

@sebdeckers
sebdeckers / 10.html
Created October 31, 2016 22:46
http2-max-concurrent-requests-per-connection
This file has been truncated, but you can view the full file.
<!DOCTYPE html><html><head><style>body {
font-family: monospace;
}
table th, table td {
text-align: left;
padding: 2px;
}
th.frame,
@sebdeckers
sebdeckers / app-foobar.txt
Last active April 1, 2016 08:49
GA WDI Node.js guest talk outline
OMG it worked
@sebdeckers
sebdeckers / untitled
Created January 15, 2016 06:26
Untitled
new content
@sebdeckers
sebdeckers / untitled
Created January 15, 2016 06:26
Untitled
new content
@sebdeckers
sebdeckers / map.js
Last active November 25, 2015 02:19
Map
class Person {
constructor (name, score) {
this.name = name
this.score = score
}
}
const alice_foo = new Person('Alice', 10)
const alice_bar = new Person('Alice', 50)