Doc http://github.hubspot.com/pace/
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
https://help.github.com/articles/ignoring-files | |
https://github.com/github/gitignore |
http://fedoraproject.org/de/get-fedora-all
Eine leere CD oder DVD oder ein leerer 1GB+ USB-Stick 64-bit Intel-kompatibler PC 1GB Arbeitsspeicher (RAM) Mindestens 10 GB Festplattenspeicher (nur für Installation benötigt)
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
javascript:(function(){$('link[rel="stylesheet"]').each(function(){var url=$(this).attr('href').replace(/[\?&][^\?&=]+=[0-9]+$/,'');url += (url.indexOf('?') == -1 ? '?' : '&') + 'nocache=' + (new Date()).getTime();console.log(url);$(this).attr('href',url);});})() |
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
/** | |
* Finds your daily SublimeText2 package. Yeah, randomly. | |
* | |
* Requires CasperJS: http://casperjs.org/ | |
* | |
* Usage: $ casperjs sublime-day.js | |
*/ | |
var casper = require('casper').create(); | |
var f = require("utils").format; | |
var packages = []; |
See http://stackoverflow.com/questions/10011011/using-node-js-how-do-i-read-a-json-object-into-server-memory
var fs = require('fs');
var obj = JSON.parse(fs.readFileSync('file', 'utf8'));
var fs = require('fs');
See https://gist.githubusercontent.com/textarcana/5737478/raw/e255fdc9e896507210406d9641ed9e3469324a6b/array-permutation.js
/*jslint sloppy:true, white:true, vars:true, plusplus:true */
var permutation = function (collection){
var current,
subarray,
result = [],
currentArray = [],
newResultArray = [];
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 can be ran as a standalone script but really it is just a reference of things I've done with a fresh install in case I want or need to install Ubuntu on another machine. | |
############################################################################################################################## | |
# Tips from the following URL: http://howtoubuntu.org/things-to-do-after-installing-ubuntu-14-04-trusty-tahr | |
# ***Note: First you will need to enable partner repositories in the Software & Updates GUI.*** | |
echo "Downloading GetDeb and PlayDeb....." && | |
wget http://archive.getdeb.net/install_deb/getdeb-repository_0.1-1~getdeb1_all.deb http://archive.getdeb.net/install_deb/playdeb_0.3-1~getdeb1_all.deb && |