DDevelopment & Design Zapraszamy na płatny, wakacyjny staż TouK! byMagda ŻebrowskaMay 7, 20150 minute read Zgłoszenia przyjmujemy do 17.05. Magda Żebrowska
DDevelopment & Design GWT / GXT compilation slow and freezes my Windows ?byMichał TrzaskowskiFebruary 17, 2011 Recently I was able to run some basic GWT / GXT compilation tests to compare time efficiency between…
DDevelopment & Design Friday hackathonbyBartek ZdanowskiOctober 23, 2015 Every month we have a Friday Hackathon, where we can code or create anything we want. That’s for the purpose…
DDevelopment & Design Groovy, Callable and ExecutorServicebyDominik PrzybyszSeptember 7, 2015 Suppose you want submit job to ExecutorService. The Baroque versionYou could create a class that implements Callable:class MyJob implements Callable<Integer>{ @Override Integer call() throws Exception { return 42 }}and give it to ...