Live Query plugin for jquery
by Michał Kuklis on 16/12/2007It’s annoying to rebind events to their targets after Ajax request. You can read more about it here.
In order to fix it you can use Live Query plugin.
Instead of doing:
$('a').click(dosomething);
$('#htmlElement').load('server.php',function() {
$('a').click(dosomething);
});
you can now do:
$('a').livequery('click',dosomething);
$('#htmlElement').load('server.php');
Flex 2 TileList – Selecting multiple elements by Dragging
by Michał Kuklis on 25/07/2007This is still work in progress. It’s based on the TileList component.

You can play with it here:
Prana Framework
by Michał Kuklis on 11/06/2007I’ve just found new ActionScript 3 Framework. Prana includes IOC container similar to Spring + reflection utils and more…
You can find more info on author’s blog
FLEX + SPRING + IBATIS + CAIRNGORM
by Michał Kuklis on 29/05/2007Chris Giametta wrote about how to connect all of the above together.
update:
Christophe Coenraets shows how to use flex with Spring here
Peter Martin describes how to deploy flex on WebSphere here
Make Ant easy with Eclipse
by Michał Kuklis on 12/02/2007I found this nice article about Ant in Eclipse.
Forum for EJB
by Michał Kuklis on 4/02/2007I setup forum for questions/answers/discussions about EJB/JBOSS and related topics. You can find it here.
javascript essentials
by Michał Kuklis on 14/01/2007Dan Webb posted his list of useful javascript pieces. I have to admit that $(), event handler and getting elements by class name makes your life easier. I would add JQuery to this list, especially when you have some bigger project in mind.