offline.effbot.org http://offline.effbot.org another blog (sort of) posterous.com Tue, 20 Dec 2011 10:08:32 -0800 outage http://offline.effbot.org/outage http://offline.effbot.org/outage

effbot.org was down for a bit this morning, due to scheduled site maintenance combined with some fumbling from my side when reconfiguring things.  Should be up and running again.

online.effbot.org is still broken, though. Working on it.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Tue, 28 Jun 2011 14:19:00 -0700 europython http://offline.effbot.org/europython http://offline.effbot.org/europython

spent parts of last week and the weekend in Florence (*) which was awesome as usual (both the city and the conference).

since I'm lazy, I didn't see all the talks I should have seen, and I also didn't attend the full sprints, but dropped by to say hi, and also ran my own micro-sprint (until the laptop battery ran out) which I used to add support for a new file format to PIL:

>>> from PIL import Image
>>> im = Image.open("Images/lena.webp")
>>> im
<PIL.WebPImagePlugin.WebPImageFile image mode=RGB size=128x128 at 0x7F00EB3D0350>

the code supports reading and writing RGB images only (which is the only pixel layout currently supported by the WebP format). the only option is "quality" which ranges from 1-100 (0 being "default", which currently corresponds to 75). some examples:

>>> im.save("out.webp")
>>> os.path.getsize("out.webp")
3350
>>> im.save("out.webp", quality=50)
>>> os.path.getsize("out.webp")
2824
>>> im.save("out.webp", quality=20)
>>> os.path.getsize("out.webp")
1758

 the current snapshot can be found in the development repository, as usual.

Img_3070

*) well, I ended up spending Monday there as well, which was less awesome -- the Swiss flight was cancelled due to mechanical problems, and then they had me stand in line for 3.5 hours to get a new booking. 24 hours later. yay! and when I finally made it to Zurich, SBB was late too -- it took 13 minutes longer than usual to make it home. outrage.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Sun, 05 Jun 2011 04:32:09 -0700 auto garage http://offline.effbot.org/auto-garage http://offline.effbot.org/auto-garage
Img_2563

stechelberg, june 2011

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Fri, 03 Jun 2011 15:25:38 -0700 all that you can see http://offline.effbot.org/all-that-you-can-see http://offline.effbot.org/all-that-you-can-see
Img_2451

...stretched out over the hills and valleys of this land.

Vaduz, June 2011.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Sun, 08 May 2011 13:55:00 -0700 rooftops http://offline.effbot.org/rooftops http://offline.effbot.org/rooftops
Img_2321

luzern, may 2011

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Mon, 11 Apr 2011 06:29:00 -0700 quite a predicament http://offline.effbot.org/quite-a-predikament http://offline.effbot.org/quite-a-predikament

184558679

Zürich, monday afternoon.

Update: His head survived for 10 minutes and 56 seconds.  In other words, the summer will be nice.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Mon, 14 Mar 2011 05:09:17 -0700 india, march 2011 http://offline.effbot.org/india-march-2011 http://offline.effbot.org/india-march-2011 random photos from delhi, jaipur, agra.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Wed, 09 Mar 2011 01:59:00 -0800 crowd http://offline.effbot.org/taj-mahal http://offline.effbot.org/taj-mahal

Img_2109

Agra, March 2011.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Wed, 16 Feb 2011 13:26:10 -0800 pastels http://offline.effbot.org/pastels http://offline.effbot.org/pastels
Img_1415

San Francisco, February 2011.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Fri, 07 Jan 2011 07:04:00 -0800 progress http://offline.effbot.org/progress http://offline.effbot.org/progress

still a ton of work to do, but it's a start:

$ tar xvfz PIL-1.2a0.tar.gz
...
$ cd PIL-1.2a0/
$ python3 setup.py install --prefix .
...

$ cd lib/python3.1/site-packages/
$ python3

Python 3.1.2 (r312:79147, Apr 15 2010, 15:35:48) 
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from PIL import Image
>>> im = Image.open("../../../Images/lena.png")
>>> im
<PIL.PngImagePlugin.PngImageFile image mode=RGB size=128x128 at 0xE6B1D0>
>>>

the current 1.2a0 snapshot can be found in the development repository.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Sun, 31 Oct 2010 21:30:00 -0700 as seen on svt http://offline.effbot.org/as-seen-on-svt-1 http://offline.effbot.org/as-seen-on-svt-1

20101031-svt

California, November 2010.

It's not entirely obvious to me why they thought SVT belonged in there, with all the US networks.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Wed, 08 Sep 2010 01:48:32 -0700 liffey http://offline.effbot.org/liffey http://offline.effbot.org/liffey
Img_1200

Dublin, September 2010.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Tue, 07 Sep 2010 10:36:00 -0700 french interactive bears http://offline.effbot.org/french-interactive-bears http://offline.effbot.org/french-interactive-bears

A bit more interactive than your usual "choose your own adventure"-style video... (and don't worry, nobody's hurt).

Credits

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Sun, 29 Aug 2010 16:32:00 -0700 asteroids http://offline.effbot.org/asteroids http://offline.effbot.org/asteroids

30 years of asteroid discovery.

Animation by Scott Manley, using data from the Asteroid Orbital Elements Database. Music by Trifonic. For best quality, click through and select HD.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Sun, 25 Jul 2010 13:25:19 -0700 likes vuvuzela! great! http://offline.effbot.org/likes-vuvuzela-great http://offline.effbot.org/likes-vuvuzela-great
Img_0882

Basel, July 2010.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Fri, 23 Jul 2010 02:40:49 -0700 valley http://offline.effbot.org/valley-0 http://offline.effbot.org/valley-0
Img_0910

Pian San Giacomo, July 2010.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Mon, 12 Jul 2010 03:25:05 -0700 summer http://offline.effbot.org/summer-4090 http://offline.effbot.org/summer-4090
Img_0899

Lago di Garda, July 2010.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Sat, 03 Jul 2010 03:00:21 -0700 do not enter http://offline.effbot.org/do-not-enter-6 http://offline.effbot.org/do-not-enter-6
Img_20100703_115539

Linköping, July 2010

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Sun, 13 Jun 2010 09:10:00 -0700 things to build on a rainy day http://offline.effbot.org/things-to-build-on-a-rainy-day http://offline.effbot.org/things-to-build-on-a-rainy-day

Img_0660

tie advanced x1 prototype. ~1200 bricks. 2 people. 6 hours. still raining outside.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh
Sun, 06 Jun 2010 11:33:45 -0700 cloudy http://offline.effbot.org/cloudy-272 http://offline.effbot.org/cloudy-272
Img_0557

Luegeten, Pfäffikon (SZ). Sunday 5pm.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/278689/icon-small-blue-ghost.jpg http://posterous.com/users/1bd91J5rB5L Fredrik Lundh effbot Fredrik Lundh