Shuttle SN41G2 recycling project

Je compte recycler un vieux shuttle SN41G2 en HTPC. Bon il faut le dire, le shuttle avait de la gueule quand il est sorti. Petit, sobre, tout alu et ce qu’il faut en connexion façade. Mais son alim est assez fragile lorsqu’on l’utilise comme un serveur (la…

Java.lang.OutOfMemoryError

There are three possible causes for an OutOfMemoryError. The first is that the JVM has a real memory leak, caused by a bug in the internal implementation of the JVM heap management. This is extremely unlikely. All JVMs are tested very strenuously for this, and it would be the absolute…

Java Unparseable date

If using SimpleDateFormat to parse a string into a Date object, it may fail if the Locale sets in SimpleDateFormat differ from the string format. java.text.ParseException: Unparseable date: "02NOV2004" at java.text.DateFormat.parse(DateFormat.java:335) The above example shows an exception parsing the string “02NOV2004” with…