How to setup Sun’s Java JDK on Fedora 8

by Michał Kuklis on 28/02/2008

How to setup Sun’s Java JDK on Fedora 8

No Comments

heroku

by Michał Kuklis on 19/02/2008

http://heroku.com/ – awesome work…

No Comments

Live Query plugin for jquery

by Michał Kuklis on 16/12/2007

It’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');
3 Comments

Flex 2 TileList – Selecting multiple elements by Dragging

by Michał Kuklis on 25/07/2007

This is still work in progress. It’s based on the TileList component.

You can play with it here:

No Comments

Flex 2 Explorers

by Michał Kuklis on 12/06/2007
  1. Adobe Style explorer
  2. Effects explorer
  3. Flip/Rotate/… explorer
  4. Primitive explorer
  5. Filter explorer
No Comments

Prana Framework

by Michał Kuklis on 11/06/2007

I’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

No Comments

FLEX + SPRING + IBATIS + CAIRNGORM

by Michał Kuklis on 29/05/2007

Chris 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

No Comments

Make Ant easy with Eclipse

by Michał Kuklis on 12/02/2007

I found this nice article about Ant in Eclipse.

No Comments

Forum for EJB

by Michał Kuklis on 4/02/2007

I setup forum for questions/answers/discussions about EJB/JBOSS and related topics. You can find it here.

No Comments

javascript essentials

by Michał Kuklis on 14/01/2007

Dan 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.

No Comments