Hmmmm ... boss can I have a $2000 air fare to the Greek Islands in order to save $500 on hotels? Don't see that working. ;-) Of course, for me, Greece is only...
True, that won't work. Our main target market is Europe, and from there the flight is cheap. I doubt that companies in the US would send people to Europe for...
For those interested, I ended up getting this Gateway from Best Buy (http://tinyurl.com/s5l2n) Last week they had an instant rebate of $150 so I paid only...
Sounds great! But I find the "Core 2 Duo" branding awfully confusing. Does the thing have one dual-core processor or two? If one, isn't "2 Duo" a bit...
Core 2 Duo is the second model of the dual core architecture. The first was called Core Duo. regs scot. -- Autonomous Organisation http://www.autonomous.org/ ...
the Mac site says this about the chip: Built upon the revolutionary Intel Core Duo — with *two processor cores on a single chip* — MacBook leaves other...
i think the Intel CEO has offered money up for someone to come up with a good naming/branding for just such reasons. BTW: I was just matching up Dell 17" and...
... This is what got me all confused in my shopping. Other than the 17" display and clock speed, my $1000 (OK, $1150 before rebate) machine exceeds those...
If you look at the way almost all of the companies price machines you pay a huge price premium for the top of the line models relative to the lower end. When I...
ROFL!!...Java=C++-- In an early Java speech, Bill Joy (one of the Java creators), said that “Java=C++--” (C plus plus minus minus), suggesting that Java is...
but now Java<?>!=--Java ... From: straight_talking_java@yahoogroups.com [mailto:straight_talking_java@yahoogroups.com]On Behalf Of Sócrates Medina Sent:...
We have a mixed environment of Linux and Windows machines which means we scripts like 'startup.sh' and 'startup.bat' which fire off a Java app. One problem we...
... I can think of a couple of options. In no particular order: a) Use a launcher program like what Eclipse does, that is a tiny executable that just launches...
Use ant? I've had good success with it for x-platform run configuration. Then the only thing you have to be sure of is that ant is properly installed on all...
We use InstallAnywhere http://www.macrovision.com/products/flexnet_installshield/installanywhere/index.shtml - I think IntelliJ did as well (still does?) -...
Hi Curtis - We use dynamic discovery of jars and then are just careful about which jars and property files we put in several well-known directories. It's a...
ok I can buy that but I'll go off on a little tangent here if you are interested... It still works - we have at least 15 development environments (at least 3...
sounds like an excellent use of IA for more than customer-facing needs. and yes, the lax files are easy to follow and easily diffable too ;=) -- jon...
path in cygwin is still ';' separated. I would just add a "lib" directory in a standard location and make the scripts do the following for file in lib/*; do ...
On Wed, 04 Oct 2006 14:55:51 -0400, "Eric Rizzo" ... Same here, I've used Ant to create a tiny start script to pull together the required libraries and paths a...
... I chose this approach. It was much easier in sh than in CMD, but once I found the trick, the CMD script wasn't that much different. The problem is variable...
... Even Dell has got a new (around May) dual core laptop in the market which basically replaces the Dell Inspiron 6400 model. Around 1100 USD, it seems to be...
Delayed variable expansion is the reason I had my batch file restart with the /v:on option. I wasn't aware that you could do this with a setlocal command--that...
... FYI - in our build, we apparently do something like this: for %%I in (.\lib\*.jar) do call :ADDTOPATH %%~fsI ... set CLASSPATH=%CLASSPATH%;%1 I'm not sure...