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
#[cfg(test)] | |
mod tests { | |
use postgres_types::{ToSql, FromSql}; | |
use serde::{Deserialize, Serialize}; | |
use serde_json::json; | |
#[test] | |
fn it_works() { | |
#[derive(Debug, Serialize, Deserialize, ToSql, FromSql)] |
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
/** | |
* Helper type for the 'sortByListOfIds' function so we can guarantee the object has an 'id' property. | |
*/ | |
export type WithId = { | |
id: number; | |
}; | |
/** | |
* Sort an array of objects in place by the 'id' key in the object. | |
* |
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 file was initially generated by Windows Terminal 1.1.2233.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", |
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
git branch --merged | egrep -v "(^\*|master|dev)" | xargs git branch -d |
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
{ | |
"file": [ | |
{ | |
"nodeDefinitions": [ | |
{ | |
"nodeDefinition": [ | |
{ | |
"type": 3, | |
"text": "A" | |
}, |
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
CLONE_METHOD=${1:-ssh} | |
BASE_CLONE_COMMAND="git clone" | |
REPO_OWNER=Cdalmaij | |
declare -a REPOS=( | |
"Proof_Of_Concept" | |
"Backend" | |
"Frontend_Hybrid" | |
"Frontend_Browser" | |
"Architecture_Models" |
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
Alt+30 ▲ | |
Alt+31 ▼ | |
Alt+16 ► | |
Alt+17 ◄ |
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
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Griet Reukers","1988-11-28","Nederland",NULL); | |
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Daantje Uiterwaal",NULL,"Roemenië",1.84); | |
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Gustaaf Wagner",NULL,"Malta",NULL); | |
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Thijs de Beurs","1993-01-23","Tsjechië",NULL); | |
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Zwier Schra",NULL,"Malta",1.99); | |
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Bartje Bosschaart",NULL,NULL,1.39); | |
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Louwrens Versloot",NULL,NULL,NULL); | |
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Berg Gomes","1987-12-02","Nederland",NULL); | |
INSERT INTO Acteurs (naam,geboortedatum,geboorteland,lengte) VALUES("Hilbrand van Mil","1955-07-12","Zweden",1.41); | |
INSERT INTO Acteurs (naam,geboorted |
NewerOlder