nullpointer.at

Kategorie: Programmierung

  • Programmiersprachen-Popularität auf TIOBE

    Einer der typischen Stereotypen die min vorallem im Umfeld eines Wirtschaftsinformatikers findet sind Java Entwickler, die meinen Java zu können und nur Java. Vielleicht noch etwas HTML und Javascript, wir sind schließlich 2.0! Wer jedoch seinen Horizont erweitern will, und dazu muss man nicht zwingend aus diesem Umfeld kommen, der scheint vor einer schier endlosen…

  • it's not a bug, it's a feature

    After enjoying this reaction once again, i remembered this picture. And i wanted to share my fright with you … Ähnliche Artikel:Android Developement Log.wtf?Geek and Poke – Cloud SpecialGeek and Poke – Social Special"Moderne" KunstGoogle Street View sieht alles!

  • object oriented design principles

    A short summary of object oriented design principles to increase maintainability, reusability, flexibility, less complexity Single Responsibility Principle Each module should take just one responsibility/functionallity and all responsibilities/functionallities should be assigned to exactly one module. As a consequence, there is only a single reason why a module needs to be adjusted: the requirements for which…

  • Shortcuts in Eclipse

    This time I write in English, I was probably influenced too much by the last book, I have worked with. In Eclipse there are many useful shortcut which can help you to speed up your coding. In this article I want to show you a small selection of the shortcuts I use in practice (especially…

  • Java Classpath

    Aus gegebenem Anlass mal wieder eine kleine Abhandlung zu einem Basic-Thema aus dem Javabereich. Was ist der Classpath? Im Classpath sind die Orte referenziert an denen nach bestimmten Java Klassen gesucht werden kann. Er kann per Commandline gesetzt werden oder je Aufruf individuell überlagert werden. Kleines Beispiel: package at.nullpointer.classpath public class SimpleHello { public static…