Showing posts with label Code. Show all posts
Showing posts with label Code. Show all posts

Saturday, February 14, 2009

Bespin: Coding In The Cloud


Introducing Bespin from Dion Almaer on Vimeo.

This is a radical change in development. This probably can be called as Coding-as-a-service. The best part for me is that your development environment is accessible anywhere, anytime.

Read more about Bespin and how you can contribute ...

Sunday, April 20, 2008

Quick tip on installing SOAPpy on Python 2.5

While you install as per the instruction given, you will run in the issue as you see below:



Now, do the following to resolve it.

1. Open the file Client.py and make "from __future__ imports" line to be the first import
2. Open Types.py, Server.py and GSIServer.py and do the same
3. Run - python setup.py build
4. Run - python setup.py install

Now you can start writing your SOAP server and clients.

Happy hacking !