Wow, its not every day you see a new command line interface that takes advantage of new online services. This one I just discovered will let you interact with your Google calendar.
I use Google calendar religiously for home and business when I am away form my day time job (don’t quit your day job!).
Gcalcli is written in Python as well. Which led me to find the Google data API for Python. Very nice!
Categories: Programming
Tagged: google, Python
I received this from Amazon:
Amazon S3 Announces Service Level Agreement
Effective October 1st, 2007, AWS is providing a Service Level Agreement (SLA) to all customers using Amazon S3. The Amazon S3 SLA provides a customer with service credits if his/her monthly uptime percentage falls below our service commitment in any billing cycle. We’ve heard from some of our customers that an SLA is important, so we are pleased to offer this to the Amazon S3 community.
More information
This addresses only monthly uptime guarantees. While that is important, I believe ensuring that a company can rely on Amazon web services being around for some time is equally important. (more…)
Categories: Technology
Tagged: amazon, services
Something as trivial as uploading a file via a HTML form was recently changed. I know because a development branch update broke one of my websites. That will teach me to test better!
The designers specify:
File data is handled separately to normal form data, so when your form contains a FileField and ImageField, you will need to specify a second argument when you bind your form.
An example:
f = ContactFormWithMugshot(request.POST, request.FILES)
This is a bit different from before when you would inject the FILES into the POST before passing it to the FileUploadForm.
Everything has to change a little bit to keep us on our toes.
Link here
Categories: Programming · Python · django