Google App Engine Google Group:
Hi all, I know that Java+GAE have [link] as google recommendation, but what about Python+GAE developers? Cheers Frank. (Read More)
Submitted by louisgray
from Google Reader:
When explaining Go to new programmers, I've found that it often helps to explain what Go values look like in memory, to build the right intuition about which operations are expensive and which are not. This post is about basi (Read More)
Python | Dev:
I'm getting occasional odd errors in the subversion step on my buildslave (http://www.python.org/dev/buildbot/buildslaves/moore-windows): Traceback (. (Read More)
The Voidspace Techie Blog:
Although I've left Resolver Systems I still follow closely what they're up to. Resolver One, the IronPython powered spreadsheet with the programming model right at its heart, is an innovative and unique product [1] that deser (Read More)
Simon Willison's Weblog:
Woof—simply exchange files (via). Ultra simple file sharing for local networks: run “woof filename” to start a local web server which will serve up that file, just once, and then terminate. Can also serve up an entire directo (Read More)
The Voidspace Techie Blog:
In association with Holdenweb I'll be taking an IronPython training course on January 21st in New York. Booking site for the IronPython Master Class The details of the course: Michael Foord is an early adopter of IronPython, (Read More)
Google App Engine Google Group:
If you're using Webapp, you can retrieve these parameters like so: def post(self): name = self.request.POST["form[name]" ] sex = self.request.POST["form[sex]"] Other frameworks such as Django have Form abstractions for d (Read More)
Yahoo! Developer Network blog:
A few weeks ago we released the new Contacts API that provides full read/write access to the Yahoo! Address Book. Now we're happy to tell you about the first commercial mobile application built on the Contacts API – the Palm (Read More)
Submitted by jgmize
from Google Reader:
Hi all,Not lots of time to blog since starting my new gig as Senior Operations Developer at MyYearbook.com (which is pretty awesome, btw), but wanted to let anyone who’s interested know about a couple of tools I’ve released o (Read More)
Google App Engine Google Group:
Strangeness. When I run my application (local or deployed), the first time i load a page (any page) on the app I get an error like the following: --> --> --> Python 2.5.1: /System/Library/Frameworks/ Python.framework/V (Read More)
Submitted by daisylinbluez
from Google Reader:
文件共享应用程序是网络应用程序的一种,Napster是最早的P2P文件共享系统,参与系统的是大量个人计算机用户,每个用户将自己愿意共享的文件提供出来,同时可以下载其他用户共享的文件。这类程序需要解决的核心问题是必须知道哪些机器上有哪些文件,这样当用户提出文件搜索请求时才可以得到正确的匹配结果。在Napster关闭之后,更多的P2P文件共享系统迅速崛起。WIKI上有人做了一个包含了几十种文件共享应用程序的对比,它们有的今天已经不存在,有的依然流行。 (Read More)
techno.blog("Dion"):
“Just what the world needs—another sucky JavaScript library,” he said. When I asked him what made it ‘sucky’, he elaborated. “It’s a JavaScript library written by Java developers who clearly don’t get JavaScript.”This quote i (Read More)
Doug Hellmann:
Modules and ImportsMost Python programs end up as a combination of several modules with a main application importing them. Whetheryou are using the features of the standard library, or organizing your own code in separate fil (Read More)
Simon Willison's Weblog:
I gave a talk on Friday at Full Frontal, a new one day JavaScript conference in my home town of Brighton. I ended up throwing away my intended topic (JSONP, APIs and cross-domain security) three days before the event in favou (Read More)
PIBlog:
A managed to sneak in a little time recently and write a simple Lisp s-expression parser in Python.I started out with a version that just understands parentheses, atoms, and strings, but it was just a couple of extra lines to (Read More)
Submitted by jgmize
from Google Reader:
Here's a detailed story of finding and fixing a memory leak in a PythonC extension, complete with testing mysteries.A user of coverage.pyreportedthat running it consumed all his memory. No one else had mentioned anything like (Read More)
Submitted by jgmize
from Google Reader:
Time to unravel some tufts of the yak hair lying around from this weekend.I wanted to work on making my GTD application (using CouchDB) a little more friendly. I started out by learning GreaseMonkey so I could modify Trac pa (Read More)
Submitted by jgmize
from Google Reader:
Joseph Lisee, author of the upcoming Python submarine robot PyCon talk, left a comment on my last post. I think he was a little shy about me highlighting him.I'm sorry, Joseph. You really left me no choice.Completely Unfoun (Read More)
Python | Dev:
The wiki page for porting to 3.x says: http://wiki.python.org/moin/PortingExtensionModulesToPy3k """ long/int Unification In Python 3.0, there is on. (Read More)