whiteblacksheep

Glück muss man können!

Archive for the category “Programming”

Java: More on Lists – double brace initialisation

Normal initialisation

List<String> myList = new ArrayList<String>();
myList.add("ItemOne");
myList.add("ItemTwo);

Using Arrays.asList(…)

List<String> myList = Arrays.asList("ItemOne", "ItemTwo");

Double brace initialisation

List<String> myList = new ArrayList<String>() {
{ add("ItemOne"); add("ItemTwo"); }
};

Java Map/Collection Cheat Sheet

Java Map/Collection Cheat Sheet

 

Originally posted on http://www.sergiy.ca/guide-to-selecting-appropriate-map-collection-in-java/.

A summary of the 6 most important JavaScript Frameworks

Nice summary of the 6 most important Javascript Frameworks for building WebApps.

Free JavaScript Tutorials

Intended for JavaScript-Newbies but also good for refreshing your knowledge: Free JavaScript Tutorials by ItinPractice.com.

Nice visualisation of SQL-Joins

SQL-Joins

JavaScript Design Patterns

For those interested in Learning JavaScript Patterns.

Behind the Scenes: Functionality of Modern Web Browsers (German only)

Another interesting post by Html5Rocks: Behind the scenes of modern web browsers.

Splashnology – 38 fresh jQuery Plugins

Splashnology informs about some new jQuery Plugins for Web Developers.

30 jQuery UI Framework Plugins – Designmodo

Some nice and handy jQuery Plugins presented by Designmodo.

HTML5 forms input types

Read more about HTML5 forms input types outlined by HTML5 Doctor.

Post Navigation