LIST

Book: Applying UML and Patterns

Table Of Contents OOA & OOD Iterative, Evolutionary and Agile Inception Evolutionary Requirement Use-case Other Requirements Iteration 1_ Basics Domain Models (A) Domain Models (B) 01. OOA & OOD paper: Dr Frederick Brooks - “No silver bullet” Book_ The Mythical Man-Month - Frederick Brooks UML vs CASE vs MDA article: “Death by UML Fever” “What UML is and Isn’t” class -conceptual -software -implementation Martin Fowler - “UML Distilled” Rumbaugh - “TheUnified Modelling Language Reference Manual”...

December 9, 2014

Book: Head First HTML5 Programming

Table of Contents 01. Getting to Know HTML5 02. Introducing JavaScript and the DOM 03. Events, Handlers and All that Jazz 04. JavaScript functions and Objects (05. Geolocation) 06. Talking to the web 07. Canvas 08. Video 09. Web Storage 10. Web Workers 01. Getting to Know HTML5 minimal html5 document: <**!**doctype html> <meta charset=“utf-8”> <linkrel="stylesheet"href=“name.css”> var name = “tekst”; var othername = 100; while(condition){…} if(condition){} else{} name = name + “”; // string concatination document....

December 9, 2014

Video: Java Puzzlers - Joshua Bloch, Neal Gafter

( https://www.youtube.com/watch?v=wbp-3BJWsU8 ) Book: Java puzzlers - Joshua Bloch, Neal Gafter summary: Use new BigDecimal(String), not new BigDecimal(double) Don’t assume that map.Entry objects in entrySet iteration are stable Beware of catastrophic backtracking when writing regex Generics > arrays, don’t ignore compiler warnings! Never use raw types in new code - they lose all generic type info Use L for long (not l), never start an int with 0 (makes it octal) 2: new HashSet(map....

December 9, 2014