An interesting read, good for beginners as well:
http://www.rubyrailways.com/great-ruby-on-rails-rest-resources/
Showing posts with label programming. Show all posts
Showing posts with label programming. Show all posts
Tuesday, November 20, 2007
Ruby On Rails REST Resources
Monday, September 24, 2007
Sunday, September 23, 2007
Structure and Interpretation of Computer Programs
This a great video course on computer programming provided for free by MIT. Previously, it was exclusively available to HP employees.
Course link
Book Link
Online version of the book
Saturday, September 22, 2007
Thursday, September 14, 2006
Tcl - How to pass arrays
from wiki: (http://wiki.tcl.tk/3262) and newsgroups.
Tcl does not provide a way to simply pass arrays by value, as this is usually done for strings. Straigh forward way to go around this problem is to convert an array to list and pass it as list. Another method is to use upvar to pass variable by name. Some other methods are mentioned below:
- Use dict command instead of array (for Tcl 8.5 or greater)
- Use extensions:
- Tclx keyed lists.
- the structure command from the megapkg structure extension.
- ...
Subscribe to:
Posts (Atom)