Skip to content

Instantly share code, notes, and snippets.

View anathematic's full-sized avatar

Thomas anathematic

  • Hobart, Australia
View GitHub Profile
// Each object in the json has a name. That's it. This will sort them.
json = json.sort(function (a,b) {
if (a.name < b.name) return -1;
if (a.name > b.name) return 1;
return 0;
});
@anathematic
anathematic / survey.md
Created November 16, 2009 10:10 — forked from radar/survey.md
  • What did you do to get good at Rails?
  • I wouldn't consider myself that good at rails however TDD and BDD (writing tests) REALLY helped me improve a lot
  • Who taught you what you know?
  • Mostly self fiddling / I've learnt a lot from the Mocra team (mostly Radar)
  • Do you have any fond (or not so fond) memories of your learning experiences?
  • Too many to list, this is a full time job for me
  • What was your first production app and what did you learn from it?
## configure
thomass-imac:mysql-5.1.39 thomas$ ./configure --prefix=/usr/local/mysql --with-extra-charsets=complex --enable-thread-safe-client --enable-local-infile --enable-shared --with-plugins=innobase
checking build system type... i386-apple-darwin10.0.0
checking host system type... i386-apple-darwin10.0.0
checking target system type... i386-apple-darwin10.0.0
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
./configure: eval: line 3611: syntax error near unexpected token `('
./configure: eval: line 3611: `${SHELL} /Users/thomas/Desktop/Software (mac)/mysql-5.1.39/missing --run true'