Geometry.Net - the online learning center
Home  - Computer - Java
e99.com Bookstore
  
Images 
Newsgroups
Page 6     101-120 of 201    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | 11  | Next 20

         Java:     more books (100)
  1. Building Java Programs: A Back to Basics Approach by Stuart Reges, Martin Stepp, 2007-02-25
  2. Java 1.5 Tiger: A Developer's Notebook (Java 5,Version 1.5) by David Flanagan, Brett McLaughlin, 2004-06-25
  3. Professional Java JDK 6 Edition by W. Clay Richardson, Donald Avondolio, et all 2007-01-10
  4. Java 2: The Complete Reference, Fifth Edition by Herbert Schildt, 2002-08-13
  5. Just Java(TM) 2 (6th Edition) (Sun Microsystems Press) by Peter van der Linden, 2004-07-01
  6. Oracle Database Programming Using Java and Web Services by Kuassi Mensah, 2006-07-14
  7. Java Programming: From Problem Analysis To Program Design 3e by D.S. Malik, 2007-02-27
  8. Java Number Cruncher: The Java Programmer's Guide to Numerical Computing (Prentice Hall PTR Oracle Series) by Ronald Mak, 2002-11-08
  9. Performance Analysis for Java(TM) Websites by Stacy Joines, Ruth Willenborg, et all 2002-09-20
  10. C# for Java Developers by Allen Jones, Adam Freeman, 2002-08-14
  11. Scripting in Java: Languages, Frameworks, and Patterns by Dejan Bosanac, 2007-08-19
  12. Java How to Program, Fifth Edition by Harvey M. Deitel, Paul J. Deitel, 2002-12-16
  13. Spring in Action by Craig Walls, Ryan Breidenbach, 2007-08-16
  14. Schaum's Outline of Programming with Java by John R. Hubbard, 2004-03-19

101. Java: Un Linguaggio Di Programmazione
Corso per iniziare a programmare in questo linguaggio diviso in pi¹ capitoli.
http://telemat.die.unifi.it/book/Internet/Java/java-i.htm
Java: un linguaggio di programmazione per applicazioni multimediali e multiambiente
a cura di Francesco Benvenuti
INDICE
  • JAVA: UN LINGUAGGIO DI PROGRAMMAZIONE PER APPLICAZIONI MULTIMEDIALI E MULTIAMBIENTE
  • LA MACCHINA VIRTUALE JAVA
  • IL LINGUAGGIO JAVA APPENDICE
  • 102. JCreator — Java IDE
    JCreator is a powerful Free IDE for java. Providing the user with a wide range of functionality. News. JCreator is a powerful IDE for java.
    http://www.jcreator.com/
    News Main Page Company About JCreator Features Screenshots ... Latest update JCreator is a powerful IDE for Java. JCreator provides the user with a wide range of functionality such as : Project management, project templates, code-completion, debugger interface, editor with syntax highlighting, wizards and a fully customizable user interface. With JCreator you can directly compile or run your Java program without activating the main document first. JCreator will automatically find the file with the main method or the html file holding the java applet, then it will start the appropriate tool. JCreator is written entirely in C++, which makes it fast and efficient compared to the Java based editors/IDEs. Professionally designed to meet windows interface guidelines, JCreator users can expect a familiar and intuitive user interface. 07 April 2004 : JCreator 3.10 has been released.
    19 Jan 2004 : Maintenance release for v3.00

    103. Game Applets
    Original java games including Rush Hour, Nibbly Ping Pong. Updated regularly.
    http://www.G5.dk
    My game applets Choose Trouble Car Game Ping Pong Nibbly Skeet Shooting
    My other applets Choose Graph G5 Chat Wizax button Scroll Up Scroll Counter
    Author
    Welcome to my applet page. Here I publish some of the things I make. If you find anything you can use - please send me an URL - so I can se the page with my applet - I would love that!.
    If you have a comment, suggestion or just want to say hello - please sign my guestbook.
    An other pages I am engaged in is S-Pro - a commercial site. Have a look if you like.
    Best Regards
    Karsten
    At last an update :-) - My Graph applet in a beta state Trouble Underground ready for download Beta of my new game Trouble Underground Check out my new G5 Chat .. pure java :-) highscore RESET! - in the future every month around the 1st. My game Skeet Shooting available for download 40.000 highscore entries in my databases - ALL RESET to ZeRo today!. Database problems .. more than 13000 entries called for some adjusting.. Wow more than 3000 highscore entries in my database. My new game Skeet Shooting (beta) online !

    104. The JavaScript Planet - Collection With 371 Free JavaScripts!
    Other resources on the web. Freewarejava.com Free java applets for your site! CodingForums.com- The most popular javaScript forum on the WWW.
    http://www.geocities.com/SiliconValley/7116/
    window.onerror=new Function("return true")
    The JavaScript Planet!
    There are now JavaScripts available. JavaScript categories (powered by JavaScript Kit JavaScript clocks, calendars, and timers
    Sub Categories: Calendars Countdown Special effects with background and document Scrollers ... IE 4.x DHTML script categories (powered by Dynamic Drive Document effects Scrollers General Image effects ... In-house JavaScripts Other resources on the web Freewarejava.com - Free Java applets for your site! CodingForums.com The most popular JavaScript forum on the WWW. Get live help on any aspect of scripting or web building. WELCOME to The JAVASCRIPT PLANET which is a page where I plan to publish as many JavaScripts (and maybe some other cool stuff like VRML, Animated GIFs) as possible, please contribute a JavaScript Questions? Comments? Email me

    105. Using The Java Native Interface
    Using JNI, few examples illustrating the usefulness of this feature
    http://www.acm.org/crossroads/xrds4-2/jni.html
    Using The Java Native Interface
    by S. Fouzi Husaini
    Abstract:
    The Java Native Interface (JNI) comes with the standard Java Development Kit (JDK) from Sun Microsystems. It permits Java programmers to integrate native code (currently C and C++) into their Java applications. This article will focus on how to make use of the JNI and will provide a few examples illustrating the usefulness of this feature. Although a native method system was included with the JDK 1.0 release, this article is concerned with the JDK 1.1 JNI which has several new features, and is much cleaner than the previous release. Also, the examples given will be specific to JDK 1.1 installed on the Solaris Operating System.
    Motivation
    Recently I found myself in the position of needing to place a user-friendly Java Graphical User Interface (GUI) on a very bland, keyboard input menu-driven program that I had written in C. The C program was just a wrapper which made calls to a very rich C library. Having had some experience with Java, I knew the basics of creating a simple GUI (creating a frame and adding panels to the frame consisting of buttons, text fields etc.). I needed to find a way I could interface the C program and the Java GUI. I was certainly not about to rewrite the meat of the C program just for the sake of the interface. Then I came to know about the Java Native Interface, or JNI, which allows Java programmers to make calls to native code.
    What is Different About the Native Interface From JDK 1.0 to 1.1?

    106. Download Java Software
    Windows Automated Downloads We encountered an issue while trying to automatically install java™ software onto your machine. As
    http://www.java.com/en/download/windows_automatic.jsp

    107. Java
    Over 200 applets for middle school students, high school students, college students, and all who are interested in mathematics. Interactive programs and a lot of animation that helps with understanding mathematical ideas.
    http://www.ies.co.jp/math/java/index.html
    The material presented in the following pages are for middle school students, high school students, college students, and all who are interested in mathematics. You will find interactive programs that you can manipulate and a lot of animation that helps you to grasp the meaning of mathematical ideas. Attention: Manipula Math Applets and CabriJava need a JDK 1.1 compliant browser like Microsoft Internet Explorer 4.5/5.0 on all platforms.
    Collection of 279 Math Applets
    91 applets. 25 applets. 64 applets. 29 applets. 23 applets. 9 applets. 38 applets.
    Manipula Math Products
    Checks are acceptable for site/network license.
    Manipula Math Java Lesson
    If you would like to create java applets for math education, a good starting point is here. Manipula Math Java Lesson introduces basic techniques to create simple java applets.
    Cabri Java
    IES had a presentation ( Cabri International Project ) at ICME9 in Tokyo. The figure files used in the presentation can be download from the linked pages. Download Free Applets. 9 applets are included in the free sample file. ( zipped file ) Guest book
    Presentation files (used at Cabri World 2001)
    KOBAYASHI Ichiro (IES) had a presentation at Cabri World 2001. You can see the contents and some Cabri figures of the

    108. Java.oreilly.com -- Welcome To The O'Reilly Java Center -- Computer Books, Java
    O Reilly is a leader in technical and computer book documentation for java programming. The center features java books, articles, resources and news.
    http://java.oreilly.com/

    O'Reilly Home
    Press Room Jobs Resource Centers Perl Java Python C/C++ ... Enterprise Development Book Series Hacks Head First Cookbooks In a Nutshell ... Developer's Notebooks Publishing Partners No Starch Press Paraglyph Press Pragmatic Bookshelf Syngress Publishing Online Publications LinuxDevCenter.com MacDevCenter.com WindowsDevCenter.com ONDotnet.com ... Scripts
    Special Interest Events Meerkat News Ask Tim tim.oreilly.com ... Open Books Special Sales Academic Corporate Government Inside O'Reilly About O'Reilly International Advertise with Us Contact Us ... Bookstores
    Traveling to
    a tech show? Hotel Search
    Hotel Discounts

    Discount Hotels

    Chicago Hotels
    ...
    Enroll
    in the new .NET Certificate Series at the O'Reilly Learning Lab and save over $500.
    Featured Book Better, Faster, Lighter Java In this latest O'Reilly Java book, the authors argue that the old heavyweight architectures, such as WebLogic, JBoss, and WebSphere, are unwieldy, complicated, and contribute to slow and buggy application code. As an alternative means for building applications, the authors present two "lightweight" open source architectures, Hibernate and Spring, that can help you create enterprise applications that are easier to maintain, write, and debug, and are ultimately much faster. The Preface and two Sample Chapters are available free online.

    109. Travelling To Indonesia (East Java)
    East java has a variety of attractions, from temple sites to scenic beaches, a sandsea, highland-lakes, volcanoes, marine gardens and wildlife reserves.
    http://www.emp.pdx.edu/htliono/ej.html
    EAST JAVA
    East Java has a variety of attractions, from temple sites to scenic beaches, a sand-sea, highland-lakes, volcanoes, marine gardens and wildlife reserves. As the power in Central Java declined around the tenth century, powerful kingdoms rose in East Java to fill the vacuum. Between 1055 and 1222, the kingdom of Kediri prospered and expanded. During the reign of king Erlangga both East Java and Bali enjoyed a lucrative trade with the surrounding islands when their arts flourished. Parts of the Mahabarata epic were translated and reinterpreted to conform closer to the East Javanese outlook and philosophy, and it was from this era that East Java inherited much of its treasure of temple art. In 1292 the Majapahit dynasty began an empire that was to dominate the entire archipelago, the Malay peninsula and part of the Philippines. Majapahit also established profitable trade relations with China and other countries of the South East Asian region. Today the open-air amphi theater at Pandaan tells some of the stories of this glorious past. Aided by the Java Ballet performances against a backdrop of distant volcanoes, any traveler will be easily enthralled by the East Java experience, capturing the spirit of the province's culture and scenery. Its capital, Surabaya is second to Jakarta in size, population and commerce. East Java is also the most industrialized province in the nation. Its economy is based on agriculture, fishery, oil industries, coffee, mangoes and apples.

    110. THE REFERENCE TABLE #Computer_Geeks Chat
    java chat to connect you with other computer geeks
    http://jayne.rockdalenet.com/chat.htm
    IRC Chat with
    When applet finishes loading, click on the plug in the upper left to get the login screen.
    Please Be Patient Because the People in #computer_geeks are often at work and look at the screen periodically to see if anyone has spoken. To get their attention, say their names! Join the mailing list ADD URL Mindy's Bio WebRings

    111. INteresting JAVA Applets
    java Applets. The Statlets Home Page This collection of of java applets comes from NWP Associates, Inc. Datasets up to 100 rows, 10
    http://www.stat.duke.edu/sites/java.html
    Java Applets
    The Statlets Home Page
    This collection of of Java applets comes from NWP Associates, Inc. Datasets up to 100 rows, 10 columns can be analyzed for free; anything larger requires a subscription.
    Distributions
    Histograms
    Normal Approximation to Binomial
    Normal Density
    The T Distribution ...
    Let's Make a Deal Game
    Statistics
    Guide to basic stats labs
    ANOVA
    Confidence Intervals
    Regression ...
    Statiscope Summarizing data
    T-test
    Simple Least-Squares Regression
    Psychological Statistics (scatterplots, regression, discriminant analysis)
    Descriptive Statistics
    Multinomial Distributions
    Models
    Triogram Models
    Examples
    Epidemic Study
    Survival Analysis Example
    An Ising Model
    Other
    Interactive Quadratic Surface rendering
    Teaching Applets
    Statistical Java
    Contributors:
    Hossein Arsham , University of Baltimore
    Mikael Bonnier , Lunds Universitet
    Paul Flavin
    Charlie Geyer , U Minnesota
    Mark Hansen
    David Lane , Rice University
    Bryan Lewis , Kent State University
    Gary H. McClelland , University of Colorado
    Robert McCulloch , University of Chicago
    Balasubramanian Narasimhan , Stanford University
    Tony Rossini , U of South Carolina
    Todd Ogden , U of South Carolina
    David W. Stockburger

    112. SilverMoon Coffee Company
    Specializing in gourmet coffees, clubs, Stirling syrups, H S teas, chai, and full lines of coffee and espresso equipment for commercial or home use.
    http://www.dailyjava.com

    Argenta SAE2
    with dome Silvermoon Coffee Company
    , a division of The Daily Java, is dedicated to supplying wholesale and now retail customers with award-winning products and the highest quality equipment. What started as a small equipment and coffee business, has exploded into a "one-stop-shop" of products and equipment for our wholesale customers. Due to the overwhelming enthusiasm for our products; we have expanded our services to the retail user on-line. From our product-line we offer everything the java junkie would want. With our coffees, we use only the highest quality beans from around the world. Where as most coffee roasters only provide two (sometimes only one) varietals in their "blends", we often use three or more to produce the ultimate cup of coffee. Whether you want the light smooth taste of a Colombian Supremo ( single origin ) or the rich, full flavor of an Indonesian/Central American French Roast ( blends ), we can provide it. For the espresso coinsurer, we have our Seven Bean Ottimo blend roasted to a mild perfection in the Northern Italian style. And for

    113. JamminJava.com
    Magical Playing With the Light is an early contender for one of the best albums of 2004. Check out Jammin java s weekly clubs and children s programs!
    http://www.jamminjava.com/
    jamminjava.com
    calendar

    menu

    the venue

    recording studio
    ...
    contact us

    Enter your email address to receive our weekly concert email:
    by jamminjava.com
    CITIZEN COPE BAND 6/3

    THE WAYBACKS 6/10

    MELISSA FERRICK 6/12
    Check out the review of the Brindley Brothers new CD in the Washington Post here . "Magical...[Playing With the Light] is an early contender for one of the best albums of 2004." Check out Jammin' Java's weekly clubs and children's programs! Check out the article in the Washington Post about Live Recordings at Jammin' Java! Read it here Vote for the artists you want to see come to Jammin' Java! Stage Right Studio at Jammin' Java's SPRING SPECIAL: Book 8hrs of studio time and get 2 FREE! Email Luke for details. "certainly the classiest music hall/recording studio/music school/coffeehouse in the area..." - THE WASHINGTON POST Check out the article about Jammin Java in the Washington Post m u s i c t h i s w e e k :
    Mon. OPEN MIC Tue.

    114. Welcome To EJobShop, Your Source For Java Resources
    Provides distributed java development and testing services.
    http://www.ejobshop.com/
    Your Java WWWorkforce
    Since 1998 our mission has been to provide high quality Java design and development services. Our specialty is efficiently executing Java projects remotely through experienced Independent Contractors (both individuals and teams).
    eJobShop Can:
    Reduce your peak-load resource crunches Quickly locate hard-to-find Java expertise Relieve your primary developers of less-critical jobs Test your existing code across multiple platforms
    We have two Goals:
  • To provide our Customers with the broadest selection of appropriate resources for their specific projects, and use the best of these resources to complete the projects in the most efficient, personalized, and cost-effective manner.
    See Testimonials page for comments from customers, or review a list of sample projects
    To provide independent experienced Java developers with opportunities for part-time web-based work through a no-hassle, personal and professional process.
    See IC Testimonials page for comments from developers.
  • If you are in need of Java d evelopment services, please review our

    115. Java Coffee Break - Your Free Guide To The World Of Java Programming, Packed Ful
    Beginner s Guide to java. BeginnersNever programmed in java before? Not sure where to start? You ll learn how to compile and run simple java applications.
    http://www.javacoffeebreak.com/
    See the latest Java books

    The Coffee Break
    Your free guide to learning the Java™ programming language
    Beginning Java
    Java 101 Inside-Java Advanced Java ... Free Email Menu Free web-based Mail!
    Learning Java
    Articles
    Lessons

    FAQ's

    Books
    ...
    Talk Java!
    Using Java Applets
    JavaBean™ examples

    Servlets
    Resources ... Discuss Java Welcome to the Coffee Break! Feel free to browse around and learn more about the Java programming language. Never done Java programming before? Not sure what Java is all about? Learn exactly what is Java and how to write applets and program in the Java language . Experienced developers start here, and with our articles and FAQs
    May 2002
    ISSN 1442-3790 FREE BOOK : Jan Newmarch's Guide to JINI Technologies If you're shocked by the lack of good books on Jini™, and their prices, then have we got a deal for you! Jan Newmarch's Guide to JINI Technologies is a free book, published under the OPL license, which covers Jini technology in great detail. This free book is available to read online or download at your lesiure. I want my free book on Jini Author interview : Fields and Kolb, authors of Web Development with JavaServer Pages

    116. Seattle Java™ Users Group
    Washington group information, includes meeting archives, directions, mailing list, and classifieds.
    http://www.seajug.org/

    Wiki
    Members Mailing Lists Meeting Notes ... Java Jobs Welcome To SeaJUG
    What:
    Securing Your Web Applications Who: IOActive , Inc. When: Tuesday, May 18th
    6:45pm Networking
    7:00pm Presentation Where: Solutions IQ
    2331 130th Avenue NE
    Bellevue, WA
    Map
    Even a relatively unskilled attacker can find and exploit vulnerabilities in most web applications which have not been carefully checked for security issues. IOActive will show you some specific weaknesses they frequently see in web applications and explain the common attacks they make possible. Where possible, they'll show you side-by-side comparisons of vulnerable and safe Java code, so you can learn to recognize and fix these kinds of vulnerabilities. Finally, they'll go beyond fixing common vulnerabilities to techniques you can use to write more secure web applications. SeaJUG needs a notetaker. Anybody that is willing to take notes and post a brief summary to the MeetingNotes page would be much appreciated.

    117. Euclid's Elements, Introduction
    that. Another reason is to show how java applets can be used to illustrate geometry. That also helps to bring the Elements alive.
    http://aleph0.clarku.edu/~djoyce/java/elements/elements.html
    Introduction
    New: Jaume Domenech Larraz has translated the Elements into Catalan at http://www.euclides.org/ Euclid's Elements form one of the most beautiful and influential works of science in the history of humankind. Its beauty lies in its logical development of geometry and other branches of mathematics. It has influenced all branches of science but none so much as mathematics and the exact sciences. The Elements have been studied 24 centuries in many languages starting, of course, in the original Greek, then in Arabic, Latin, and many modern languages. I'm creating this version of Euclid's Elements for a couple of reasons. The main one is to rekindle an interest in the Elements, and the web is a great way to do that. Another reason is to show how Java applets can be used to illustrate geometry. That also helps to bring the Elements alive. The text of all 13 Books is complete, and all of the figures are illustrated using the Geometry Applet, even those in the last three books on solid geometry that are three-dimensional. I still have a lot to write in the guide sections and that will keep me busy for quite a while. This edition of Euclid's Elements uses a Java applet called the Geometry Applet to illustrate the diagrams. If you enable Java on your browser, then you'll be able to dynamically change the diagrams. In order to see how, please read

    118. Java 3D API
    3D graphics for java.
    http://java.sun.com/products/java-media/3D/
    developers.sun.com search tips Search: in Developers' Site in Sun.com
    Developers Home
    Java Technology Desktop Java Join a Sun Developer Network Community ... Why Register?
    Desktop Java Java 3D API Downloads Early Access Third-Party
    Reference
    ... Instructor-Led Courses
    The Java 3D API provides a set of object-oriented interfaces that support a simple, high-level programming model you can use to build, render, and control the behavior of 3D objects and visual environments. With the Java 3D API, you can incorporate high-quality, scalable, platform-independent 3D graphics into applications and applets based on Java technology. Java 3D and VRML/XML
    The Web3D Consortium is currently implementing Xj3D, a Java 3D loader built according to the X3D specification , an XML spec for Virtual Reality Modeling Language (VRML). Visit the Xj3D home page for more information and to obtain the source code
    What's New
    January 2004
    Java 3D and Java Advanced Imaging Used to Explore Mars

    August 2003
    Java 3D Fly Through v 2.0 Beta
    This sample application shows you how to take advantage of the capabilities of Java 3D technology. You can download the source code via java3d.netbeans.org

    119. Dave's Short Course In Trigonometry
    About the java applet. Images in Dave s Short Trig Course are illustrated with a java applet. If you want to print the images, turn off java in your browser.
    http://aleph0.clarku.edu/~djoyce/java/trig/
    Dave's Short Trig Course
    Table of Contents
  • Who should take this course?
    • Trigonometry for you
    • Your background
    • How to learn trigonometry
  • Applications of trigonometry
    • Astronomy and geography
    • Engineering and physics
    • Mathematics and its applications
  • What is trigonometry?
    • Trigonometry as computational geometry
    • Angle measurement and tables
  • Background on geometry
    • The Pythagorean theorem
    • An explanation of the Pythagorean theorem
    • Similar triangles
  • Angle measurement
    • The concept of angle
    • Radians and arc length
    • Exercises, hints, and answers
    • About digits of accuracy
  • Chords
    • What is a chord?
    • Trigonometry began with chords
  • Sines
    • The relation between sines and chords
    • The word "sine"
    • Sines and right triangles
    • The standard notation for a right triangle
    • Exercises, hints, and answers
  • Cosines
    • Definition of cosine
    • Right triangles and cosines
    • The Pythagorean identity for sines and cosines
    • Sines and cosines for special common angles
    • Exercises, hints, and answers
  • Tangents and slope
    • The definition of the tangent
    • Tangent in terms of sine and cosine
    • Tangents and right triangles
    • Slopes of lines
    • Angles of elevation and depression
    • Common angles again
    • Exercises, hints, and answers
  • 120. Java
    Introducci³n al lenguaje, ejemplos de programaci³n, uso de AWT como interfaz gr¡fica y enlaces.
    http://www.dcc.uchile.cl/~lmateu/Java/Apuntes/index.htm
    Apuntes de Java
    7 de Noviembre de 1996 Luis Mateu Estos apuntes han sido financiados por el proyecto Fondecyt 1950599. Una copia actualizada de este documento se encuentra en http://www.dcc.uchile.cl/~lmateu/Java/Apuntes/index.htm Índice:

    Page 6     101-120 of 201    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | 11  | Next 20

    free hit counter