glob is referred to as an instance of pattern matching behaviour. For more info dig here: http://en.wikipedia.org/wiki/Glob_(programming)
Archive for Programming
Robert Lafore
Hi I have been dwindling down the rockside this afternoon after i remembered that i have to post something today. My downside is hacking which i which if i were an hacker someday. So forget about about that and lets come back to my main post for this evening which is “Robert Lafore”, who is [...]
Continue reading » Comments Off
tour-de-babel
http://sites.google.com/site/steveyegge2/tour-de-babel Hi there, My friend Steve eggs is writing about Lisp, Java, C, C++, Ruby, Perl and Python in his article mentioned above Published September 2004, this article gives you a insight upon the look , feel , functionality and taste of these languages in a go. Steve mentions the names of some of [...]
Continue reading » Comments Off
Python dig.ged.in
This post deals with the in-depth non-technical details for the python programming language. Python is developed by the Python Labs of Zope Corporation, which consists of half a dozen core developers headed by Guido van Rossum, Python’s inventor, architect, and Benevolent Dictator For Life (BDFL). This title means that Guido has the final say on [...]
Continue reading » Comments Off
mysql commands
SHOW DATABASES; DROP DATABASE test; DROP DATABASE\c // to cancel the current command quit CREATE DATABASE jokes; USE jokes; CREATE TABLE table_name ( -> column_1_name column_1_type column_1_details, -> column_2_name column_2_type column_2_details, -> … ->); CREATE TABLE Jokes ( -> ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, -> JokeText TEXT, -> JokeDate DATE NOT NULL ->); [...]
Continue reading » Comments Off
An empirical comparison of C, C++, Java, Perl, Python, Rexx, and Tcl
jccpprt_computer2000.pdf
Continue reading » Comments Off
Moving from Java to C++
Moving from Java to C++ This appendix explains how to transfer your Java programming skills to a substantial subset of C++. This is necessary for students who take their first programming course in Java and the second course in C++. Naturally, it would be easiest if the second course were also offered in Java, but [...]
Continue reading » Comments Off
Generics in C#, Java, and C++
Generics in C# Bill Venners: How do generics work in C#? Anders Hejlsberg: In C# without generics, you are basically able to say class List {…}. In C# with generics, you can say class List<T> {…}, whereT is the type parameter. Within List<T> you can use T as if it were a type. When it [...]