Sunday, February 25, 2007

PyCon 2007 Day 2

Day 2 at pycon came and went faster than day 1. Another exciting day, with lots of stuff to talk about.

Keynote: Adele Goldberg - eLearning Does Not Belong in Public Schools

Keynote with Adele Goldberg

While I highly respect Adele for the contributions she has made to Computer Science, I was very disappointed with this keynote speech. She gave a very impassioned diatribe which basically said that eLearning is why public education is as bad as it is today. This is one of those subjects that's much like trying to argue politics, or religion, or vi/emacs :) I have thought about all the things that I would like to say about this, but then I would basically be no different, so I will leave it at that. Though I will add that I found it highly entertaining that after this long invigorating speech, she then demoed the "new" eLearning software that she is developing.

soaplib: an easy-to use SOAP library

I am very excited about this project. Python has needed a good, pythonic, easy to use SOAP library for a long time. If you have ever used soappy or ZSI in a large production environment, you will know what I mean :) soaplib makes it super easy to expose SOAP web services in python. And guess what! No writing WSDL!!!!!!! :) It was also nice to see that out of the box, it will support integration with Oracle SOA Suite, Axis 2, .NET, and Java 1.6. While it is still a bit young, they are heavily using it at their company Optio, and it seems to have a growing community coming around it as well.

The Star Schema in Python

This was a highly entertaining talk about how he used python to implement the star schema pattern. He showed how there are times you can do things efficiently directly in python without the overhead of a database. I think that unfortunately several people got lost trying to figure out what a star schema is.

Scaling Python for High Load websites

I was disappointed in this talk as well. I'm very involved at work with improving the performance of our web applications, and was hoping to learn some nuggets that might be able to help. Unfortunately, they brought up some of the first things that you look at. The one thing that they were way off on though, was suggesting to cache static content (javascript, css, images, etc.) with memcached!!!! Please!!!! Don't do that!!!! Use a squid cache or a separate media server instead to serve the static content.

UPDATE -- Please read Jamie's comment below as he clarifies what they were presenting. Thanks Jamie!

Extracurricular Activities

Hanging out with some of the Pylons and SQLAlchemy guys was a lot of fun. Dinner was great, and I really enjoyed getting to know them better. I also got to hang out while some of the TurboGears and Pylons people had some amazing discussions. Before I knew it, it was 12:30! Sometimes I feel like a fly on the wall when history is being made, and a big thank you to those guys for letting some random geek hang out.

1 comment:

Angie said...

Comment from Chuck:

Hey Jamie,

Thanks for the comment and the clarification. That does make more sense now, as memcached can be a very powerful tool to use when scaling your site. I have updated my post to make sure people read your comment. Thanks again!