Zope Paste Wsgi Applications In Zope 3 Using Paste Deploy

This is an introduction to zope.paste, a new package to allow configuring WSGI apps in Zope 3 using paste.deploy. You can find the source code to zope.paste in the zope.org subversion repository. what is it? A simple package that enables one to configure WSGI applications to run inside Zope 3 using paste.deploy. why? Because Zope 3 already supported WSGI applications, but didn’t provide a simple way to …

Read moreZope Paste Wsgi Applications In Zope 3 Using Paste Deploy

Compiling Python 2.4 Extensions With Microsoft VC Toolkit 2003

For people looking for a way to compile extensions for Python 2.4, there’s this page with some instructions on the bits needed. Contrary to what the page says though, you don’t need to hack your distutils install to get it to work. You just need to provide the registry keys that distutils is looking for. To do so, you …

Read moreCompiling Python 2.4 Extensions With Microsoft VC Toolkit 2003

Times are changing (Or?)

A very interesting announcement from Microsoft today. I’ve been following some of their moves lately and have a gut feeling that Microsoft is preparing some kind of ‘take over’ plan. My opinion is that they are doing a silent revolution. Instead of going head to head with Linux and Apple they are making small steps towards releasing …

Read moreTimes are changing (Or?)

i love windows!

Never thought I would say that, but I must confess. I’ve learned to enjoy Windows, thanks to Mark Hammond and the great stuff he does with Python on Windows.Here’s an email I’ve sent recently to the zope-dev mailing list, I thought it would be cool to share it: On Wed, Andreas Jung wrote: | >I’ll repeat or …

Read morei love windows!

Can Python take advantage of MapReduce?

Reading Joel’s article yesterday, and then the MapReduce paper I was left wondering if Python could take advantage of this. Python has a feet in functional programing, and indeed has several functional-style erm… functions like map, reduce, filter etc. I’m a big fan of those little misunderstood beasties. I, too, was lamenting the proposal to remove those function, and was not quite convinced …

Read moreCan Python take advantage of MapReduce?