This document is work in progress, and its motivation is to be a document about me.
Motivation
- To serve as a reference guide so we can work better together;
- To be an instrument of self-knowledge and reflection on my career;
#!/bin/bash | |
echo "Directory of git projects: ($(echo ~)/Projects)" | |
read projects_dir | |
projects_dir=${projects_dir:=$(echo ~)/Projects} | |
echo Projects dir root: $projects_dir | |
echo ---------------------------------- | |
echo |
def required | |
method = caller_locations(1,1)[0].label | |
raise ArgumentError, | |
"A required keyword argument was not specified when calling '#{method}'" | |
end | |
require('childprocess') | |
require('fileutils') | |
class NamedProcess |
Node = function(char){ | |
this.char = char; | |
}; | |
Node.prototype = { | |
createNext: function(char){ | |
this.next = new Node(char); | |
return this.next; | |
} | |
} |
#Fri Dec 16 10:38:26 BRST 2011 | |
@org.eclipse.debug.ui=3.7.101.v20110817_r371 | |
/instance/org.eclipse.ui.ide/IDE_ENCODINGS_PREFERENCE=cp1252' | |
/instance/org.eclipse.mylyn.java.ui/org.eclipse.mylyn.java.ui.run.count.3_1_0=1 | |
/instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.text.custom_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/> | |
@org.eclipse.ui.ide=3.7.0.v20110809-1737 | |
@org.eclipse.mylyn.java.ui=3.6.0.v20110608-1400 | |
/instance/org.eclipse.jdt.launching/org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\n<vmSettings defaultVM\="57,org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType13,1320680875413" defaultVMConnector\="">\n<vmType id\="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType">\n<vm id\="1320680875413" name\="jdk1.6.0_24" path\="/home/kalecser/usr/java/jdk1.6.0_24"/>\n<vm id\="1320681067976" name\="jdk1.5.0_22" path\="/home/kalecser/usr/java/jdk1.5.0_22"/>\n</vmType>\n</vmSettings>\n | |
/instance/org.eclipse.jdt.ui/org.e |