Byteflow Blog Engine. This looks like the most full-featured of the Django blog engines by a pretty big margin, including OpenID client and server support. A product of the growing Russian Django community.
Byteflow Blog Engine. This looks like the most full-featured of the Django blog engines by a pretty big margin, including OpenID client and server support. A product of the growing Russian Django community.
Update: Ryan McGuire blogged about his Emacs presentation in more detail.
(pygr is a neatbioinformatics framework in Python.)
After some commenters on my last post seemed happy to hear that pygrwas the focus of some summer work, I realized I had only discussed thepygr summer work in a post to the biology-in-python list.
Whoops.
So, here's the scoop: not only is pygr the focus of Rachel McCreary'sGoogle Summer of Code project,but Jenny Qian will be using pygr to build an ENSEMBL interface,also as part of the Google Summer of Code.
That's not all!
In addition to Rachel and Jenny (under the sterling mentorship ofChris Lee, Robert Kirkpatrick, Namshin Kim, and myself) I have two MSUstudents working with me over the summer, Alex Nolley and MarieBuckner. They'll both be working with pygr-related things, althoughlike Jenny their efforts may end up being more on ways to use pygrthan on pygr's code itself.
I also have a grad student or two that may drop in on pygr, if only touse it for something research-y.
So all in all, pygr will get a lot of love this summer. Hopefully we canpolish the code and documentation and tutorials to the point where thelearning curve is as minimal as it can get, and this fabulous package willbecome readily available to many others...
Why am I personally putting so much effort into pygr? Well, I've beenusing it more and more over the last few months, and (somewhat likescipy)it's transformed my work by turning annoyingly difficult dataorganization problems into trivial Python transformations. I canliterally throw together a custom genome browser in a matter of hours-- I've implemented two or three already, for different projects --and it has enabled several new research program. pygr seems to be oneof those rare packages (kind of like Python itself) that is not onlyfunctional and effective but presents a unified and coherentintellectual interface. pygr is the only good middleware layer I'veseen for sequence intertwingling in bioinformatics. It's not thatmature yet, but it has serious promise, and I'm hoping to get in onthe ground floor, so to speak :).
cheers,
--titus

For those of you who don’t know TarPipe, it is a web application that makes it easier to create your workflows on the web. This workflow above just receives via the API a title and a photo and uploads it to Photobucket (which sucks, but a Flickr Connector, among others, is being released very soon) and the enters the image link in my flickr account. Right now Tarpipe hasn’t launched yet, but I have access to developer’s preview (which you may also ask) and I have played with it’s API.
So I picked my language of choice: Python and I made a library to access TarPipe API from Python. And it’s as easy as:
sudo easy_install tarpipe-pythonpython
And then
import tarpipet = tarpipe.TarPipe(token="your workflow token")t.upload(title="hello from python",body="testing TarPipe from Python",image="/Users/youruser/Images/test.png")
As simple as that. The project is hosted at Google Code (you can checkout from the svn if you want). And it’s licensed under LGPL, which will deserve a post later on.