Geometry.Net - the online learning center
Home  - Computer - Programming

e99.com Bookstore
  
Images 
Newsgroups
Page 2     21-40 of 194    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | Next 20

         Programming:     more books (99)
  1. The C++ Programming Language: Special Edition by Bjarne Stroustrup, 2000-02-11
  2. Hello World! Computer Programming for Kids and Other Beginners by Warren Sande, Carter Sande, 2009-03-30
  3. Advanced Programming in the UNIX Environment, Second Edition (Addison-Wesley Professional Computing Series) by W. Richard Stevens, Stephen A. Rago, 2005-06-27
  4. C# Programming: From Problem Analysis to Program Design, Second Edition by Barbara Doyle, 2007-08-21
  5. Programming Perl (3rd Edition) by Larry Wall, Tom Christiansen, et all 2000-07-14
  6. The Ruby Programming Language by David Flanagan, Yukihiro Matsumoto, 2008-01-25
  7. Learning Python: Powerful Object-Oriented Programming by Mark Lutz, 2009-09-24
  8. Python Programming: An Introduction to Computer Science 2nd Edition by John Zelle, 2010-05-18
  9. C Programming: A Modern Approach, 2nd Edition by K. N. King, 2008-04-19
  10. Programming Game AI by Example by Mat Buckland, 2004-09-30
  11. Beginning Programming For Dummies by Wallace Wang, 2006-11-06
  12. Programming WCF Services: Mastering WCF and the Azure AppFabric Service Bus by Juval Lowy, 2010-08-23
  13. Drum Programming: A Complete Guide to Program and Think Like a Drummer (Percussion) by Ray F. Badness, 1991-11-01
  14. Learning iOS Game Programming: A Hands-On Guide to Building Your First iPhone Game (Developer's Library) by Michael Daley, 2010-09-13

21. C Programming
A tutorial that starts with the very basic and ends with the very complex.Category Computers programming Languages C Tutorials......Next Contents. C programming. Steve Holmes University of StrathclydeComputer Centre Curran Building 100 Cathedral Street Glasgow.
http://www.strath.ac.uk/IT/Docs/Ccourse/
Next: Contents
C Programming
Steve Holmes
University of Strathclyde Computer Centre
Curran Building
100 Cathedral Street
Glasgow
Please note: Steve no longer works for the University of Strathclyde, and we are unable to answer queries relating to this course. You are welcome to make links to it however, but please bear in mind that it was written for students within the University and so some parts may not be relevant to external readers.

22. AI Programming Resources
Recommendations of websites and literature, by Stuart Russell, UC Berkeley. Public domain AI software; AI, Lisp, Prolog online resources, textbooks, references, manuals.
http://www.cs.berkeley.edu/~russell/prog.html
AI Programming Resources
This page is no longer being updated. See the programming sections of our AI on the Web page instead. This page gives suggestions for AI programs, programming languages, online resources, and programming textbooks. See also CMU's AI Programming FAQs and Temple's list of software from AI books
Lisp
Public Domain AI Software
  • Chinook : a checkers program. Play via http; no source code available.
  • UCPOP : a planner similar to the POP planner in the text. Common Lisp plus CLIM.
  • Otter : a theorem prover. C.
  • DTP : a theorem prover. Common Lisp.
  • Epilog : theorem prover and logical language toolkit. Binary for Mac, HP.
  • CLIPS: a Tool for Building Expert Systems. C.
  • Belief net software : a listing of both free and commercial belief net software.

23. Mathematical Programming Glossary
Glossary of keywords and phrases used in the field of optimization.Category Science Math Operations Research......This is a stateof-the art glossary of terms used in mathematical programming,with related terms in mathematics, economics and computer science.
http://www.cudenver.edu/~hgreenbe/glossary/glossary.html
Frames are being used (if you should get a supporting browser), but you should still be able to use the glossary. Please report problems to me... click here

24. Programming In C
A comprehensive guide for the c programming language.Category Computers programming Languages C Standards......programming in C ANSI History Culture Literature What's new? ANSI CISO/IEC JTC1/SC22/WG14 and N843, the official committee document
http://www.lysator.liu.se/c/
ANSI History Culture Literature ... What's new? ANSI C
ISO/IEC JTC1/SC22/WG14 and N843, the official committee document
The first chain of abbreviations is the committee responsible for maintaining and updating the C language definition; the second, N843, designates the Final Committee Draft of what will one day be the next C standard. As usual, there are versions in gzipped PostScript and gzipped Adobe Acrobat format
hyperlinked version of N794
, a slightly earlier draft.
A brief description of Normative Addendum 1, by Clive Feather
This work - 4 years in the doing - has culminated in Normative Addendum 1.
Normative Changes to ISO/IEC 9899:1990 in Technical Corrigendum 1
Four years after the adoption of the ANSI C standard as an International Standard in 1990, answers to the first batch of defect reports have been formally accepted: the C standard has changed.
Paul Eggert summarizes Technical Corrigendum 2
ISO C Technical Corrigendum 2 (TC2) has been approved. Even leaner than its predecessor TC1, it consists only of small changes in response to Defect Reports, and will be of interest mostly to compiler and test suite vendors.
Instant C9x: Doug Gwyn's Q8
``Aside: Why "Q8"? That was used as a system external symbol prefix in old CDC Fortran implementations, to avoid link-time name-space collisions with user-defined symbols, on the assumption that no user would ever think of using such a name.''

25. Sophium
Software used with digital settop boxes to provide customized and personalized television listings and programming options.
http://www.sophium.com/

This site is hosted by
Netfirms Web Hosting
This site is hosted by
Netfirms Web Hosting

26. Brian W. Kernighan: Programming In C: A Tutorial
This ``tutorial'' is presented as a historical document, not as a tutorial. Although it has lost Category Computers programming Languages C Historical......programming in C A Tutorial. 4 S. C. Johnson B. W. Kernighan, The programmingLanguage B. Computer Science Technical Report 8, Bell Labs, 1972.
http://www.lysator.liu.se/c/bwk-tutor.html
Programming A Tutorial
Brian W. Kernighan
Bell Laboratories, Murray Hill, N. J.
Although it has lost little of its didactic value, it describes a language that C compilers today do no longer understand: the C of 1974, four years before Kernighan and Ritchie published the first edition of ``The C Programming Language''. Table of Contents:
  • Introduction
  • A Simple C Program
  • A Working C Program; Variables; Types and Type Declarations
  • Constants ...
  • Simple I/O getchar, putchar, printf
  • If relational operators compound statements
  • While Statement ...
  • Initialization of Variables
  • Scope Rules : Who Knows About What
  • #define #include
  • Bit Operators
  • Assignment Operators ...
  • Floating Point
  • Horrors! goto's and labels
  • Acknowledgements
    Introduction
    C lets you write your programs clearly and simply it has decent control flow facilities so your code can be read straight down the page, without labels or GOTO's; it lets you write code that is compact without being too cryptic; it encourages modularity and good program organization; and it provides good data-structuring facilities. This is not Users who would like the full story should consult the "C Reference Manual" by D. M. Ritchie
  • 27. The NLP (Neuro-Linguistic Programming) And DHE General Information Server
    A nonpartisan collection of articles, information, and resource hotlinks regarding Neuro-Linguistic programming on the Internet.
    http://www.nlp.org/
    NLP and DHE
    General Information Server Intro to NLP
    Books, tapes

    Book of month

    Organizations
    ...
    Practitioners

    Research
    Articles
    Links
    Reviews

    Search
    Welcome to "NLPSCHEDULE.COM" Eric Rudnick of Conceptual Leverage NLPschedule features the most comprehensive calendar of NLP training schedules on the web as well as an extensive database of NLP practitioners and trainers, seminar and book reviews, articles, and much more. Enjoy! IMPORTANT: The service that used to notify of changes to this site has been discontinued. If you would like to be notified of changes to the site, please visit http://www.nlp.org/notify.htm and re-register for the site. What's New (3/16/2003) Made possible through the generous sponsorship of NLP Comprehensive: About this Site Search the Site Be notified of changes Books Browse NLP Books Featured Book Sponsors Practitioner Listings View or add listings (English) View or add listings (Deutsch) Organizations Listings View or add listings Calendar Automated events calendar Books, Organizations

    28. The World Wide Web Virtual Library: Logic Programming
    Affiliated with the comp.lang.prolog newsgroup this repository includes general information, Prolog, Category Computers programming Languages Logic-based...... Logic programming. Please contact Jonathan Bowen if you know of relevantonline information not included here. Other logic programming systems.
    http://www.afm.sbu.ac.uk/logic-prog/
    Virtual Library Computing Languages Prolog AI
    Logic Programming
    Please contact Jonathan Bowen if you know of relevant on-line information not included here. Use the comp.lang.prolog newsgroup for queries related to logic programming in general and Prolog in particular. This document contains some pointers to information on Logic Programming available around the world on the World Wide Web The following information is available:
    General repositories
    Prolog
    Window system interfaces
    Other logic programming systems
    Meetings
    Books
    Related information
    indicates new entries. indicates a (subjectively!) recommended link for especially good on-line information. If enough people email me, I will add a star to entries recommended by others.
    General repositories

    29. WNC Programming
    Contract CNC programming for complex 3 to 5axis machined parts using NCL multi-axis machining software.
    http://www.grapevine.net/~gwickham
    WNC Programming
    specializes in 3 thru 5-axis part programming using the latest in NCL CAD/CAM
    software.
    var site="sm3wnc-counter" 307 E. Bridge Ave
    Blackwell, OK 74631
    Phone: (580) 363-3838
    Fax: (580) 363-3980
    Cell Phone : (580) 761-6501
    Email: wnc@4grc.com

    30. Embedded Systems Programming - Embedded.com
    An online union of 3 premier embedded systems development information sources.Category Computers Hardware Embedded Technical Information......This is the place to come for tutorials, code, demos, and news, along with informationabout Embedded Systems programming Magazine and the Embedded Systems
    http://www.embedded.com/

    31. EME Business Internet Services Include Web Design And Maintenance, Domain Name R
    Offers setting up of Internet servers, domain registration, shopping carts with secure credit card facilities and database implementation.
    http://www.eme.com.au/
    For collectors of coins, banknotes, stamps, tokens and other collectables Australasian Numismatic Dealers Association
    About Our Services Getting Started
    We provide the facilities and technicals to get your business on the Internet. We can register a domain name for you and set up your own Internet site, email requirements, and on-line shopping facilities if required. Once your website is established, you can be in control of your site via a link to the server directly. You will be able to change page content, change and add extra e-mail accounts and check your website traffic statistics at any time. Alternatively, we can save you time and look after all those details for you. No matter what business you are in, we will tailor a solution for you. See the options and prices Your web site would be located on a WebCentral server which has at least 300Mb direct connection to the Internet. This means fast and reliable operation.

    32. Resources For Programming Language Research
    A collection of information and resources for research in programming language theory, design, implementa Category Computers programming Compilers Theory......programming Language Research. A collection of information and resources for researchin programming language theory, design, implementation, and related areas.
    http://www.cs.cmu.edu/afs/cs.cmu.edu/user/mleone/web/language-research.html
    Programming Language Research
    A collection of information and resources for research in programming language theory, design, implementation, and related areas. Additions and corrections are welcome!
    Subject-Oriented Pages
    Other Related Pages
    Mark Leone ( mleone@cs.cmu.edu

    33. Www.simtel.net: MS-DOS // Programming
    A vast collection of programming related downloads.
    http://www.simtel.net/pub/msdos/247/
    @import url(/simtel.css); Search Simtel Home
    Spotlights

    Doc's Picks

    News Letter Signup
    ...
    SpyBlocker

    Translate into
    Spanish Portuguese French German Italian Japanese Korean
    Select a website
    mirror:
    USA Hungary Poland
    Welcome to Simtel.Net - A worldwide distribution network for Shareware, Freeware, and Public Domain software. Click Below to Browse Our File Collection
    MS-DOS // Programming
    var defaultAd = ''; var freqDays = 1; var freq = 1; var bsid = '18502'; var bsads = '7'; var bsloc = '2011112453'; var bswx = 720; var bshx = 300; var s = bswx + 'x' + bshx; var c = '916'; var cb = '1' Ada programming language Artificial Intelligence programs Assembly language utilities BASIC programming language ... Visual Basic programming language Questions? webmaster@simtel.net Privacy About Us Our Partners ... Contact Us

    34. Researchers In Programming Languages And Compilers
    A list of home pages for researchers working on programming language theory, design, implementation, Category Computers programming Compilers Theory......Researchers in programming Languages and Compilers. Compilation, optimization,and garbage collection of mostly functional programming languages.
    http://www.cs.cmu.edu/afs/cs.cmu.edu/user/mleone/web/language-people.html
    Researchers in Programming Languages and Compilers
    Below are links to home pages of researchers working on programming language theory, design, implementation, and related areas. this list is not exhaustive! Please let me know if you would like to be added to this list , or if you would like an existing entry modified or deleted. Last Name: A B C D ... Z Back to the language research page
    Related Pages
    Home Pages
    - DEC SRC
    Security in distributed systems, specification and verification methods, principles of programming languages.
    Samson Abramsky - University of Edinburgh
    Semantics of programming languages, concurrency, game semantics, program analysis.
    Gul Agha - University of Illinois at Urbana-Champaign
    Logic, object-oriented programming, formal semantics, actors.
    Alex Aiken - Berkeley
    Program analysis, type theory, optimization, constraint theories, functional programming, instruction scheduling.

    35. Programming Games
    Offers all kinds of games in which one competes by writing code and having the programs then compete against each other.
    http://www.cs.mcgill.ca/~stever/games/
    Programming Games and Contests
    What I'm after are games in which one competes by writing code and and having the programs then compete against each other. The most straightforward exemplars of this are the ubiquitous bot games, such as the *-robots games. I'm particularly interested in ongoing competitions. Typically run either periodically or in King of the Hill (KotH) type of competitions. Any additions, deletions, changes or other comments cheerfully accepted
    Robots Games
    The "competitors" in these games are robots; usually one with a gun to shoot at other competitors with. You supply the brains for the robot in the form of a program of one kind or another. The oldest of this kind that I know about is CROBOTS, where the robot is programmed in a "C-like" language. This was written by Tom Poindexter, who later created tclrobots.
    Robocode
    This game's ulterior motive is to teach Java Programming by letting you create Java "Robots," real Java objects that battle it out onscreen against other robots. Robocode, with its snazzy graphics and hyper battles, is similar to a combination of Logo and CoreWars. While playing Robocode, you will learn how to write Java code, how to handle events, how to create inner classes, and more.
    Real Time Battle
    Another bot-programming game, with two outstanding features, in my mind. Firstly, the robots can be written in any language; the communication with the simulator is done via standard I/O. Secondly, the code is available under GPL. It does, however, require a unix environment with GTK+. (Any recent linux box, for example, would work just fine.)

    36. Springer LINK: Mathematical Programming
    (Springer/Mathematical programming Society) Tables of contents from vol.84 (1999) on. Full text Category Science Math Operations Research...... Editorsin-Chief LA Wolsey (Series A) ยท WJ Cook (Series B). Would you like toautomatically receive every new table of contents of Mathematical programming?
    http://link.springer.de/link/service/journals/10107/
    Would you like to automatically receive every new table of contents of Mathematical Programming ? Then register with our free-of-charge mail service LINK Alert by checking the appropriate box(es) and entering your email address here: Online First articles
    Printed issues You will receive confirmation via email.
    A Publication of the Mathematical Programming Society
    Note for members:

    please address all membership questions to Service@mathprog.org or go to http://www.mathprog.org/
    ISSN: 0025-5610 (printed version)
    ISSN: 1436-4646 (electronic version)

    37. New Architect: Programming Product Review
    Sun Java Internationalization and Localization Toolkit 2.0, and Multilizer Java Edition Pro 2.0.
    http://www.webtechniques.com/archives/2000/09/progrevu/
    New Architect Daily
    Commentary and updates on current events and technologies Research
    Search for reports and white papers from industry vendors and analysts. This Week at NewArchitect.com Subscribe now to our free email newsletter and get notified when the site is updated with new articles
    New Architect
    Archives > Programming Product Review
    Send Java Around the World
    By Michiel de Bruijn As far as multiple computing platforms are concerned, Java pretty much lives up to its "write once, run anywhere" slogan. When it comes to supporting applications that have to run anywhere on the planet, though, things didn't always look so great.
    100-Percent Pure Globalization
    As the name already implies, JILT is pretty much a one-stop shop for making your applications work outside the U.S. Consisting of five components, it offers both a Swing-based user interface and full command-line functionality for use in automated processes. Sun Java Internationalization and Localization Toolkit 2.0
    Sun Microsystems
    java.sun.com/products/jilkit

    38. RISC OS
    Extensive list of links from ROUGOL, to assist you in programming under RISC OS.
    http://rougol.jellybaby.net/RISCOS.html#prog

    39. Neon Programming
    Used to compose new formulas and save them, which can later be edited and extended with additional information. Lists functions that can be used.
    http://www.neon-programming.com/
    W e l c o m e W i l l k o m m e n
    to N e o n P r o g r a m m i n g Translation with Google.com italiana Portugisi

    40. CGI Programming 101 - Learn CGI Today!
    An introduction to CGI/Perl. From the basics of what is CGI, to being able to write useful scripts.Category Computers programming Languages Perl WWW Tutorials......Lots of helpful examples. No programming experience needed! cover , CGIprogramming is easy to learn; if you know HTML, you can learn CGI.
    http://www.cgi101.com/class/
    CGI programming is easy to learn; if you know HTML, you can learn CGI. You don't need any prior programming experience. This class will introduce you to writing Perl CGI scripts, teach you the basics of writing CGI scripts, and walk you through several examples of common CGI programming applications for the Web. Self-Paced Learning
    The first six chapters of CGI Programming 101 are available free here on this site. By working through them, you'll learn how to write your own form-to-mail program, and how to read and write to data files. You should work through these in order, because each chapter builds on material you learned in the previous chapter. If you're ready to get started, click to the Introduction When you're ready to go beyond these lessons, order the book and learn about databases, Perl modules, file uploading and more.
    Free Online Chapters

    Page 2     21-40 of 194    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | Next 20

    free hit counter