Search tips

  • 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:unfiled theory tipsntrick tutorial
  • 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.
    advanced beginner development introduction java links programming resources software tips tools tricks tutorial
    with java tipsntricks tutorial
  • 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 firefox system:unfiled tipsntricks web2.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.
    developers examples java links programming resource
    with faq java tutorial
  • 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 theory tipsntrick tutorial
  • 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:unfiled tipsntrick tomcat tutorial web2.0
  • Creating Good, Simple, Single-Server Web Applications, TS-9542, JavaOne Conference 2006
    with java jsp tipsntricks tomcat
  • » 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 mysql tipsntricks
  • Advanced MySQL Performance Optimization (pdf)
    with mysql tipsntricks
  • 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 ajax java sourcecode tipsntricks
  • 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 intellij system: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.
    active asp basics code free help howto pages programming server tutorial tutorials
    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 java sourcecode tipsntricks tutorial
  • Cheat Sheet Round-Up Ajax, CSS, LaTeX, Ruby… | Smashing Magazine
    Whether you’ve forgotten the name of a function or the property of a cascading style sheet - handy cheat sheets deliver the information you are looking for - immediately. Most cheat sheets are available as .pdf or .png-files, so you can print them and use them every day for whatever projects you’re currently working on. We present an extensive overview of useful cheat sheets we’ve found in the Web. Something is missing? Don’t hesistate to comment!
    Whether you’ve forgotten the name of a function or property cascading style sheet - handy cheat sheets deliver information you are looking for immediately. Most
    ajax ascii cheat css developers firefox google html javascript linux mysql perl photoshop php ruby sheets t weblogs windows xml
    with ajax java javascritpt mysql ruby tipsntricks by 11 users
  • Cheat Sheet Roundup - Over 30 Cheatsheets for developers
    Lets face it, unless you have a photographic memory, no developer can remember all the different functions, options, tags, etc. that exist. Documentation can be cumbersome at times, thats why I like cheat sheets. They are quick references that feature the most commonly forgotten things on a specific topic. You can print them out and hang them on your wall, or just keep them handy in your bookmarks for quick reference. I have rounded up over 30 cheatsheets that developers might find useful. Web Development Cheat Sheets * JavaScript * CSS * CSS * Hex Codes * HTML * XHTML * HTML Entities Databases / SQL Cheat Sheets * MySQL * MySQL * Oracle * SQL * Sybase Language Cheat Sheets * ColdFusion - work in progress
    cheat cheatsheets coldfusion cvs google java jsp m mysql oracle php python regex roundup ruby sheet sql subversion unix windows
    with ajax css cvs google html java javascritpt jsp mysql oracle perl php python ruby tipsntricks uml unix xhtml by 19 users
  • 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 graphic java sourcecode
  • 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 tutorial uml
  • Creating J2EE application in IntelliJ Idea 6.0: EJB3/JBOSS +Ajax. Tutorial. Part 3 | AjaxLine
    Creating J2EE application in IntelliJ Idea 6.0 - EJB3/JBOSS +Ajax. Tutorial. Part 3
    with intellij tutorial

Bookmarks 1 - 20 Next »