Developing Expertise Notes Contents: Role of Deliberate Practice The Acquisition of Expert Performance The Acquisition of Medical Expertise Reasoning and Instruction in Medical Curricula Changing the Agency for Learning Field Study in SW Design Brooks on Great Designers Conceptualizations of Practice with system:unfiledtheorytipsntricktutorial
Introduction to Java: programming tips, tricks and online resources Welcome to my page with tips on Java programming! This is a general overview, you won't find code examples (this is no How to do ... in Java? text; I do have some code examples elsewhere). As a beginner, please don't be overwhelmed by the large number of tools and resources. This page just wants to give an overview. You don't need all of the tools mentioned here and you might want to do some things different. These are just my personal recommendations. A lot of related links are given so that you can find out more if you are interested. As an example, it is mentioned that an obfuscator makes it harder to create meaningful source code from given bytecode. You may never need such a tool, it is just mentioned so that you know what it is, that it is possible at A list of hints for people programming in Java, including links. advancedbeginnerdevelopmentintroductionjavalinksprogrammingresourcessoftwaretipstoolstrickstutorial with javatipsntrickstutorial
Quick Online Tips Search - firefox extension Quick Online Tips is a popular blog regularly publishing Technology news, smart blogging tips, useful computer software and Web 2.0 services. The content presented in simple to understand language, is targeted to the people interested take their blog to a new high, learn secrets of blogging success and monetization and want to keep updated about breaking technology developments and buzz of the blogosphere. Quick Online Tips Search with firefoxsystem:unfiledtipsntricksweb2.0
comp.lang.java FAQ From: elharo@metalab.unc.edu Newsgroups: comp.lang.java.programmer,comp.lang.java.softwaretools,comp.lang.java.gui,comp.lang.java.help,alt.www.hotjava Organization: Cafe au Lait Followup-To: poster Subject: comp.lang.java FAQ Archive-name: computer-lang/java-faq/part1 Posting-Frequency: weekly Last-modified: 1997/10/06 Version: 1.6 URL: http://metalab.unc.edu/javafaq/javafaq.html The Java FAQ-- Frequently Asked Questions about Java, answered by Elliotte Rusty Harold at metalab.unc.edu.This page may only be mirrored with explicit, prior permission and only atother sunsites. If the URL doesn't say sunsite, this is an illegal copy. developersexamplesjavalinksprogrammingresource with faqjavatutorial
Teach Yourself Programming in Ten Years Walk into any bookstore, and you'll see how to Teach Yourself Java in 7 Days alongside endless variations offering to teach Visual Basic, Windows, the Internet, and so on in a few days or hours. I did the following power search at Amazon.com: pubdate: after 1992 and title: days and (title: learn or title: teach yourself) and got back 248 hits. The first 78 were computer books (number 79 was Learn Bengali in 30 days). I replaced "days" with "hours" and got remarkably similar results: 253 more books, with 77 computer books followed by Teach Yourself Grammar and Style in 24 Hours at number 78. Out of the top 200 total, 96% were computer books. with theorytipsntricktutorial
Tomcat Tutorial - SWiK Tagged Tomcat and Tutorial, sorted by: recent SWiK is a community driven resource for people who use open source software. Find free software or read and submit news: people are constantly adding cool new stuff. Apache Tomcat is the servlet container that is used in the official Reference Implementation for the Java Servlet and JavaServer Pages technologies. These are Java standards for developing dynamic web applications. Tomcat is widely used, although some people would like to see a better management con with system:unfiledtipsntricktomcattutorialweb2.0
» MySQL Cheat Sheet » Blog Archive Alice Hill’s Real Tech News - Independent Tech Extended Regular Expression Matching: mysql> SELECT * FROM table WHERE rec RLIKE “^b$”; (. for char, […] for char class, * for 0 or more instances ^ for beginning, {n} for repeat n times, and $ for end) (RLIKE or REGEXP) To force case-sensitivity, use “REGEXP BINARY” Selecting from multiple tables: (Example) mysql> SELECT pet.name, comment FROM pet, event WHERE pet.name = event.name; Auto-incrementing rows: mysql> CREATE TABLE table (number INT NOT NULL AUTO_INCREMENT, name CHAR(10) NOT NULL); mysql> INSERT INTO table (name) VALUES (”tom”),(”dick”),(”harry”); Batch mode (feeding in a script): # mysql -u user -p < batch_file (Use -t for nice table layout and -vvv for command echoing.) Alternatively: mysql> source batch_file; with mysqltipsntricks
ajax & more # JAVA # Java Application Template GUI Tutorial # JAVA: Serial Port Console for Windows, Linux etc. # JAVA: Serial Port access with javax.comm or rxtx # JAVA: Convert binary data to double, float, int, long # Java - open a local file from an applet # JAVA application - executable JAR archive # java.lang. NoClassDefFoundError - javac: target release 1.1 conflicts with default source release 1.5 # SUN Java vs. MicroSoft Java plugin for the browser with ajaxjavasourcecodetipsntricks
Ajaxian » IntelliJ IDEA Google Web Toolkit Support The JetBrains folk have smart marketing guys. Their marketing director got dirty and created a GWT Studio Plugin for IntelliJ IDEA 6.0. You can see a demo of the GWT work which shows how to create an Ajax image viewer application. with intellijsystem:unfiled
All The Code - FAQ F.A.Q. - Getting Started Guide:: What is All The Code? F.A.Q. - Getting Started Guide:: What does "alpha" mean? F.A.Q. - Getting Started Guide:: When will All The Code be in Beta? F.A.Q. - Getting Started Guide:: How do I submit code to All The Code? F.A.Q. - Getting Started Guide:: When will All The Code support language [x]? F.A.Q. - Getting Started Guide:: I found a bug, who do I report it to? F.A.Q. - Getting Started Guide:: I have an idea for a feature, who do I send it to? with sourcecode
ASP » Main Index - DevGuru Quick Reference Abandon AddHeader AppendToLog Application ASPCode ASPDescription ASPError BinaryRead BinaryWrite Buffer CacheControl Category Charset Clear ClientCertificate CodePage Response Session Column Contents Application Session Contents.Remove Application Session Contents.RemoveAll Application Session ContentType Cookies Request Response CreateObject Description End Execute Expires ExpiresAbsolute File Flush Form GetLastError HTMLEncode IsClientConnected LCID Response Session Line Lock MapPath Number ObjectContext OnEnd Application Session OnStart Application Session OnTransactionAbort OnTransactionCommit QueryString Redirect Request Response ScriptTimeout Server ServerVariables Session SessionID Set The DevGuru ASP Quick Reference is the definitive ASP reference and tutorial resource on the web, with hundreds of ready to use examples for you to include in your projects. activeaspbasicscodefreehelphowtopagesprogrammingservertutorialtutorials with asp
Chapter 31: java.awt.image Producers, Consumers, and Observers Java's model for manipulating images is more complex than other models. Java uses the concept of image producers and image consumers. An example of an image producer might be an object responsible for fetching an image over the network, or it might be a simple array of bytes that represent an image. The image producer can be thought of as the source of the image data. Image consumers are objects that make use of the image data. Image consumers are, typically, low-level drawing routines that display the image on-screen. The interesting thing about the producer-consumer model is that the producer is "in control." The ImageProducer uses the setPixels method in the ImageConsumer to describe the image to the consumer. The best with javasourcecodetipsntrickstutorial
Codase: ImageResizer.java /** * * Image re-sizer class that was pulled from net. made all methods private, except * for the ones that we want to interface. * * @author James Williams with graphicjavasourcecode
codefetch help and examples .* Match any character or space or anything or nothing at all. .+ Match any character or space or anything (but not nothing--there has to be at least one char). \d+ Match one or more digits. \s Match one space or tab or other whitespace. \s+ Match one or more spaces or tabs or other whitespaces. \b Match a word boundary. Examples: foo\b finds foo, tofoo, foo.lish but not foolish or fool_ish foo bar finds a page with "foolish" then "antibarista", one with "bar" then "foo", and others foo\b bar\b finds pages with both "foo" and "bar". Also matches "NotAFoo" and "rebar". foo\s+bar finds "foo bar" and "foo bar" but not "barfoo" or "bar foo". foo.*bar finds "foobar", "foo blah blah{}bar" but not "barfoo" port.+\d+ finds lines with "port" and any number of digits with sourcecode
Craig Larman’s Home Page: Applying UML and Patterns—An Intro to OOA/D and the Unified Process Contents at a Glance Foreword by Philippe Kruchten Preface Full Table of Contents Introduction 1 Object-Oriented Analysis and Design 3 2 Iterative Development and the Unified Process 13 3 Case Study: The NextGen POS System 29 Inception 4 Inception 35 5 Understanding Requirements 41 6 Use-Case Model: Writing Requirements in Context 45 7 Identifying Other Requirements 83 8 From Inception to Elaboration 107 Elaboration Iteration 1 9 Use-Case Model: Drawing System Sequence Diagrams 117 10 Domain Model: Visualizing Concepts 127 11 Domain Model: Adding Associations 153 12 Domain Model: Adding Attributes 167 13 with tutorialuml