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
Chicken on a Raft | |
================= | |
Skipper's in the wardroom drinking gin, | |
I don't mind knocking but I ain't going in, | |
'Jimmy's' laughing like a drain, | |
Been looking at m' 'comic cuts' again. | |
Chicken on a raft on a Monday morning, | |
oh what a terrible sight to see, |
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
/** | |
* Title: Time-independent Pacman game | |
* Authors: Dieter Castel (r0256149) & Jonas Devlieghere (r0256709) | |
*/ | |
vocabulary PacmanVoc{ | |
/* We guarantee you that dir, Left, Right, Up, Down | |
* will always be correctly interpreted in structures. | |
* You should not check this! |
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
# Shortcuts | |
alias la="ls -A --color" | |
alias cl="clear" | |
alias mk="make" | |
# Applications | |
alias intellij="/opt/intellij/bin/idea.sh" |
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
Show hidden characters
{ | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80 | |
], | |
"scroll_speed": 0, |
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
{ | |
"selector": "text.tex.latex", | |
"cmd": ["texify","$file_name", "-b", "-p", "-c", "-q", "--tex-option=\"--synctex=1\"", "--run-viewer"], | |
} |
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
/** | |
* @author Jonas Devlieghere <[email protected]> | |
* @version 1.0 | |
* | |
* The Kabsch algorithm calculates the optimal rotation matrix that minimizes | |
* the RMSD (root mean squared deviation) between two paired sets of points. | |
* | |
* The algorithm solves the equation Q = P*R + T where R is the rotation and | |
* T the translation in order to align data sets P and Q as best as possible. | |
* |
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
{ | |
"cmd" : ["C:\\lcc\\bin\\lcc.exe", "$file_name", "-o", "${file_base_name}.exe"], | |
"selector" : "source.c", | |
"shell":true, | |
"working_dir" : "$file_path" | |
} | |
{ | |
"cmd" : ["gcc", "$file_name", "-o", "${file_base_name}"], | |
"selector" : "source.c", |
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
*.class | |
# Package Files | |
*.jar | |
*.war | |
*.ear | |
# Eclipse | |
.classpath | |
.project |
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
\documentclass[11pt,a4paper,oneside]{article} | |
% Essential | |
\usepackage[english]{babel} | |
\usepackage{fancyhdr} | |
\usepackage{titling} | |
% Optional | |
\usepackage{hyperref} | |
\usepackage{amsmath} | |
\usepackage{graphicx} | |
\usepackage{listings} |
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
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic|Open+Sans:400italic,700italic,400,700); | |
/* Reset */ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, | |
b, u, i, center, | |
dl, dt, dd, ol, ul, li, |