Thursday, March 06, 2003
Maslow's Hierarchy of Needs: Food, Shelter, RAM...
Why Dell decided to cap the C810's at 512MB of RAM I will never understand. I would gladly shell out the required funds to buy a gig of RAM if the damn thing would take it.
The things I need running to do development on my current project.
- IDEA
- JBOSS/Jetty
- Oracle 9i
- Javac (when building/executing tests)
RAM = GOODOh well, at least my lack of RAM predicament gives me plenty of time to write blogs in notepad while I'm waiting around for a test to complete...
Speaking of - I really like the XP Remote Desktop Connection facility (its built on top of Terminal Server). Its much more like setting your display in X-Windows than Microsoft's previous support (e.g. NetMeeting). One of the things I really love about my laptop is the crisp 1600x1200 display. With Remote Desktop Connection I can login to a server with a crappy video card and still run at 1600x1200 (way cool). I know you could do this a decade or more ago on Unix, but hey - at least MS is improving :)
Wednesday, March 05, 2003
Keep IDEA from Hanging for significant periods of time while doing GC...
I posted this to their bug tracking forum and got some helpful responses. Looks like you can add the following option to the IDEA/bin/idea.lax file to help with this problem (turns on concurrent GC) :
lax.nl.java.option.additional=-XX:+UseConcMarkSweepGCThe full thread is here if anyone's interested :
http://www.intellij.net/tracker/idea/viewSCR?publicId=9910
Monday, March 03, 2003
Wish I had a JavaScript IDE...
Speaking of handy tools for web development, checkout Mozilla's built-in DOM Inspector. It basically has three panes. One shows a real, rendered web page, one shows the DOM tree for that web page, and another shows all DOM attributes of the currently selected node in the DOM Tree.
As you select different nodes in the DOM tree, the corresponding visual portion of the web page flashes. This is really great for analyzing some of the more sophisticated web sites out there.