Skip to content

Instantly share code, notes, and snippets.

View sandervankasteel's full-sized avatar
💻
Doing code stuff

Sander van Kasteel sandervankasteel

💻
Doing code stuff
View GitHub Profile
def test_that_generate_calculates_populated_output_with_populated_input():
source_report = [{
"subject": "/",
"metrics": [{
"name": "Total Score",
"value": 69,
"desiredSize": "larger"
}]
}]
target_report = [{

Keybase proof

I hereby claim:

  • I am sandervankasteel on github.
  • I am sandervankasteel (https://keybase.io/sandervankasteel) on keybase.
  • I have a public key whose fingerprint is CB8D B0D3 11DF 2591 FB8D 1950 36A0 96C8 DE6B 9CDF

To claim this, I am signing this object:

@sandervankasteel
sandervankasteel / gist:f67295564c205c902231e6ab8ca8867f
Created October 20, 2019 22:29
Build errors CityOfThieves-cli
sander@titan ‹ master ● › : ~/Development/cityofthieves-cli/src/CityOfThieves-1.2
[0] % ./build_files
sander@titan ‹ master ● › : ~/Development/cityofthieves-cli/src/CityOfThieves-1.2
[0] % ./build_console
***Unknown option -qt=qt5
Usage: qmake [mode] [options] [files]
QMake has two modes, one mode for generating project files based on
some heuristics, and the other for generating makefiles. Normally you
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"LiveBlogPosting",
"@id":"http://techcrunch.com/2015/03/08/apple-watch-event-live-blog",
"about":{
"@type":"Event",
"startDate":"2015-03-09T13:00:00-07:00",
"name":"Apple Spring Forward Event"
},
function ssh() {
/usr/bin/ssh $@
~/tools/after-ssh.sh
}
@sandervankasteel
sandervankasteel / environment.ts
Created July 3, 2017 11:38
Example for an environment store for Ionic2
import { Injectable } from '@angular/core';
import {Http, Response} from "@angular/http";
import {Observable} from "rxjs";
@Injectable()
export class Environment {
private rawData: Object;
constructor(private http: Http) {