Open source gets an "A" grade at UniversityReaders


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Open source gets an "A" grade at UniversityReaders
# 1  
Old 05-22-2008
Open source gets an "A" grade at UniversityReaders

Thu, 22 May 2008 20:00:00 GMT
When Bassim Hamadeh was a student at the University of California, San Diego, he experienced firsthand the challenge of procuring the right textbooks for his classes. "They were high-priced, poor quality custom textbooks," Hamadeh says. So he started planning a business that would make it easier for professors to create and publish high-quality custom texts, and provide those materials to students at an affordable price. Since its launch in 1992, Hamadeh has been running UniversityReaders on open source software.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
source(n)						       Tcl Built-In Commands							 source(n)

__________________________________________________________________________________________________________________________________________________

NAME
source - Evaluate a file or resource as a Tcl script SYNOPSIS
source fileName source -rsrc resourceName ?fileName? source -rsrcid resourceId ?fileName? _________________________________________________________________ DESCRIPTION
This command takes the contents of the specified file or resource and passes it to the Tcl interpreter as a text script. The return value from source is the return value of the last command executed in the script. If an error occurs in evaluating the contents of the script then the source command will return that error. If a return command is invoked from within the script then the remainder of the file will be skipped and the source command will return normally with the result from the return command. The end-of-file character for files is '32' (^Z) for all platforms. The source command will read files up to this character. This | restriction does not exist for the read or gets commands, allowing for files containing code and data segments (scripted documents). If | you require a ``^Z'' in code for string comparison, you can use ``32'' or ``u001a'', which will be safely substituted by the Tcl inter- | preter into ``^Z''. The -rsrc and -rsrcid forms of this command are only available on Macintosh computers. These versions of the command allow you to source a script from a TEXT resource. You may specify what TEXT resource to source by either name or id. By default Tcl searches all open resource files, which include the current application and any loaded C extensions. Alternatively, you may specify the fileName where the TEXT resource can be found. SEE ALSO
file(n), cd(n) KEYWORDS
file, script Tcl source(n)