2009
10.27

The guys over at Pyjamas (a Python port of GWT) have made their compiler so efficient that it can take virtually any Python library and it will compile to Javascript. They loved the look of PureMVC Python, and decided to do a couple of demos that use it…

EmployeeAdmin Demo: Original / Pyjamas

Awesome work.

2009
10.27

Flash websites often require the need to display at 100% width and height, filling the browser screen and still carry a minimum width and height value so when the user makes the browser smaller, scroll bars appear.

Minimum size flash can be implemented in pure css…

#myswfid {
width: 100%;
height: 100%;
min-width: 500px;
min-height: 600px;
}
*html #myswfid {
width: expression(document.body.clientWidth < 500 ? "500px" : "100%");
height: expression(document.body.clientHeight < 600 ? "600px" : "100%");
}

However, you should use Flurl instead, it's much easier. :wink:

2009
10.25

Flurl is gaining popularity and requires a decent hosting solution with a wiki and ticketing system. I decided to use bitbucket and move my repos to Mercurial!

So far I’m very impressed.

You can find Flurl’s new home here: bitbucket.org/tobydeh/flurl

Downloads: bitbucket.org/tobydeh/flurl/downloads
Wiki: bitbucket.org/tobydeh/flurl/wiki
Documentation: bitbucket.org/tobydeh/flurl/wiki/Documentation

:)