2012-05-31

Tweets of the month

31 May
Could Germany save eurozone by leaving it? http://edition.cnn.com/2012/05/30/opinion/prestowitz-prout-germany-eurozone

29 May
Carminho ao vivo no Facebook (via SAPO) https://apps.facebook.com/carminholive/

29 May
Diving into SCM software world!

25 May
Converting Groovy to Java code is hell! But it's done now.

19 May
Family 2012 theme http://www.youtube.com/watch?v=MOrO_dYA7JE

19 May
gnuplotting... :)

18 May
Na próxima segunda-feira, às 11h na sala F4 do ISTécnico Alameda vou dar uma aula convidada sobre o tema "RFID para Informáticos" #RFID #IST

15 May
@filcab Started the repo last month, and I make medium sized commits. But I just have this thing for round, even numbers :)

15 May
Committed revision 100.

15 May
Interesting article (via @pedrocustodio) http://blogmaverick.com/2012/05/13/the-coming-meltdown-in-college-education-why-the-economy-wont-get-better-any-time-soon/

15 May
Blast from the past: *nix session management using screen http://www.rackaid.com/resources/linux-screen-tutorial-and-how-to/

11 May
Amazing pictures delivered to your desktop every day with Bing Desktop http://www.microsoft.com/en-us/download/details.aspx?id=29281

2012-05-03

How to reset UltraEdit to factory settings?

In Windows Explorer in the address bar at top of the window enter following

%appdata%\IDMComp\UltraEdit\

and press Return or Enter to open this directory.

You will see some files, delete all of them while UltraEdit is not running.

Credits: Mofi at UltraEdit forums

Java String print tip

Are you getting confused with all the substring() indices during a debug session?
Try the following code:
System.err.println(myStr);
for (int i=0; i < myStr.length(); i++)
    System.err.print(i % 10);

You will get the following output:
my string value
012345678901234

% performs a division remainder operation, giving, in this case, always a number between 0 and 9.
And the numbers in the next line make it so much easier to see the string indices! :)