Updated: 4/4/06; 6:40:55 PM.
Ted's Radio Weblog
Mission: Interoperable. Competition breeds Innovation. Monopolies breed stagnation. Working Well with Others is Good.
        

Monday, March 8, 2004

From OSNews: *The Command Line - The Best Newbie Interface?*. "This essay describes the surprising results of a brief trial with a group of new computer users about the relative ease of the command line interface versus the GUIs now omnipresent in computer interfaces. It comes from practical experience I have of teaching computing to complete beginners or newbies as computer power-users often term them...".
5:24:34 PM    comment []

I've been in the book and publishing business for a while. I take advantage of the fact that there are local retailers by buying from them whenever possible. Perhaps I could use an Amazon or a BookPool or another online service, but if I've used the local bookstore to browse the stacks, look through possible purchases, I've used their services, what they pay rent for, and I owe them fair compensation. Tim O'Reilly notes similar thoughts here, and my thoughts were spurred on by receipt of my monthly email newsletter from SoftPro. The folks at SoftPro are great - they know their titles, they can order what you need. They're working hard to make it through this "jobless recovery" when the joblessness is hitting hard in the IT sector.

Their "Regular Reader" program is a great deal - a percentage off list price in exchange for an email address for monthly newsletters. In addition, they sponsor the discounts sent on by their publishers, like O'Reilly's "Buy Five, Get One Free" promotion. And to top it off, they throw in their own promotions of T-shirts and coffee cups.

And SoftPro is a cool store, the geek equivalent of a kid in a candy store. Wall-to-wall books, and they're all computer books. O'Reilly, Addison-Wesley, Prentice-Hall, APress, No Starch Press, Microsoft, sometimes even Hentzenwerke. I was sad to hear they were closing the Marlborough, Mass, store, although the Waltham store (recently relocated from Burlington) is my favorite. Check them out if you're in the area (or near Denver, where their other two stores are).
4:35:12 PM    comment []


Great article over at DevShed on connecting to a MySQL database using the Python language. Folks familiar with ADO or with SQL Pass-through and the VFP way of manipulating cursors will be comfortable with code like this:
#!/usr/bin/python
# import MySQL module
import MySQLdb
# connect
db = MySQLdb.connect(host="localhost", 
user="joe", passwd="secret",db="db56a")
# create a cursor
cursor = db.cursor()
# execute SQL statement
cursor.execute("SELECT * FROM animals")
# get the resultset as a tuple
result = cursor.fetchall()
# iterate through resultset
for record in result:
        print record[0] , "-->", record[1]

9:47:04 AM    comment []

OSNews links to a guide on Subversion for CVS Users. Subversion is a source code control system built to address many of the issues of earlier Open Source systems like CVS and RCS.
7:34:48 AM    comment []

© Copyright 2006 Ted Roche.   

Creative Commons License This work is licensed under a Creative Commons License.

  

 

March 2004
Sun Mon Tue Wed Thu Fri Sat
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31      
Feb   Apr


Click here to visit the Radio UserLand website.

Subscribe to "Ted's Radio Weblog" in Radio UserLand.

Click to see the XML version of this web page.

Click here to send an email to the editor of this weblog.
Blogroll