Archive for August, 2007
Movie madness
Since i moved to NYC on 7/7/2007, i’ve been going to a lot of movies and jazz shows.
This is just a note to keep track of what i have seen.
First the movies
- La vie en rose (Paris Theater) - 7/11
- Hairspray (Ziegfeld) - 8/3
- Two days in paris (Angelika) - 8/12
- My Best Friend/Mon meilleur ami (Lincoln Plaza Cinema) - 8/17
- The Bad and the Beautiful (Anthology) - 8/19
Also the movies I’m going try to see in the next few days
- Paprika (Two Boots Pioneer) - 8/25
- The Wrong Man & Rear Window (Film Forum) - 8/26
- Between (Cinema Village) - 8/29
- Wait Until Dark (Film Forum) - 8/30
- Musicians (Two Boots) - 9/7
As for (Jazz) shows I’ve seen so far
- Dave Brubeck Quartet (Lincoln center outdoor) - 8/5
- Antonio Sanchez Quartet (55th Bar) - 8/10
- Brad Mehldau/Charlie Haden (Blue Note) - 8/12
- Jay Leonhart/Wycliff Gordon (Lincoln center outdoor) - 8/14
- Beledo (Taj) - 8/23 (Don’t know if this deseves mentioning here tho).
Am planning on going to
- JOHN PATITUCCI BAND (Iridium) - 8/25
- The Claudio Quintet (The Stone) - 9/8
- Ted Poor and Third Wheel (The Stone) - 9/11
- Chris Speed and Kris David (The Stone) - 9/11
- Wadada Leo Smith 7 Piece Ensemble (Jazz Standard) - 9/22
svn repository layout setup
A few pointers on setting up svn repository/project through dreamhost.
http://svnbook.red-bean.com/en/1.4/index.html
http://wiki.dreamhost.com/Subversion
mkdir tmpDir
cd tmpDir
mkdir -p project-name/branches project-name/tags project-name/trunk
svn import . file:///[REPO DIR] --message 'Initial repository layout'
if using eclipse to do initial commit, don’t create trunk directory in the above step. subclipse requires to enter directory that does not already exist in the repository when initially sharing a team project.
if using maven based project with eclipse, run mvn clean before committing files so you can add svn:ignore props for target directory
