Geometry.Net - the online learning center
Home  - Basic_S - Sather Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 2     21-40 of 44    Back | 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  

         Sather Programming:     more detail
  1. Creating Killer Interactive Web Sites: The Art of Integrating Interactivity and Design by Ardith Ibanez, Bernie Dechant, 1997-06
  2. Class-Based Programming Languages: Java, C++, Python, Eiffel, Smalltalk, Ruby, Simula, Common Lisp, Oberon, Clu, Objective-C, Squeak, Sather

21. Sather-K Definition Of Sather-K In The Free Online Encyclopedia.
Sathe's Astromedical and Cosmic Orientation Research Institute Sather Sather programming language SatherK SATHI SATHICOM Sathish Dhawan Space Centre
http://encyclopedia2.thefreedictionary.com/Sather-K

22. Sather Programming Languages Berkeley University
Sather Programming Languages Berkeley University Economy. Home Sather Sather is an objectoriented programming language. It originated at the University of California, Berkeley
http://www.economicexpert.com/a/Sather.html

23. Answers.com - What Is The Python Programming Language
Characteristics of sather programming language? What kind of programming is python used for? Who was the creator of python program language?
http://wiki.answers.com/Q/What_is_the_Python_programming_language

24. Citations Of The Sather Programming Language Dr - Microsoft
Ubiquitous computing is a challenge for the design of middle ware. The reasons are resource constraints, mobility, heterogeneity, etc., just to name a few.
http://academic.research.microsoft.com/Detail.aspx?entitytype=1&searchtype=5

25. Steve_omohundro Encyclopedia Topics | Reference.com
Stephen M. Omohundro, The Sather Programming Language , Dr. Dobb's Journal, Volume 18, Issue 11, October 1993, p. 42. Stephen M. Omohundro, Geometric Learning Algorithms Physica D
http://www.reference.com/browse/Steve_Omohundro

26. CiteSeerX — Citation Query The Sather Programming Language
CiteSeerX Scientific documents that cite the following paper The Sather programming language
http://citeseerx.ist.psu.edu/showciting?cid=493156

27. The Sather Programming Language" Dr - Microsoft Academic Search
Authors S. M. Omohundro. Citations 15 Author Conference Journal Year
http://academic.research.microsoft.com/Paper/1386318.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
The sather programming language" dr Edit The sather programming language" dr Citations: 15 S. M. Omohundro Published in 1993. Citation More citations Microsoft Research Asia Help ... Privacy Statement Share this on Contribute to Academic

28. Sather Programming Directory, Links. Development, Programmers
Hot Cool . Serkai – The Web Cooperative . AntiSE – The Anti Search Engine . GeoDig – Businesses by Geography . Quali5 – Own a Keyword Forever . Follars – Making
http://eit.in/sw/pd/lang/a_z/s/sather/sather.html

29. Supertyping
5.4. Supertyping. Unlike most other object oriented languages, Sather also allows the programmer to introduce types above an existing class. A supertyping clause (' ' followed by
http://www.gnu.org/software/sather/docs-1.2/tutorial/abstract1308.html
Sather - A Language Tutorial Prev Chapter 5. Abstract Classes and Subtyping Next
5.4. Supertyping
Unlike most other object oriented languages, Sather also allows the programmer to introduce types above an existing class. A supertyping clause ( followed by type specifiers) adds to the type graph an edge from the type being defined to each type in the supertyping clause. These type specifiers may not be type parameters (though they may include type parameters as components) or external types. There must be no cycle of abstract classes such that each class appears in the supertype list of the next, ignoring the values of any type parameters but not their number. A supertyping clause may not refer to SAME If both subtyping and supertyping clauses are present, then each type in the supertyping list must be a subtype of each type in the subtyping list using only edges introduced by subtyping clauses. This ensures that the subtype relationship can be tested by examining only definitions reachable from the two types in question, and that errors of supertyping are localized.You define supertypes of already existing types. The supertype can only contain routines that are found in the subtype i.e. it cannot extend the interface of the subtype.
5.4.1. Using supertyping

30. The Sather Language: Efficient, Interactive, Object-Oriented Programming
It also has a big effect on the feel of Sather programming. Many object oriented languages have only weak typing or no typing at all. Sather, on the other hand, is strongly typed
http://www.icsi.berkeley.edu/~sather/Publications/article.html
The Sather Language: Efficient, Interactive, Object-Oriented Programming
Stephen Omohundro
Dr. Dobbs Journal
Introduction
Sather is an object oriented language which aims to be simple, efficient, interactive, safe, and non-proprietary. One way of placing it in the "space of languages" is to say that it aims to be as efficient as C, C++, or Fortran, as elegant and safe as Eiffel or CLU, and to support interactive programming and higher-order functions as well as Common Lisp, Scheme, or Smalltalk. Sather has parameterized classes, object-oriented dispatch, statically-checked strong typing, separate implementation and type inheritance, multiple inheritance, garbage collection, iteration abstraction, higher-order routines and iters, exception handling, constructors for arbitrary data structures, and assertions, preconditions, postconditions, and class invariants. This article describes the first few of these features. The development environment integrates an interpreter, a debugger, and a compiler. Sather programs can be compiled into portable C code and can efficiently link with C object files. Sather has a very unrestrictive license which allows its use in proprietary projects but encourages contribution to the public library. The original 0.2 version of the Sather compiler and tools was made available in June 1991. This article describes version 1.0. By the time the article appears, the combined 1.0 compiler/interpreter/debugger should be available on "ftp.icsi.berkeley.edu" and the newsgroup "comp.lang.sather" should be activated for discussion.

31. Generator (computer Science) - Definition
In computer science, a generator is a special routine that can be used to control the iteration behaviour of a loop. The concept was invented for the Sather programming
http://www.wordiq.com/definition/Generator_(computer_science)
Generator (computer science) - Definition
In computer science , a generator is a special routine that can be used to control the iteration behaviour of a loop. The concept was invented for the Sather programming language but it has also been incorporated in the Python programming language Generators can only be invoked inside loops. The first time that a generator invocation is reached in a loop, an iterator object is created that encapsulates the state of the generator routine at its beginning, with arguments bound to the corresponding parameters. The generator's body is then executed in the context of that iterator until a special yield action is encountered; at that time, the value provided with the yield action is used as the value of the invocation expression. The next time the same generator invocation is reached in a subsequent iteration, the execution of the generator's body is resumed after the yield action, until a yet another yield action is encountered. In addition to the yield action, execution of the generator body can also be terminated by a finish action, at which time the innermost loop enclosing the generator invocation is terminated.

32. Michael R. Taylor
GNU Sather is the GNU project’s implementation of a compiler for the Sather programming language. I intend to use this blog as a journal of development on GNU Sather.
http://mrt.logiqal.com/
Michael R. Taylor
GNU Sather 1.2.3 Released
Author: michael Jul I released GNU Sather 1.2.3 today. The reason for this release was to migrate the licenses to GPLv3 or later and LGPLv3 or later. Another change in the release is how the INT class is handled on 64-bit systems. The INT class is now 32-bits wide on all systems. I think that a major goal of GNU Sather should be for Sather source to be platform neutral. For instance, an INT will always have the same min and max values no matter what platform it is compiled on. This will eliminate the need for compile-time platform checking like that which is done with C source. New classes will be added to address the new capabilities of 64-bit processors. These classes will be emulated on 32-bit processors so that they behave the same at the cost of extra processor cycles.
  • 18 Comments Filed under: GNU Sather
  • GNU Sather Website Update
    Author: michael Jul I updated the GNU Sather website today.  It now uses the new GNU project homepage style.  It looks much more modern now than the older-style GNU webpages.  Check it out here
  • 28 Comments Filed under: GNU Sather
  • Maintaining GNU Sather
    Author: michael Jun I intend to use this blog as a journal of development on GNU Sather.  It will probably branch out to contain other GNU, programming, engineering, and technology items as well.

    33. 2007 June
    Today, I was appointed the new maintainer of GNU Sather. This is pretty exciting, because I like the Sather programming language. It’s not very popular, but it has a lot of
    http://mrt.logiqal.com/?m=200706

    34. Steve Omohundro - Wikipedia, The Free Encyclopedia
    Stephen M. Omohundro, The Sather Programming Language , Dr. Dobb's Journal, Volume 18, Issue 11, October 1993, p. 42. Stephen M. Omohundro, Geometric Learning Algorithms Physica
    http://en.wikipedia.org/wiki/Steve_Omohundro
    Steve Omohundro
    From Wikipedia, the free encyclopedia Jump to: navigation search Stephen M. Omohundro is a computer scientist specializing in artificial intelligence. He graduated from Stanford University with degrees in Physics and Mathematics . He received a Ph.D. in Physics from the University of California, Berkeley and published the book Geometric Perturbation Theory in Physics based on his thesis. At Thinking Machines Corporation , he developed Star Lisp , the first programming language for the Connection Machine , with Cliff Lasser . From 1986 to 1988, he was an Assistant Professor of Computer science at the University of Illinois at Urbana-Champaign and cofounder of the Center for Complex Systems Research. He subsequently joined the International Computer Science Institute (ICSI) in Berkeley, California , where he led the development of the object-oriented programming language Sather in 1990 and developed novel neural network and machine learning algorithms. He subsequently was a Research scientist at the NEC Research Institute , working on machine learning and computer vision, and was a co-inventor of U.S. Patent 5,696,964, "Multimedia Database Retrieval System Which Maintains a Posterior Probability Distribution That Each Item in the Database is a Target of a Search"

    35. Sather Programming Languages For The Java Virtual Machine JVM And Javascript
    Sather is an object oriented language designed to be simple, efficient, safe, flexible and nonproprietary. One way of placing it in the “space of languages” is to say that
    http://www.is-research.de/info/vmlanguages/sather/

    36. C++, Development Tools, Java, Open Source, Web... The World Of Software Developm
    Enabling People and Organizations to Harness the Transformative Power of Technology
    http://www.drdobbs.com/documents/ddj9415c/
    Subscribe
    Newsletters

    RSS

    Log in
    ... Go Parallel
    Channels

    INFO-LINK
    Sorry, the requested page is not found.
    Recent Articles
    Most Popular
    Stories Blogs
    Video
    View All Videos
    Most Recent Premium Content
    Whitepapers
    Enabling People and Organizations to Harness the Transformative Power of Technology
    UBM TechWeb Reader Services

    37. Sather Tower Sather Gate Guides, Tutorials
    Sather Tower Sather Gate Guides, Tutorials Canadian Gateway, Business Guides, Entertainment, Travel. Listing and reviews of Canadian Web sites.
    http://www.masterliness.com/a/Sather.programming.language.htm
    var GLB_RIS='http://www.masterliness.com';var GLB_RIR='/cincshared/external';var GLB_MMS='http://www.masterliness.com';var GLB_MIR='/site/image';GLB_MML='/'; document.write(''); document.write(''); document.write(''); document.write(''); Science People Non User Locations ... Timeline A2('N'); Index: A B C D ... Z A3('s','.','htm','','N');
    Home
    Sather is an object-oriented programming language . It originated at the University of California, Berkeley , circa . It supports garbage collection and generics by subtypes It is probably best to see it as an Object-oriented language, with many ideas borrowed from Eiffel . Even the name is inspired by Eiffel; the Sather Tower is a recognizable landmark at Berkeley. Sather also takes inspiration from other programming languages and paradigms. There are some features normally only found in functional programming languages. The original Berkeley implementation is now maintained by many people, not all at Berkeley, and has been adopted by the Free Software Foundation . There are at least two other implementations: Sather-K from the University of Karlsruhe , and Sather-W from the University of Waikato Sather is implemented as a compiler to C . With optimizations in the C compiler, Sather can perform better than the corresponding C++ code, and the generated C code can always be optimized by hand.

    38. SATH - What Does SATH Stand For? Acronyms And Abbreviations By The Free Online D
    SATFD SATFES SATFY SATG SATGA SATH Sathanas Sathe's Astromedical and Cosmic Orientation Research Institute Sather Sather programming language SatherK
    http://acronyms.thefreedictionary.com/SATH

    39. References
    The Sather programming language. Dr. Dobb's Journal, 18(11)4248, October 1993. S+86 C. Schaffert et al. An introduction to Trellis/Owl. In OOPSLA '86 Conference Proceedings
    http://www.pmg.csail.mit.edu/papers/popl97/node29.html
    Up: Parameterized Types for Java Previous: JVM Extensions
    References
    J. Bank, B. Liskov, and A. Myers. Parameterized types and Java . Technical Memo MIT/LCS/TM-553, Massachusetts Institute of Technology, 1996.
    Luca Cardelli. A semantics of multiple inheritance. Information and Computation , 76:138-164, 1988. Also in Readings in Object-Oriented Database Systems, S. Zdonik and D. Maier, eds., Morgan Kaufmann, 1990.
    CCH+89
    Peter Canning, William Cook, Walter Hill, John Mitchell, and Walter Olthoff. F-bounded polymorphism for object-oriented programming. In Proceedings of the Conference on Functional Programming Languages and Computer Architecture , pages 273-280, 1989.
    M. Day, R. Gruber, B. Liskov, and A. C. Myers. Subtypes vs. where clauses: Constraining parametric polymorphism. In OOPSLA '95 Conference Proceedings , pages 156-158. ACM Press, October 1995.
    Dinesh Katiyar, David Luckham, John Mitchell, and Sigurd Melda. Polymorphism and subtyping in interfaces. ACM SIGPLAN Notices , 29(9):22-34, August 1994.
    L+81
    B. Liskov et al. CLU reference manual. In Goos and Hartmanis, editors

    40. [Mesa-dev] [Mesa-bug] A Memory Bug?
    Good evening! A week ago, I reported a memory bug in Mesa3.1. Since I use Mesa from within the Sather programming language, I found it difficult to provide you with a small
    http://www.mail-archive.com/mesa-bugs@mesa3d.org/msg00127.html
    mesa-bugs
    [Mesa-dev] [Mesa-bug] A memory bug?
    Jean-Pierre Dussault
    Sat, 2 Jan 1999 18:17:06 -0800 http://lists.mesa3d.org/mailman/listinfo/mesa-bug http://lists.mesa3d.org/mailman/listinfo/mesa-dev

    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 2     21-40 of 44    Back | 1  | 2  | 3  | Next 20

    free hit counter