
Le Unix Timestamp est le nombre de secondes calculés à partir du 1er janvier 1970 à minuit (UTC), date bien connue du monde informatique et qui a donc été prise en compte comme date standard de départ.
Aujourd’hui, vendredi 13 (hasard quand tu nous tiens) février 2009 à 15h31 (PST), exactement 1.234.567.890 secondes se seront écoulées depuis cette date.
[edit] Chez nous, vu le timezone, ce sera donc demain à minuit et 31 minutes (merci Fref). Ce sera donc le timestamp St Valentin
Plus d’info: Bits & Bytes 2.0, Wikipedia, UnixTimesteamp
BeWeb démocratise la pub en ligne
Pierre-François Lovens
Le leader belge de la pub en ligne innove avec un outil efficace et bon marché. La “Click Box” devrait décider des (petites) entreprises à franchir le pas.
La suite sur l’article de La Libre
Et si vous voulez faire votre pub, cela se passe sur la plateforme Click-Box
C’est la journée !!
Deux rachats importants dans le monde IT qui ne laisseront pas les connaisseurs indifférents:
Sun qui rachète MySQL
et Oracle qui rachète BEA
Voilà qui peut faire peur pour l’indépendance de ces produits … surtout dans le second cas.
A suivre en tout cas !
Interface21, la société à la … source de Spring change de nom et devient SpringSource.
Rod Johnson s’explique sur le blog de la société.
We’ve evolved naturally to SpringSource. We are not making a fuss about it. It just makes so much sense for us to use the name that’s so close to what people naturally (and almost accidentally) use. It’s simply confusing to have a name that’s unnaturally distanced from the product we created and drive. Our tagline has always been “Spring from the Source,” making it easy to see what the new name should be. I’ve always loved the way the water associations from “Spring” made “Spring from the Source” so natural.
Longue vie à Spring (dont la version 2.5 est sortie cette nuit !!)
You use Maven and Jetty to test your Web Application and want to debug it under Eclipse, you can proceed like this:
Configuring
Step 1: Configure JVM debug mode
In mvn.bat file, remove REM from the following line:
@REM set MAVEN_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
Supplying suspend=n instead of suspend=y allows you to start jetty without debugger. Then, you can launch it when you want.
Step 1 bis
In the maven bin directory, you can create a command file named jetty.bat with the following lines
@set MAVEN_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000
mvn clean jetty:run
Step 2: Configure Remote Application in Eclipse
Run/Debug…/Remote Application, right click, new and OK
Lauching
Step 1: Launch jetty in debug mode
By launching the following command in a command window:
mvn clean jetty:run
Step 1bis:
By launching the following command in a command window:
jetty
Step 2: Launch debugger in Eclipse
Launch Remote Application in debug mode
That’s all !
If you are using Mantis as bugtracking software and SVN as your SCM, you should be interested to know that it is possible to integrate them togheter (each commit will add a note to a specified issue).
I’ll not copy/paste the receipe here, but I suggest that you follow the following link and read this excellent page:
Integrating Mantis and Subversion