Sunday, September 12, 2010

Bicyle trips to Far Rockaway




Saturday and Sunday morning ride bicycle to Far Rockaway, Jamaica Bay, Howard Beach and back. 7 bridges total

Thursday, September 2, 2010

mysql to CSV file


SELECT * INTO OUTFILE 'result.csv'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
FROM my_table;

Saturday, August 7, 2010

Thursday, July 1, 2010

nepotism

nepotism |ˈnepəˌtizəm|
noun
the practice among those with power or influence of favoring relatives or friends, esp. by giving them jobs.
DERIVATIVES
nepotist noun
nepotistic |ˌnepəˈtistik| adjective
ORIGIN mid 17th cent.: from French népotisme, from Italian nepotismo, from nipote ‘nephew’ (with reference to privileges bestowed on the “nephews” of popes, who were in many cases their illegitimate sons).

Thursday, June 10, 2010

Set Default web browser for Mac OS X

Steps needed to change default browser:

  1. Start Safari

  2. Preferences

  3. General Tab

  4. Choose Default Web Browser

  5. Close the preferences window.

Quit Frozen Application on Mac

ps -A | grep {application}
kill -9 {process-id}

How to Kill a Mac OS X Application That Just Won’t Quit