DDevelopment & Design Rapid development z Liveview byBartek ZdanowskiNovember 2, 20121 minute read Film opisujący co i jak Update: plugin do firefoxa Film opisujący co i jak http://www.youtube.com/watch?v=PAeLK6Yp2P0 Update: plugin do firefoxa Tags:frontendgroovy Bartek Zdanowski
DDevelopment & Design Manipulate XML Documents in C++ with xmlbeansxxbyWitek WołejszoJuly 15, 2005 Using XML processing typically simplifies a developer’s job–but not when you’re programming in c++. Ever wish someone would…
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 ...
DDevelopment & Design Testing ServiceMix 4.3 services with PaxExambymprMarch 31, 2011 In the project that I’m currently working on we are developing a set of extensions for ServiceMix –…