Friday 27 January 2012

A test

 This is a small test.

A link to an internal page.

Here is a screenshot :

The application tab in Firefox

And here some python code code :



#!/usr/local/bin/python

import string, sys

# If no arguments were given, print a helpful message
if len(sys.argv)==1:
    print 'Usage: celsius temp1 temp2 ...'
    sys.exit(0)

# Loop over the arguments
for i in sys.argv[1:]:
    try: 
        fahrenheit=float(string.atoi(i))
    except string.atoi_error:
 print repr(i), "not a numeric value"
    else:
 celsius=(fahrenheit-32)*5.0/9.0
 print '%i\260F = %i\260C' % (int(fahrenheit), int(celsius+.5))



My previous blog is at ...

My previous blog is at http://blog.magiksys.net
I'm tired to update my drupal setup and don't need all the features, then is switched to blogger to make a try.