Skip to content

Instantly share code, notes, and snippets.

@fuddl
fuddl / Preferences.sublime-settings
Last active January 4, 2016 12:49
my sublimetext2 settings
{
"detect_slow_plugins": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"font_size": 12,
"smart_indent": false,
"ignored_packages":
[
"LaTeX",
"Scala",
@fuddl
fuddl / hex.css
Created December 3, 2012 21:31
Displays html tables as hex matrix
table {
display: block;
}
tr {
display:block;
margin-bottom: -20px;
border-collapse: collapse;
}
@fuddl
fuddl / normal-rand.js
Last active October 13, 2015 08:47
Gaussian normal distribution
/**
* Generate a random number considering gaussian normal distribution.
*
* @param min
* The minimal value. Can be negative or positive.
*
* @param max
* The maximal value. Should be higher then min.
*
* @param dis