Transilvania JUG

Sponsors

Category Archives: Transylvania JUG

10
Dec
2012
2

Changes to String.substring in Java 7

This post was originally published as part of the Java Advent series. If you like it, please spread the word by sharing, tweeting, FB, G+ and so on! Want to write for the Java Advent blog? We are looking for … Continue reading

01
Dec
2012
0

(Re)Start me up!

This post was originally published as part of the Java Advent series. If you like it, please spread the word by sharing, tweeting, FB, G+ and so on! Want to write for the Java Advent blog? We are looking for … Continue reading

29
Nov
2012
0

Feedback de la JUG #40: Lightning Talk Edition

Pe baza formularului: La 100% din oameni le-a placut editia 40 de la JUG 100% din oameni ar vrea sa se mai tina lighgtning talk-uri la JUG Multumim prezentatorilor!

23
Nov
2012
0

Slide-urile de la JUG Meeting #40: Lightning Talk Edition

Lista prezentarilor: Claudia Dumitras – Android Near-Field Communication Dan Dromereschi – AChartEngine – a charting library for Android (open source) Florin Bunau – Tools in the box Gabriel Ciuloaica – Lightweight Rest Services Partac Constantin – Adopt a JSR Sa … Continue reading

06
Nov
2012
0

Writing beautiful code – not just for the aesthetic value

This article was originally published in the 6th edition of TodaySoftMag in Romanian. Reprinted here with the permission of the author / magazine. You can see a quick talk about the article in Romanian on Youtube. Writing beautiful code – … Continue reading

09
Oct
2012
0

Helper for testing multi-threaded programs in Java

Testing multi-threaded code is hard. The main problem is that you invoke your assertions either too soon (and they fail for no good reason) or too late (in which case the test runs for a long time, frustrating you). A … Continue reading

07
Oct
2012
0

Transylvania JUG Meeting #38: Eclipse DemoCamp

In the spirit of “better late than never”, here are the pictures from the Eclipse DemoCamp held on June 15th: The speaker was Tom Schindl and you can find the presentation slides on his blog. My main takeaway was that … Continue reading

17
Mar
2012
0

Transylvania JUG Meeting #37: JBoss AS 7

Transylvania JUG’s 37th meeting took place on the 13th of March, our guest was Kabir Khan from JBoss. He gave us an update on the current state of JBoss 7. The slides are here If there’s one thing you need … Continue reading

14
Mar
2012
0

Enum puzzler

Let’s suppose we have the following code: enum Case {     CASE_ONE,     CASE_TWO,     CASE_THREE;          private static final int counter;     private int valueDependsOnCounter;          static {   … Continue reading

14
Mar
2012
1

Automaton implementation in Java

This post will address the problem of implementing finite states machines into java. If you don’t know what FSM are or where can be used you may be keen on reading this, this and this. If you ever found yourself in the situation … Continue reading

df