Music Master – das Musikquiz für iPhone und iPod touch

Heute wollen wir Euch unsere neue iPhone App vorstellen. Im Apple App Store gibt es bereits einige Quiz zum Thema Musik, allerdings greifen sie primär auf die eigene Musiksammlung zurück und generieren daraus Fragen. Eine schöne, unterhaltsame Sache, aber was, wenn man mehr möchte? Fragen, die über den eigenen Horizont hinaus gehen; die tiefer gehen als die bekannten Standardfragen.
Mit dem Ziel ein anspruchsvolles Musikquiz zu konzipieren, haben wir uns zusammengesetzt und Music Master entwickelt. Ein Musikquiz, das auch Musikexperten ins Grübeln bringt und durch Fragen aus den Genres Pop, Rock, Hip-Hop, Klassik und Jazz eine hohe Abwechslung bietet.
Die App gibt es ab sofort für iPhone und iPod touch im App Store zum Download: Music Master (iTunes-Link)
Wir wünsche Euch viel Spaß beim Raten und sind gespannt wer als erstes die Diamantene Schallplatte gewinnt.
January 21, 2010 No Comments
JavaScript summed up #9: Memoization
Doing the same work twice is never a good thing. Knowing that, a pattern called “Memoization” can help you avoid this. It’s about building functions that remember their previous outputs/return values. [Read more →]
October 1, 2009 1 Comment
Apple App Store: 85.000 Apps and 2 Billion Downloads
Apple published new stats concerning the App Store (press release). The numbers are impressive: two billion apps have been downloaded in just over a year (half a billion this quarter alone) [Read more →]
September 28, 2009 No Comments
JavaScript summed up #8: Reflection
Inspecting objects at runtime is what’s called “reflection”. Maybe you want to know – at runtime – what methods an object has or what type of object it is. You’ve got a couple of tools at hand to do this in JavaScript: [Read more →]
September 24, 2009 2 Comments
OpenSocial tutorial: how to build a social app
OpenSocial is becoming more and more popular and if you are thinking about building a social app yourself you should check out our OpenSocial tutorial at Think Vitamin.
September 22, 2009 No Comments
JavaScript summed up #7: Dynamic code
JavaScript can be a very dynamic language. To prove this, today we’ll discuss two techniques: dynamic code generation in general and “branching” (a special form). [Read more →]
September 17, 2009 3 Comments
JavaScript summed up #6: Reflow
Actually, I planned to write an article about “Reflow” – an important performance-relevant topic in every highly interactive JavaScript application.
But, as I was doing research for the article, I noticed that there are already a handful of very good articles and resources out there. So, instead of re-describing
the wheel, I highly recommend reading through these:
September 10, 2009 No Comments
JavaScript summed up #5: Configuration values
Maintaining and keeping code clean is always a challenge. And JavaScript is not different here.
In complex applications, JavaScript combines a great deal of application logic with classic GUI concerns. Therefore, temptations are high to put things like labels/texts into code (i.e. hard-coding the values). But already the term “hard-coded” should let you think twice.
September 3, 2009 No Comments
JavaScript summed up #4: Namespaces
In currently popular versions of JavaScript, there’s no native concept of namspaces, like in C#, Java and Co.
But namespaces are important when it comes to larger applications and/or using third party code. You risk to have conflicts with other code (being it your own code or third party code) that is named the same. Unexpected behaviour, to say it politely, can be the result (apart from polluting the global namespace with a lot of variables is just not very nice…).
So we know we need a way to simulate namespaces in JavaScript, too.
August 27, 2009 1 Comment
JavaScript summed up #3: Type checking
Since JavaScript currently is a dynamically typed language, the topic of type checking is quite interesting. In certain situations it’s rather important to know of which type the object at hand really is.
Here, we have some dummy objects that we want to type-check:
var num = 12;
var string = "Hello World";
var array = [1,2,3];
var object = { firstProp: 1, secondProp: 2 };
function Car(){};
var car = new Car();
Let’s look at two different ways to check the type of an object.
August 20, 2009 2 Comments




