Geometry.Net - the online learning center
Home  - Basic_S - Smalltalk Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 1     1-20 of 47    1  | 2  | 3  | 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  

         Smalltalk Programming:     more books (104)
  1. Object-Oriented Programming with C++ and Smalltalk by Caleb Drake, 1997-10-30
  2. Smalltalk, Objects, and Design by Chamond Liu, 2000-04-27
  3. Object-Oriented Implementation of Numerical Methods: An Introduction with Java & Smalltalk (The Morgan Kaufmann Series in Software Engineering and Programming) by Didier H. Besset, 2000-11-08
  4. The Design Patterns Smalltalk Companion by Sherman Alpert, Kyle Brown, et all 1998-02-20
  5. Smalltalk Best Practice Patterns by Kent Beck, 1996-10-13
  6. Smalltalk 80: The Language by Adele Goldberg, David Robson, 1989-01-11
  7. Smalltalk-80: The Interactive Programming Environment (Addison-Wesley series in computer science) by Adele Goldberg, 1983-12
  8. An Introduction to Object-Oriented Programming and Smalltalk by Lewis J. Pinson, Richard S. Wiener, 1988-04
  9. A Quick Trip to Objectland: Object-Oriented Programming With Smalltalk/V by Gene Korienek, Tom Wrensch, 1993-03
  10. Object-Oriented Programming With Smalltalk/V by Michele Marchesi, 1994-12
  11. IBM Smalltalk Programming for Windows and Os/2/Book and Disk (Practical Programming Series) by Dan Shafer, Scott Herndon, 1995-02
  12. Smalltalk Programming for Windows (Prima Practical Programming Series/Book and 3 1/2" Disk) by Dan Shafer, Scott Herndon, et all 1993-01
  13. Object Oriented Programming With Smalltalk/V (Ellis Horwood Series in Computers and Their Applications) by Dusko Savic, 1991-01
  14. World Wide Web Programming: Visualage for C++ and Smalltalk (Visualage Series) by Andreas Bitterer, Marc Carrel-Billiard, 1997-09

1. Smalltalk Programming Language
Smalltalk programming language CategoryProgramming languages Smalltalk is a dynamically typed object oriented programming language designed at Xerox PARC by Alan Kay, Dan Ingalls
http://encyclopedia.codeboy.net/wikipedia/s/sm/smalltalk_programming_language.ht
Main Page
encyclopedia.codeboy.net
Smalltalk programming language
Category:Programming languages Smalltalk is a dynamically typed object oriented programming language designed at Xerox PARC by Alan Kay , Dan Ingalls, Ted Kaehler, Adele Goldberg , and others during the . The language was generally released as Smalltalk-80 and has been widely used since. Smalltalk is in continuing active development, and has gathered a loyal community of users around it. Smalltalk has been a great influence on the development of many other computer languages, including: Objective-C , Actor, Java and Ruby (the latter one to such an extent that many Smalltalkers consider Ruby to be Smalltalk with a different syntax). Many software development ideas of the came from the Smalltalk community, such as design patterns (as applied to software), Extreme Programming and refactoring . Among Smalltalkers is Ward Cunningham , the inventor of the WikiWiki concept. Table of contents showTocToggle("show","hide") 1 Smalltalk's big ideas
2 History

3 Implementations

4 Tutorials
...
5 External links
Smalltalk's big ideas
Smalltalk's big ideas include:
  • "Everything is an object Model-view-controller Dynamic translation : modern commercial virtual machines compile bytecodes to the native machine code for fast execution, a technique pioneered by Smalltalk-80 from ParcPlace Systems in mid-1980s. This idea was adopted by

2. Smalltalk Programming - Wikibooks, Collection Of Open-content Textbooks
What do you think of this page? Please take a moment to rate this page below. Your feedback is valuable and helps us improve our website. Reliability
http://en.wikibooks.org/wiki/Smalltalk_Programming
Smalltalk Programming
From Wikibooks, the open-content textbooks collection Jump to: navigation search Smalltalk is an object oriented programming language. It was named as a 'small' language intended to be easy to use. If you have programmed before and would like to see a little bit of how Smalltalk works and is different from other programming languages, you can get an overview
Contents
Table of contents
Beginning Smalltalk
Smalltalk Concepts Variables Simple Input and Output Simple math in Smalltalk ... Exercises
In-depth Smalltalk ideas
Pointers and relationship to arrays String Manipulation Programming Structure and Style Smalltalk complex types ... Error Catching
Smalltalk and beyond
Language Overloading and Extensions Combining Languages Commented Source Code Library
External resources
Wikipedia has related information at Smalltalk

3. Bambooweb: Smalltalk Programming Language
Smalltalk is a dynamically typed object oriented programming language designed at Xerox PARC by Alan Kay, Dan Ingalls, Ted Ka
http://www.bambooweb.com/articles/s/m/Smalltalk_programming_language.html
Smalltalk programming language
Smalltalk is a dynamically typed object oriented programming language designed at Xerox PARC by Alan Kay , Dan Ingalls, Ted Kaehler, Adele Goldberg , and others during the . The language was generally released as Smalltalk-80 and has been widely used since. Smalltalk is in continuing active development, and has gathered a loyal community of users around it. Smalltalk has been a great influence on the development of many other computer languages, including: Objective-C , Actor, Java and Ruby (the latter one to such an extent that many Smalltalkers consider Ruby to be Smalltalk with a different syntax). Many software development ideas of the Class-Responsibility-Collaboration card ) and came from the Smalltalk community, such as design patterns (as applied to software), Extreme Programming and refactoring . Among Smalltalkers is Ward Cunningham , the inventor of the WikiWiki concept. Top
Smalltalk's big ideas
Smalltalk's big ideas include:
  • "Everything is an object ." Strings, integers, booleans, class definitions, blocks of code, stack frames, memory are all represented as objects. Execution consists of sending messages between objects. Any message can be sent to any object; the receiver object determines whether this message is appropriate and what to do to process it. Everything is available for modification. If you want to change the IDE, you can do it in a running system, without stopping to recompile and restart. If you want a new control construct in the language, you can add it. In some implementations, you can change even the syntax of the language, or the way the garbage collection works.

4. Smalltalk Programming/Syntax - Wikibooks, Collection Of Open-content Textbooks
Smalltalk has one of the simpler syntaxes of any computer language. There are 3 different types of method call unary, binary, and n-way keyword.
http://en.wikibooks.org/wiki/Smalltalk_Programming/Syntax
Smalltalk Programming/Syntax
From Wikibooks, the open-content textbooks collection Smalltalk Programming This page may need to be reviewed for quality. Jump to: navigation search Smalltalk has one of the simpler syntaxes of any computer language. There are 3 different types of method call - unary, binary, and n-way keyword. The rules for precedence scan from left to right for each of those 3 flavors of method calling. Precedence can be overridden with parenthesis, as usual. 1. Unary method. Can be as simple as display redrawEverything. display looks up it's method to do an unqualified redraw, and does it. Unary methods and the object they act on are both alphanumeric words that don't end in a colon. Whenever you see multiple such words in a row, the one on the left is the object, the rest are a gauntlet of method calls. 2. Binary method. In myNumber + 5. , the object myNumber is told to look up the method , and run it with 5 as the argument. Here, the argument is being discarded, the assignment will come later. Binary method names are 1 or 2 special characters; they only exist for the usual set of suspects in math and logic equations. There is no special precedence for math operators, you must either state them in the order wanted, or use parenthesis. 3. Keyword method. This is where smalltalk diverges from most other programming languages. In

5. Smalltalk Programming Language
Smalltalk programming language. Smalltalk is a dynamically typed object oriented programming language designed at Xerox PARC by Alan Kay, Dan Ingalls, Ted Kaehler, Adele
http://www.fact-index.com/s/sm/smalltalk_programming_language.html
Main Page See live article Alphabetical index
Smalltalk programming language
Smalltalk is a dynamically typed object oriented programming language designed at Xerox PARC by Alan Kay , Dan Ingalls, Ted Kaehler, Adele Goldberg , and others during the . The language was generally released as Smalltalk-80 and has been widely used since. In spite of its 20-year history, it is widely believed that the overall programming experience and productivity of Smalltalk is still unsurpassed by other development environments. Smalltalk is in continuing active development, and has gathered a loyal community of users around it. Smalltalk has been had a great influence on the development of many other computer languages, including: Objective-C , Actor, Java and Ruby . Many software development ideas of the came from the Smalltalk community, such as Design Patterns (as applied to software), Extreme Programming and Refactoring . Among Smalltalkers is Ward Cunningham , the inventor of the WikiWiki concept. Smalltalk's big ideas include:
  • "Everything is an object ." Strings, integers, booleans, class definitions, blocks of code, stack frames, memory are all represented as objects.

6. Category:Smalltalk Programming Language Family - Wikipedia, The Free Encyclopedi
This category lists those dialects of the Smalltalk programming language known to Wikipedia.
http://en.wikipedia.org/wiki/Category:Smalltalk_programming_language_family
Category:Smalltalk programming language family
From Wikipedia, the free encyclopedia Jump to: navigation search This category lists those dialects of the Smalltalk programming language known to Wikipedia
Pages in category "Smalltalk programming language family"
The following 27 pages are in this category, out of 27 total. This list may not reflect recent changes ( learn more
A
B
D
E
F
G
I
L
N
P
R
S
S cont.
V
Retrieved from " http://en.wikipedia.org/wiki/Category:Smalltalk_programming_language_family Categories Programming language families Object-oriented programming languages Personal tools Namespaces Variants Views Actions Search Navigation Interaction Toolbox Print/export Languages

7. Smalltalk Programming Language - Discussion And Encyclopedia Article. Who Is Sma
Smalltalk programming language. Discussion about Smalltalk programming language. Ecyclopedia or dictionary article about Smalltalk programming language.
http://www.knowledgerush.com/kr/encyclopedia/Smalltalk_programming_language/

8. Smalltalk_programming_language Synonyms, Smalltalk_programming_language Antonyms
No results found for smalltalk_programming_language Please try spelling the word differently, searching another resource, or typing a new word.
http://thesaurus.com/browse/Smalltalk_programming_language

9. Smalltalk - Wikipedia, The Free Encyclopedia
Categories Classbased programming languages Dynamically typed programming languages Object-oriented programming languages Smalltalk programming language family
http://en.wikipedia.org/wiki/Smalltalk
Smalltalk
From Wikipedia, the free encyclopedia Jump to: navigation search This article is about the programming language. For other uses, see Small talk (disambiguation) Smalltalk
Smalltalk-80: The Language and its Implementation , a.k.a. the "Blue book", a seminal book on the language Paradigm object-oriented Appeared in (development began in 1969) Designed by Alan Kay Dan Ingalls Adele Goldberg Developer Alan Kay, Dan Ingalls, Adele Goldberg, Ted Kaehler, Scott Wallace, and Xerox PARC Stable release Smalltalk-80 version 2 (1980) Typing discipline dynamic Major implementations Pharo ... Dolphin Smalltalk , VA Smalltalk Influenced by Lisp Simula Logo Sketchpad Influenced Objective-C Self Java PHP ... Smalltalk at Wikibooks Smalltalk is an object-oriented dynamically typed reflective programming ... language . Smalltalk was created as the language to underpin the "new world" of computing exemplified by "human–computer symbiosis." It was designed and created in part for educational use, more so for constructionist learning , at the Learning Research Group (LRG) of Xerox PARC by Alan Kay Dan Ingalls Adele Goldberg Ted Kaehler ... Scott Wallace , and others during the 1970s.

10. LITERATE SMALLTALK PROGRAMMING USING HYPERTEXT - Microsoft Academic Search
Authors K. Osterbye. Citations 6 The following links allow you to view and download full papers. These links are maintained by other sources not
http://academic.research.microsoft.com/Paper/1004776.aspx
var SiteRoot = 'http://academic.research.microsoft.com'; SHARE Author Conference Journal Year Look for results that meet for the following criteria: since equal to before
Publication
LITERATE SMALLTALK PROGRAMMING USING HYPERTEXT Edit LITERATE SMALLTALK PROGRAMMING USING HYPERTEXT Citations: 7 K. Osterbye Journal: IEEE Transactions on Software Engineering - TSE View or Download The following links allow you to view and download full papers. These links are maintained by other sources not affiliated with Microsoft Academic Search. Reference

11. Pearson - On To Smalltalk - Patrick Henry Winston
By Patrick Henry Winston; Addison-Wesley, 1998, ISBN 0201498278. Each easily understood section adds new abilities to a short, representative Smalltalk program. Addison-Wesley
http://www.pearsonhighered.com/educator/academic/product/0,,0201498278,00+en-USS

12. Smalltalk.org™ |  Main
In addition, the event will host a Smalltalk programming contest. As in other editions, well known personalities from the international community will attend the conference.
http://www.smalltalk.org/main/
smalltalk dot org
Community and industry meet inventing the future. Main About Contact us Donations ... Linking Smalltalk What is Smalltalk? Learning History People ... Doit! Community Applications Articles Article Series Blogs ... Web Ring Versions All Versions
Smalltalk Standard
Extending Smalltalk
Open Source Squeak Smalltalk GNU Smalltalk Little Smalltalk Java Smalltalk ... Squat Smalltalk
Free Smalltalk/X StrongTalk
Commercial Ambrai Smalltalk VisualWorks ObjectStudio VisualAge Smalltalk ... OOVM Embedded
Databases Gemstone/S
Proprietary LSW Vision-Smalltalk
In Development Slate Smalltalk Zoku Smalltalk
VSE Smalltalk
Smalltalk Express ... Smalltalk-80 Welcome to Smalltalk.org. Video Categories
Absolute Beginner ESUG 2010 Barcelona Spain Alan Kay Applications Basics Classes Getting The Message The Essentials of Message-Oriented Programming with Smalltalk By Alan Lovejoy
Smalltalk is a foundational programming language that is based on pervasive message passing , pervasive dynamic strong typing , pervasive reflection and pervasive object orientation Message passing message passing Full Article...

13. Smalltalk_(programming_language) | Define Smalltalk_(programming_language) At Di
Copy paste this link to your blog or website to reference this page.
http://dictionary.reference.com/browse/Smalltalk_(programming_language)

14. XOTclIDE Interactive Developer System For XOTcl And Tcl
XOTcl Integrated development environment, inspired by Smalltalk programming environments syntax highlight and checking, version control, test framework. Open source, GPL
http://www.xdobry.de/xotclIDE/
Home Downloads Manuals
XOTclIDE. Integrated Development Environment for XOTcl and Tcl
News
Version 0.84 released. Syntax checker recognize lassign. Scipt editor plug in was improved. small bug fix in debugger. Version 0.83 released. Adapted for XOTcl1.6. Some small improvements and bug fixes. Version 0.81 released. Adapted for XOTcl1.5 (slot sub objects are ignored by importing). Bug fix that can occur by moving objects between components under version control. Version 0.80 released. Methods views are synchronized. IDE warns the user, if unsaved changes are about losing. Small bug fixes und GUI improvements. Version 0.78 released. So items from users wishlist was implemented. mostly gui usablity improvemetns .Thanks to Brian Theado for pathes, ideas and testing Version 0.77 released. XOTclIDE can now use Metakit as database for version control. Small usability improvements. Speciall writable XOTclIDE Kit self-contained version control database available XOTclIDE on 5. European Tcl Meeting. Slides Version 0.76 released. Several bugs in handling of tcl procs fixed. Tcl procs to XOTcl converter improved. Syntax checker and code completion recognize lset and variable commands.
XOTclIDE: simple, highly flexible, integrated

15. Monty Kamath's GoodStart - Smalltalk Programming Language Information
This is a Smalltalk Programming Language Advocacy site. It is all about the Smalltalk programming language. Whether you are an experienced Smalltalker or new to Smalltalk, this
http://www.goodstart.com/
Monty Kamath's GoodStart Smalltalk Programming Site Smalltalk Smalltalk
Jobs

Who Uses It?

Environments

Books
...
Polls
Monty
About Monty

Software
Welcome To Smalltalk! This site is all about the Smalltalk programming language. If you are new to Smalltalk, I welcome you to a wonderful programming language and community. If you are an experienced Smalltalker I hope you find what you are looking for on this site. I created this site in 1996 with two goals in mind. First, I wanted to create a central repository for Smalltalk information - a place where people could go to learn about Smalltalk. Second, I wanted to help keep Smalltalk programmers connected with each other and with developments in the community. If you don't find what you are looking for or if you have suggestions for the site, please feel free to contact me - Monty Monty's Friend Sites: Colic Gripe Water Colic Support Group Powered by Pharo Comanche Smalltalk Server Pages

16. Homework3 Introductory Smalltalk Programming
Com S541—Programming Languages 1 September 24,2003 Homework3 Introductory Smalltalk Programming Due problems 13 and 5 on October 2,2003; 6-10 on October 9,2003.
http://www.eecs.ucf.edu/~leavens/ComS541Fall03/homework/hw3-smalltalk.pdf

17. Smalltalk
Smalltalk Wikipedia, the free encyclopedia. Smalltalk is a pure object-oriented programming language, meaning that, unlike Java and C , en.wikipedia.org
http://www.kosmix.com/topic/Smalltalk

18. Learning Smalltalk
Our overall objective is to convey the ease and flexibility of Smalltalk programming to those who may be used to programming in more traditional languages and environments.
http://www.mactech.com/articles/mactech/Vol.10/10.10/LearningSmalltalk/
document.write(document.title);
document.write(document.title);
ADVERTISEMENT
Volume Number: Issue Number: Column Tag: Smalltalk
Learning Smalltalk by Examples
Smalltalk - coming of age and offering an alternative to C and C++
By R. L. Peskin and S. S. Walther, Landgrove Associates, Flemington, New Jersey Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.
The Wire Project
Wire Tool Environment
Smalltalk Programming
A Smalltalk Browser A class has a data structure that contains information (data) about its state. These data are objects called instance variables. A class also contains references to behaviors (methods) that let you change or simply read its instance variables. Typically an object is a concrete instantiation, that is, member of a class. An object is a specific instance of a class, and has its own set of instance variables. Sometimes classes have behavior and data sufficient to make them do concrete things on their own without instances. Normally a class functions as a template; an object belonging to that class has real values for the class data.
The Wire Model
WireList Browser A Console Window Now we can test out these new methods in a Console window.

19. Smalltalk Programming Language Family | Bukisa Topics
Smalltalk Programming Language Family
http://www.bukisa.com/topics/smalltalk-programming-language-family

20. Squeak / Smalltalk Programming
On Sep 26, 2007, at 318 , YoungJin Lee wrote Hi, I have a question about how to create a Java applet from a Squeak *.pr file. Is there a document explaining how to do it
http://squeak.pbworks.com/Smalltalk-programming

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 1     1-20 of 47    1  | 2  | 3  | Next 20

free hit counter