Geometry.Net - the online learning center
Home  - Basic_P - Programming General
e99.com Bookstore
  
Images 
Newsgroups
Page 8     141-160 of 191    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Programming General:     more books (100)
  1. Tricks of the Game-Programming Gurus by Andre Lamothe, John Ratcliff, et all 1994-07
  2. UNIX Shell Programming, Revised Edition by Stephen G. Kochan, 1989-12-01

141. CUJ>The CORBA Component Model: Part 1, Evolving Towards Component Middleware
This column is the first in a series that focuses on the CORBA Component Model (CCM). It first outlines the evolution of programming abstractions from subroutines to modules, objects, and components. Then it describes how this evolution has largely been mirrored in middleware, from message passing to remote procedure calls and from distributed objects to component middleware. Finally the article discusses the limitations of distributed object computing (DOC) middleware that motivate the need for component middleware in general and the CORBA Component Model (CCM).
http://www.cuj.com/documents/s=9039/cujexp0402vinoski/
Hello, and welcome to CUJ LOG IN Register Forgot password?
Registration FAQ
... green links
All Access members only
RSS Feed
Sponsored Quick Links
C/C++ Users Journal
C++ Experts Forum February 2004
Print-Friendly Version
The CORBA Component Model: Part 1, Evolving Towards Component Middleware
C/C++ Users Journal February 2004
Douglas C. Schmidt and Steve Vinoski
In the early days of computing, software was developed from scratch to achieve a particular goal on a specific hardware platform. Since computers were then much more expensive than the cost to program them, scant attention was paid to systematic software reuse and composition of applications from existing software artifacts. Over the past four decades, the following two trends have spurred the transition from hardware-centric to software-centric development paradigms:
  • Economic factors. Due to advances in VLSI and the commoditization of hardware, most computers are now much less expensive than the cost to program them.
  • Technological advances. With the advent of software development technologies, such as object-oriented programming languages and distributed object computing middleware, it has become easier to develop software with more capabilities and features.
A common theme underlying the evolution of software development paradigms is the desire for reuse; for instance, to compose and customize applications from preexisting software building blocks. Modern software development paradigms, such as object-oriented, component-based, and generative technologies, aim to achieve this common goal but differ in the type(s) and granularity of building blocks that form the core of each paradigm. The development and the evolution of middleware technologies also follow a similar goal of capturing and reusing design information learned in the past, within various layers of software.

142. DIRECTV Programming FAQs
general programming Local Channels programming Sports programming International programming Can I get DIRECTV® programming in my RV or on my boat?
http://www.directv.com/DTVAPP/learn/FAQ_DTVProgramming.dsp
dqmcodebase = "/includes/jvs/opencubemenubar/" //script folder location Time Zone
Prime Time
PM
Eastern Prime Time PM
DIRECTV

Basics
Installation
Advanced
...
Technologies
DIRECTV
Programming DIRECTV
Billing

General Programming
Local Channels Programming ... I saw an offensive show on your service. How do I report that? Q: What programming does DIRECTV offer? A: The DIRECTV service features more than 225 available channels of entertainment. Customers have access to popular networks like Disney Channel, CNN, ESPN and TNT, as well as up to 55 pay per view choices a day including major Hollywood films and special events. Hit movies start as often as every 30 minutes and they cost only $3.99 each when you use your remote control to order. We also offer an unprecedented professional and collegiate sports subscription CENTER ICE , MLB EXTRA INNINGS SM , MLS DIRECT KICK TM , ESPN GamePlan and ESPN FULL COURT. There's even more! Our SPORTS Pack premium service and TOTAL CHOICE PREMIER programming deliver sports action from across the nation. Plus, adult channels like PLAYBOY TV are available on an a la carte basis. Q: How can I find out what programming is coming up?

143. OOP Criticism
The author states that ObjectOriented programming (and development in general) has been oversold and overemphasized. They try to debunk some myths on the topic.
http://www.geocities.com/tablizer/oopbad.htm
Object Oriented Programming
Oversold!
OOP criticism and OOP problems
The emperor has no clothes!
Reality Check 101
Snake OOil Updated: 3/7/2005
OOP Myths Debunked:
  • Myth: OOP is a proven general-purpose technique
  • Myth: OOP models the real world better
  • Myth: OOP makes programming more visual
  • Myth: OOP makes programming easier and faster
  • Myth: OOP eliminates the "complexity" of "case" or "switch" statements
  • Myth: OOP reduces the number of places that require changing
  • Myth: OOP increases reuse (recycling of code)
  • Myth: Most things fit nicely into hierarchical taxonomies
  • Myth: Sub-typing is a stable way to model differences
  • Myth: Self-handling nouns are more useful than self-handling verbs
  • Myth: Most operations have one natural "primary noun"
  • Myth: OOP does automatic garbage-collection better
  • Myth: Procedural cannot do components well
  • Myth: OO databases can better store large, multimedia data
  • Myth: OODBMS are overall faster than RDBMS
  • Myth: OOP better hides persistence mechanisms
  • Myth: C and Pascal are the best procedural can get
  • Myth: SQL is the best relational language
  • Myth: OOP would have prevented more Y2K problems
  • Myth: OOP "does patterns" better
  • Myth: Only OOP can "protect data"
  • Myth: Implementation changes significantly more often than interfaces
  • Myth: Procedural/Relational ties field types and sizes to the code more
  • Myth: Procedural cannot extend compiled portions very well
  • Myth: No procedural language can re-compile at the routine level
  • Myth: Procedural/Relational programs cannot "factor" as well

144. Unix Programming Frequently Asked Questions - 2. General File Handling (includin
In general, trying to combine the use of select() or poll() with using SysV message In general, the best you can do is to use fstat() on the file.
http://www.erlenstar.demon.co.uk/unix/faq_3.html
Go to the first previous next last section, table of contents
2. General File handling (including pipes and sockets)
See also the Sockets FAQ, available at: http://www.lcg.org/sock-faq/
2.1 How to manage multiple connections?
I have to monitor more than one (fd/connection/stream) at a time. How do I manage all of them? Use or Note: was introduced in BSD, whereas is an artifact of SysV STREAMS. As such, there are portability issues; pure BSD systems may still lack , whereas some older SVR3 systems may not have . SVR4 added , and the Posix.1g standard defines both. and essentially do the same thing, just differently. Both of them examine a set of file descriptors to see if specific events are pending on any, and then optionally wait for a specified time for an event to happen. [Important note: neither nor There the similarity ends....
The interface to is primarily based on the concept of an , which is a set of FDs (usually implemented as a bit-vector). In times past, it was common to assume that FDs were smaller than 32, and just use an int to store the set, but these days, one usually has more FDs available, so it is important to use the standard macros for manipulating fd_sets: In most cases, it is the system's responsibility to ensure that fdsets can handle the whole range of file descriptors, but in some cases you may have to predefine the

145. Zope.org - HomePage
A general purpose AspectOriented programming, Generative programming, and CASE toolkit for Python. Open Source, BSD-like
http://www.zope.org/Members/pje/Wikis/TransWarp/HomePage
@import url(http://www.zope.org/plone.css?skin=); @import url(http://www.zope.org/ploneCustom.css); You are not logged in Log in Join You are here: Home Members Phillip J. Eby's Zope Center My Wikis ... TransWarp Wiki HomePage

146. General-purpose Programming Language - Wikipedia, The Free Encyclopedia
generalpurpose programming language refers to a type of computer programming language suitable for Some general-purpose computer programming languages
http://en.wikipedia.org/wiki/General-purpose_programming_language
General-purpose programming language
From Wikipedia, the free encyclopedia.
General-purpose programming language refers to a type of computer programming language suitable for most ordinary computer applications. This would include any language that supports all of the following constructs:
  • Comparison of strings and constants Branching and looping constructs Reading and writing sequential and random files
This is the minimum necessary for a language to be useful for general purpose applications. Most general-purpose languages include many more features than the above, such as means to issue various requests to each operating system that the language runs under, sorting searching and use of arrays Some general-purpose computer programming languages: edit
External link
Retrieved from " http://en.wikipedia.org/wiki/General-purpose_programming_language Categories Programming languages Views Personal tools Navigation Search Toolbox

147. NASA - NASA TV Landing Page
NASA Television (NTV) is a resource designed to provide realtime coverage of Agency activities and missions as well as providing resource video to the news media, and educational programming to teachers, students and the general public.
http://www.nasa.gov/multimedia/nasatv/index.html
The nasa.gov site requires that JavaScripts be enabled in your browser. For instructions, click here
+ Text Only Site

+ Contact NASA

+ Home
preLoad('/templateimages/navigation/leftnav/multimedia/nav_left_nasatv,/templateimages/navigation/leftnav/multimedia/nav_left_imagegallery,/templateimages/navigation/leftnav/multimedia/nav_left_videogallery,/templateimages/navigation/leftnav/multimedia/nav_left_mmgallery,/templateimages/navigation/leftnav/multimedia/nav_left_artgallery,/templateimages/navigation/leftnav/multimedia/nav_left_highlights,/templateimages/navigation/leftnav/multimedia/nav_left_downloads');
Windows
Media Player 10
+ Download Now

Real Player 10
+ Download Now

Flash Player 7
+ Download Now
QuickTime 7 + Download Now The New Digital NASA Television Digital NASA TV is available on AMC 6, Transponder 17C. Analog NASA TV is no longer available on satellite AMC 6, Transponder 9. Analog NASA TV remains on AMC 7, Transponder 18C until a date to be determined. + How to Get Digital NASA TV NASA TV via the Internet + Watch NASA TV live with RealPlayer + Watch NASA TV live with RealPlayer (Captioned) + Watch NASA TV live with Windows Media ... + Watch NASA TV live with Windows Media Note: For the best experience, Macintosh users should watch the NASA TV web streams with the RealPlayer.

148. E-commerce From INPRO: ISeries Homepage
general AS/400 system utilities and custom programming.
http://www.inprointernational.com/
e-commerce from INPRO: iSeries homepage e-commerce from INPRO: iSeries homepage

149. General Programming Downloads From Download Planet - Get Your Beta Freeware And
Welcome to DownloadPlanet.net your source for Shareware, Freeware, Demos, Betas and PreReleases. This is the place to come for a first look at the
http://www.downloadplanet.net/SubCat27.htm
Welcome to DownloadPlanet.net! Home Developer Center Add to Favorites - Choose Category Business / Office Editors Games Internet Personal and Home Programming Utilities Web Browsers Windows Shell
Subscribe to Our Weekly "Newest Software" Newsletter
Name:     Email The Week's Hottest Software   -   Free Software Giveaways to Subscribers Programming > General Programming General Programming Editors, Compilers, Libraries, Tools and Utilities (556 programs) < Prev] [Next >>] Number Name
Added
Downloads
+Macros 3.5
+Macros provides mechanisms for accessing any feature of Visual FoxPro in seconds by creating your own macros, toolbars or menus and also brings an easy way of managing your source code through built-in developer-friendly tools.... +CodeInspector 3.6 +CodeInspector scans VFP source codes to reveal variables which are used without declaration or, vice versa, declared but are not used and also gives you advices on your coding style.... Game Editor 1.3.2 Game Editor is an interactive multimedia tool for game development, with a simple and intuitive interface and a rich set of features.... Rpv Business Reports 5.2

150. Rick's Linux Resources
Links to programming and general Linux information.
http://www.spinics.net/linux/

151. Programming, Hardware And Internet Reviews / Resources :: DevLib.Org
programming general. Monday, 09 May 2005. Microsoft’s . donations and as a general resource center for users looking for programming resources.
http://www.devlib.org/

Devlib.Org
Directory Listings
Gadgets
Accessories and Addons
Computers Cool Gadgets ... Windows Hosting
Featured Additions
Treo 650
The Treo 650 is PalmOne's revision of the highly popular Treo 600. At first look, you can... Apple Nano 4GB iPod Black
Apple iPod Photo 60GB

The Apple 60 GB iPod Photo is Apple's top of t... Yahoo Linux Hosting
Yahoo offers a three Linux hosting packages. These include:... Linksys SRX WRT54GX Wireless Router
The Linksys SRX ( Speed and Range eXpansion ) router has earnt its place in our apartment ... Sharp LC 37D7U LCD HDTV
If a slick Titanium based design and the "made in japan" factor is important, th... Syntax Olevia LT32HVE HDTV Ready LCD TV
The review of this set essentially mirrors our review of the ... Samsung 710N 2 SyncMaster
The Samsung Syncmaster 710N-2 is your basic 17" monitor with 12ms response time an... Samsung SyncMaster 213T Black The Samsung Syncmaster is one of the largest monitors available to consumers (there are la... COBUG: COBOL User Groups COBUG provides support for starting and running a COBOL user group. Their website portal i...

152. IDM Computer Solutions, Inc.
UltraEdit and UltraEdit32 Text Editor, HEX Editor and Programmers Editor text, HEX and Programmers editor. Ideal for programming, email and general editing.
http://www.idmcomp.com/
Main Menu Company Home
IDM Awards

IDM Contact Info

IDM Full Story
...
News Topics

Products Downloads
IDM Bundles

Localized Versions

UEStudio
...
UltraSentry

Screen Shots IDM Software UEStudio UltraCompare UltraEdit-32 ... UltraSentry Forums UEStudio UltraCompare UltraEdit-32 UltraSentry IDM Select Choice About Select Choice Get the Seal IDM Select Software Support/Help FAQ Forums Power Tips Search Forums ... Search News Intl. Distributors Full Listing Miscellaneous Affiliate Program Surveys Mailing List Please add your email address below if you'd like to receive messages regarding new releases/updates to our products.
Welcome to IDM Computer Solutions, Inc.
UltraEdit the #1 selling, most powerful, value priced text editor available! The ideal text, HEX, HTML, PHP, Java, Perl, Javascript, and programmer's editor! Free trial period Industry award winner ... Over one million users licensed worldwide... About IDM BEST APPLICATION for 2005 - SIA Winner! Click here for the full story! UEStudio '05 Learn More UltraEdit Learn More UltraCompare Learn More UltraSentry Learn More IDM Bundles Learn More
What Customers Are Saying About v11.00...

153. Programming Languages
If you are not familiar with computer programming, select general informationCreating and Running a Program before you try to write your program.
http://www.udel.edu/topics/software/special/language/general/proglang.html
Programming Languages
The central UNIX systems (Strauss and Mahler) at the University of Delaware offers a variety of programming languages. If you are not familiar with computer programming, select "General informationCreating and Running a Program" before you try to write your program. If you want information on how to use a particular language on Strauss and Mahler, select the appropriate heading below to go directly to the section on that language.
Programming Languages
Following are some of the programming languages available on the central UNIX systems, Strauss and Mahler: AcuCOBOL BinProlog Workshop C
GNU C WorkShop C++ GNU C++
Liquid Common Lisp Scheme Workshop Fortran 77
WorkShop Fortran 90/95 GNU Pascal On-line "man" pages as well as Sun's AnswerBook provide information on most of the above languages.

154. The World Wide Web Virtual Library: Logic Programming
for queries related to logic programming in general and Prolog in particular. This document contains some pointers to information on Logic programming
http://vl.fmnet.info/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

155. How To Think Like A Computer Scientist
By Allen B. Downey, Jeffrey Elkner, Chris Meyers; Green Tea Press, 2002, ISBN 0971677506. Teaches general principles of programming, via Python as subject language. Thorough, indepth approach to many basic and intermediate programming topics. Full text online and downloads HTML, PDF, PS, LaTeX. Free, Green Tea Press
http://greenteapress.com/thinkpython/
Green Tea Press
Green Tea Home Page
How to Think Like a Computer Scientist: Learning with Python
Ordering instructions and terms.
Welcome to the homepage of How to Think Like a Computer Scientist: Learning with Python , by Allen Downey, Jeff Elkner and Chris Meyers. How to Think... is a free textbook available under the GNU Free Documentation License . Readers are free to copy and distribute the text; they are also free to modify it, which allows them to adapt the book to different needs, and to help develop new material. The book is available in a variety of electronic formats, provided by the Open Book Project Printed, bound copies of the book are published by Green Tea Press You can order the book directly from us by following these ordering instructions . Or you can get the book from Barnes and Noble or Amazon . Before choosing where to buy, you should compare prices and read this article about Amazon and software patents.
  • The LaTeX source code for the book is available as a gzipped tar file
  • Precompiled copies of the book are available in PDF and Postscript . Users are free to download and print these files.
  • The HTML version of the book is also available if you prefer to read it online. Or you can download all the

156. :: Index
Forum providing areas for discussion on the topics of general GWBasic programming and an area to ask other GW-Basic programmers for help.
http://www.scottserver.net/forum/index.php
Programmer's Haven
Combined forum for
Basically Programming

and
BasicUsers Net

FAQ Search Memberlist Usergroups Register Profile Log in to check your private messages Log in
The time now is Sun Sep 25, 2005 2:11 am
Forum Index
View unanswered posts Forum Topics Posts Last Post Announcements Management
Announcements by Management only. Use General to post any replies.
Sun Sep 25, 2005 1:08 am
royscott
Site News
What's new on Basically Programming, Programmer's Haven forum and the Wiki. Tue Jul 19, 2005 2:39 am royscott Member Fri Sep 23, 2005 4:27 am Michael S. Sanders Help Desk If you have problems, questions or found a bug in an application downloaded from this site. Moderator royscott Mon Sep 12, 2005 11:09 pm MichaelW General Article Comments Post your comment to articles on Basically Programming here under the title topic. No Posts Foundation 99 Thoughts and comments on this guideline organization Fri Jul 01, 2005 6:56 am royscott General Programming Non-specific programming discussions Fri Sep 23, 2005 3:48 am Jerry Muelver New Category Requests Place topics here that may result in a new category being created No Posts General Non-Programming You can discuss anything of interest here, but keep it civil and reasonable.

157. Wiley::General Programming & Software Development
general programming Software Development (291), Listings 125 26-50 51-75 76-100 Agile Modeling Effective Practices for eXtreme programming and the
http://eu.wiley.com/WileyCDA/Section/id-2941.html
Location: United States change location Shopping Cart My Account Help ... Contact Us
By Keyword By Title By Author By ISBN By ISSN Wiley Computing Computer Science Featured Title
Assembly Language Step-by-Step: Programming with DOS and Linux, 2nd Edition

by Jeff Duntemann
Related Subjects
Distributed Systems

General Intelligent Systems and Agents

Quantum Computing

Computer Architecture
...
Visual Basic

Join a Computing Mailing List Listings: more... Sort listing by: A-Z Z-A Publication Date Author Refine listing by: All Formats Books Media E-Books Abstract Data Types in Standard ML by Rachel Harrison Paperback, August 1993 US $110.00 Add to Cart Advanced Scientific Fortran by David R. Willé Paperback, January 1996 US $125.00 Add to Cart Agile Modeling: Effective Practices for eXtreme Programming and the Unified Process by Scott Ambler E-Book, July 2002 Agile Modeling: Effective Practices for eXtreme Programming and the Unified Process by Scott Ambler Paperback, March 2002 US $34.99 Add to Cart Apache, MySQL, and PHP Weekend Crash Course by Steven M. Schafer E-Book, November 2003

158. Visual Basic Explorer - VB Forums @ Www.ezboard.com
Active VB discussion for all programmer levels. general topics like database and API programming, as well as specialized forums for game, directx and those just getting started.
http://pub13.ezboard.com/bvisualbasicexplorer
VBExplorer.Com Programmer's Corner Planet-Source-Code.Com RentACoder.Com ... ASCII
Visual Basic Explorer - VB Forums
16673 registered members Login Register Your Free Account (Required) Search Help ... Need help logging in?
Forum # Posts Last Comment VB 6 Getting Started
Forum Description
9/12/05 8:38 am Strings, Text and Dates
Forum Description
9/22/05 7:36 pm
Forum Description
9/19/05 2:52 am Forms and Controls
Forum Description
9/22/05 3:11 am General Visual Basic
Forum Description
9/23/05 1:22 am .NET VB.NET
Forum Description
9/24/05 4:15 am ASP.NET
Forum Description
9/2/05 10:12 am .NET Reference
Forum Description
5/2/05 9:26 am Focus on Games
Forum Description
8/7/05 10:39 pm DirectX for Visual Basic Forum Description 8/25/05 6:52 am Forum Description 9/15/05 11:36 am Game Reference Forum Description 6/21/05 6:36 am Database Programming Data Access Code Forum Description 9/21/05 1:32 am Data Access Controls Forum Description 9/24/05 10:05 am Forum Description 9/11/05 8:18 pm Database Reference Forum Description 9/22/05 6:51 pm VBA - Visual Basic for Applications Forum Description 9/16/05 11:36 am Word Forum Description 8/25/05 6:43 pm Outlook, CAD, Visio, etc

159. POPL97 General Information
POPL97 general Information and Call For Participation are proud to organize POPL 97, the 24th Annual Symposium on Principles of programming Languages.
http://www.cs.umd.edu/~pugh/popl97/
POPL97 General Information and Call For Participation
The 24th Annual ACM SIGPLAN SIGACT Symposium on
Principles of Programming Languages
Paris, France , January 15-17, 1997
ACM SIGPLAN and SIGACT are proud to organize POPL'97, the 24th Annual Symposium on Principles of Programming Languages. The symposium is a forum for discussion of principles, innovations, and accomplishments in the design, definition, analysis, and implementation of programming languages and systems. This year, we are pleased to bring the conference to Paris , the first European site for POPL since Munich in 1987. In addition to the main three-day POPL'97 program on January 15-17, 1997 , five one-day workshops will be held. Preceding POPL'97 on Tuesday, January 14 , will be the First ACM SIGPLAN Workshop on Automated Analysis of Software (AAS'97) , the Second ACM SIGPLAN Workshop on Continuations (CW'97) , and the workshop on Logical and Operational Methods in the Analysis of Programs (LOMAPS) . Then, after POPL'97 on Saturday, January 18 , the Fourth International Workshop on the Foundations of Object-Oriented Languages (FOOL-4) and the First ACM SIGPLAN Work-shop on Domain-Specific Languages (DSL'97) will be held.

160. FTPOnline.com - Home Page
Articles, tips and tricks, and developer message boards specializing in general Visual C++ programming, COM, MFC, DirectX/Direct3D, and STL.
http://www.fawcette.com/vsm/
Welcome Guest!
Create Account
Login Locator+ Code:
Search: All VSM/VBPJ Java Pro WSSM XML FTPOnline Channels Conferences Resources Hot Topics Partner Sites Magazines About FTP HM_PG_FontFamily = "Arial, sans-serif"; HM_PG_FontSize = 8; HM_PG_FontBold = 1; HM_PG_FontItalic = 0; HM_PG_FontColor = "#000000"; HM_PG_FontColorOver = "#ffffff"; HM_PG_BGColor = "#eeeeee"; HM_PG_BGColorOver = "#000000"; HM_PG_ItemPadding = 3; HM_PG_BorderWidth = 1; HM_PG_BorderColor = "#000000"; HM_PG_BorderStyle = "solid"; HM_PG_SeparatorSize = 1; HM_PG_SeparatorColor = "#ffffff";
Speed Transaction Processing in .NET 2.0

This framework builds on the functionalities of the first to provide better processing support. [Read More]
Keep Data Consistent With Transactions

Add Magic to Forms With Wizards

Header_Color = '8BAABC'; HeaderCssClass = 'mainsectionheader_mag'; HeaderLineColor = '385B7F'; Table of Contents
View the

September 2005 issue's

Table of Contents
View the ... [Visit the VSM Archives for More Back Issues] Get the Code Download all the code for the September 2005 issue.

A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

Page 8     141-160 of 191    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | Next 20

free hit counter