- Syp Wynia, Elsevier https://twitter.com/eenvandaag/status/826119654363975680
- Willem Post, Clingendael https://twitter.com/SimonHendriksen/status/826398835895332864
- Wierd Duk, AD http://wnl.tv/2017/01/31/selectieve-verontwaardiging-trump/ https://twitter.com/wierdduk/status/826466002028331009
- Roderik Veelo, RTL Z http://www.rtlz.nl/opinie/column/roderick-veelo/anti-trump-gekte-grenst-aan-psychose
- Marianne Zwagerman
View config.fish
This file contains 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
set -x LC_ALL en_US.UTF-8 | |
set -x LANG en_US.UTF-8 | |
# https://github.com/oh-my-fish/theme-bobthefish | |
set -g theme_date_format "+%d %H:%M" | |
set -g theme_date_timezone Europe/Berlin | |
# Pyenv provided by: https://github.com/oh-my-fish/plugin-pyenv |
View covid-meldingen-26-8-8-9
This file contains 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
Gemnr;Gemeente;Bev_2020;van_datum;tot_datum;Totaal_Absoluut;Totaal_inc100000;Zkh_Absoluut;Zkh_inc100000;Overleden_Absoluut;Overleden_inc100000 | |
518;'s-Gravenhage (gemeente);545838;26-8-2020;8-9-2020;799;146,4;3;0,5;1;0,2 | |
796;'s-Hertogenbosch;155111;26-8-2020;8-9-2020;58;37,4;0;0;1;0,6 | |
1680;Aa en Hunze;25445;26-8-2020;8-9-2020;0;0;0;0;0;0 | |
358;Aalsmeer;31859;26-8-2020;8-9-2020;21;65,9;0;0;0;0 | |
197;Aalten;27121;26-8-2020;8-9-2020;7;25,8;0;0;0;0 | |
59;Achtkarspelen;27843;26-8-2020;8-9-2020;0;0;0;0;0;0 | |
482;Alblasserdam;20165;26-8-2020;8-9-2020;9;44,6;0;0;0;0 | |
613;Albrandswaard;25590;26-8-2020;8-9-2020;15;58,6;0;0;0;0 | |
361;Alkmaar;109436;26-8-2020;8-9-2020;27;24,7;0;0;0;0 |
View seating.snt
This file contains 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
array2<int> rooms; | |
# Each room is represented by the maximum number of people that it can seat | |
rooms = [2, 3, 4, 5]; | |
# People are represented by a list of indexes of the rooms where they sit (ten people in this case) | |
array10<int> people; | |
function respectCapacity? (people, roomNumber, capacity) { |
View prepare-commit-msg
This file contains 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
#!/usr/bin/env python3 | |
import sys | |
commit_msg_filepath = sys.argv[1] | |
with open(commit_msg_filepath, 'r+') as fh: | |
lines = fh.readlines() | |
if '#' not in lines[0]: |
View skipping_codable.swift
This file contains 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
// | |
// Models.swift | |
// strw | |
// | |
// Created by Alper Cugun on 23/8/18. | |
// Copyright © 2018 alper. All rights reserved. | |
// | |
import Foundation |
View Test-cmpcodesize.sh
This file contains 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/sh | |
export SWIFT_OLD_BUILDDIR="/Users/alper/Documents/swift-source/build/Ninja-DebugAssert/swift-macosx-x86_64" | |
export SWIFT_NEW_BUILDDIR="/Users/alper/Documents/swift-source/build/Ninja-ReleaseAssert/swift-macosx-x86_64" | |
./cmpcodesize.py -a | |
./cmpcodesize.py -a -p > out_a.csv | |
./cmpcodesize.py -c | |
./cmpcodesize.py -c -p > out_c.csv |
View Dutch Trump Apologists.md
View List of blockers.md
- https://twitter.com/sypwynia
- https://twitter.com/yoerialbrecht
- https://twitter.com/wierdduk
- https://twitter.com/geertwilderspvv
- https://twitter.com/baspaternotte
- https://twitter.com/schmidtlepp
- https://twitter.com/nadiaezzeroili/
- https://twitter.com/ncilla
- https://twitter.com/MichaelvdGalien
- https://twitter.com/SIGILUX
View simple-git-branching-model.md
a simple git branching model
This is a very simple git workflow. It (and variants) is in use by many people. I settled on it after using it very effectively at Athena. GitHub does something similar; Zach Holman mentioned it in this talk.
Update: Woah, thanks for all the attention. Didn't expect this simple rant to get popular.
View gist:5189046
How to set up a fresh project (on OS X)
- Install homebrew, by getting the commandline tools: https://developer.apple.com/downloads and then do the install homebrew here: http://mxcl.github.com/homebrew/
- Open Terminal.app
- Check python is installed by typing
python
- Install pip if you don't have it
sudo easy_install pip
- Use pip to install virtualenv (don't ask me why):
sudo pip install virtualenv
- Find a fresh place to checkout the project: git@github.com:whatsthehubbub/victoryboogiewoogie.git use the Mac client: http://mac.github.com/
- In the terminal
cd
to where you just checked out the project, for instance:cd ~/Documents/projects/sake/victorycheckout
- Create a virtual environment if you don't have one yet:
virtualenv venv --distribute
NewerOlder