scalt's Contributions
Below are the tutorials, code snippets, and resources scalt has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Generators in Python Tutorials (Last Comment: scalt, Views: 9,612)
Code Snippets
Submitted: June 1, 2011        Views: 969
Will read a given file containing data that is seperated by a specified delimiter (default is ',') and return a dictionary containing column names and corresponding data in list form. If caller specifies no column names it returns a list of columns instead.
Submitted: November 17, 2008        Views: 9806
Does what it says
Submitted: December 19, 2010        Views: 2292
Wrapper code for os.walk(). Will search a given directory (subfolders optional) with include/exclude filters based on standard file filter rules (ie '*.*') and return either the full path or the name of the file
Submitted: July 19, 2011        Views: 791
Takes a string and it's delimiter(s) as arguments and returns an array of type 'T'. Uses Generics and Reflection, will work with any 'T' that contains a 'Parse' method accepting a single string argument (int/double/float/DateTime/whatever). Limited error handling provided, the intention is for exceptions to be passed directly to you so you can handle them.