ZeServeur

The knowledge acquired through experience, everything else is just information ...

Since yesterday, I'm spamming this phone number: 01.71.18.70.10 ... that a priori (thank you Google) is a Bot ...

So, thank you & its Free blocking service call!

Here are the steps to follow to enable and configure this service:

computing_occurs

Since long, I know there is buffered flows when reading or writing that ... yes, but the question I often asked is "how much? What is the order of magnitude? ".

So I made a quick benchmark for, measures of that performance gain ... and it boggles the mind! I get the factors of 22 in reading and 35 in writing!

continue reading ...

This is a very nice little app that allows fans to major relocations Window $ install at one time a bunch of freeware applications.

Réinstaller facilement ses applications

Reinstall applications easily

To do this, visit the website Ninite , select your application and download the executable ... then who will take care of everything ....

Thank you to Korben for the info!

A new version (0.2.7) of the connector Mylyn for Quality Center is available for download.

This mainly fixes bugs / developments around links and attachments.

Site Update: http://qcmylyn.sourceforge.net/update/

Homepage: http://qcmylyn.sourceforge.net/

images Why simple when you can make it complicated?
Since version 3.2.4 of FileZilla , the LIST command has been replaced by the MLSD command ... that is not supported by all versions of FTP servers (even if the specification is several years old) ...

Conclusion: Stay in version 3.2.3 if you throw your server : D

iphone_jailbreak With a little delay, I just discovered that geohot has developed software for two désimlocker (allow to insert any sim card) and Jailbreak (sauté restrictions Apple) iPhone or iPod Touch.

  • The news is available on his blog .

This procedure is applicable on iPhone Edge, 3G and 3Gs

  • BlackRa1n can jailbreak your iPhone
  • Blacksn0w désimlocker lets your iPhone then put any SIM card

Attention manipulations iPhone involve risks, are Aware.

For tutorials, it happens here

Ubuntu 9.10 is here!

Ubuntu 9.10 is here!

Here it is, the Koala is Karamic Release!

As usual:

  1. Install the update-manager-core if needed: sudo apt-get install update-manager-core
  2. Launch the update: sudo do-release-upgrade
  3. Follow the instructions ...

... Or go download the iso here !

cleanup Fact: a large application developed and maintained by several people, we ended up having a lot of dead code ...

One solution is to use the clean up of Eclipse, one arrives to remove some attributes not used ... but it does not go much further.

The idea would be much more radical: a tool to pass on all the code.

Fortunately (again), Eclipse just save your life :)

  1. Let's start by downloading Eclipse Core Tools: http://www.eclipse.org/eclipse/platform-core/updates/
  2. Select Project / package / class on which to pass the tool
  3. Via the shortcut menu, click Find Unreferenced Members. The search result is displayed in the Search View
  4. Get the ax ...

By cons, beware: it is possible that some classes appear to be unused when they are called by an extension point!

sync
Today's question: how to synchronize multiple calendars on Google's iPhone / iPod?

I used to synchronize my calendar with my HTC Diamond. My dear and loving, she does the same with his agenda and his iPhone.

Although we have shared our two agendas, no way, on his iPhone to see mine ... so it is written on the Google site that this experiment is possible (Share Multiple Calendars) (

This procedure must be done from the site http://m.google.fr/sync . Now when I connect myself from the iPhone, I get this error message
Equipement non compatible
Désolé, votre mobile ne prend pas en charge Google Sync

Damned ...

But that's the solution ... a small link at the bottom of the page to change language ... Change in Français (U.S.) and oh magic, we reach the configuration :)

Is select the calendars to sync and voila, voila ...

Explanations on the synchronization procedure here: http://www.google.com/mobile/products/sync.html # p = apple

The problem with SWT table, there is always a very ugly right column of the table ...

To move from this damn empty column, just use the TableColumnLayout to have a record like this:

That little piece of code that can help:

  1. / / Create a composite that contains the table
  2. Composite ( shell, SWT. NONE ) ; LComp = new Composite Composite (shell, SWT. NONE);
  3. lComp , SWT. BORDER SWT. V_SCROLL ) ; LTable table = new Table (lComp, SWT. BORDER SWT. V_SCROLL);
  4. true ) ; lTable. setHeaderVisible (true);
  5. true ) ; lTable. setLinesVisible (true);
  6. / / Create columns
  7. TableColumn ( lTable, SWT. NONE ) ; TableColumn lCol1 = new TableColumn (lTable, SWT. NONE);
  8. "Colonne 1" ) ; lCol1. setText ("Column 1");
  9. TableColumn ( lTable, SWT. NONE ) ; TableColumn lCol2 = new TableColumn (lTable, SWT. NONE);
  10. "Colonne 2" ) ; lCol2. setText ("Column 2");
  11. / / Creating the layout
  12. ; TableColumnLayout lLayout TableColumnLayout = new ();
  13. lLayout ) ; lComp. setLayout (lLayout);
  14. / / Set the weight of columns
  15. lCol1, new ColumnWeightData ( 40 ) ) ; lLayout. setColumnData (lCol1, new ColumnWeightData (40));
  16. lCol2, new ColumnWeightData ( 100 ) ) ; lLayout. setColumnData (lCol2, new ColumnWeightData (100));