About These Sales Figures
January 14, 2009
The article in question is MTV Multiplayer’s Xbox 360 Community Developers Still Don’t Know Sales Figures.
Let’s start with the information about the payment statistics the creators had: Interestingly the news items on the Creators homepage does not seem to say anything about it but it is in the Submission Agreement (hence known to anyone participating in XBLCG as we all read such stuff when it comes to money, right?) and in some threads on the forums, namely: Pheel in Money/Download numbers. and Jenkmeister in Can you see the copies sold?, both vague about the why but explicit about the not yet and as soon as possible.
Considering the thread Sales Figures/Data “by Match” that was sparked off by the article the “[…] the situation is more troublesome behind the scenes, Community Games developers told MTV Multiplayer, speaking on the condition of anonymity”
seems unbelievable as a lot of creators do express their displease with the current situation in full publicity there. And earlier the month, Jason Swearingen of Novaleaf fame raised the issue in public, too…
In the end the article looks like an alternative to the initially planned one about how XBLCG is doing. But as the inquired developers could not provide any data about their sells the MTV Multiplayer news outlet (ya ya
) decided to report about a not-quite-new-and-relatively-known issue instead. The only up side of this thing is that it forced an official post from MS at Where’s My Money?
The Difference Between the System.* and Microsoft.* Namespaces?
November 16, 2008
Once again a post in response to Scott Hanselman: Once I thought the System.* namespace contains the features covered in the ECMA standard and generally platform independent. But with things like System.Windows.Forms in there (same confusing for me here as for John Sedlak) it does not make that much sense anymore…
My current whatever of it now is based on Brad Abrams post: the 3rd definition (System.* means it ships in the core redist. Microsoft.* means it is not part of the core redist.
) while the 2nd (System.* indicates stuff that is logically part of the framework. Microsoft.* is the bleeding edge stuff or value-add.
) seems feasible, too.
All Your Base Are Belong to Us
November 14, 2008
or: If you don’t know English, you’re not a programmer!?
I think I have to agree with Erling Paulsen: The German localization of VS.NET was/is horrible, Windows XP has a few issues and Windows Vista (which I have yet to try the Germanized version off) is said to have even more. In VS.NET it seems like they thoughtlessly translated every single word to justify their work, which resulted in such gems like References being called Verweise – not wrong per se but it is more commonly used for Links and Referenzen would have been a better choice. These, erm, weird dictionaries used in the process of l10n make it annoyingly cumbersome to follow some English 3rd party tutorials/tips.
In regard to translated documentation: I wouldn’t use it. Maybe it is because I learned programming during the dark ages when everything development related was English – it is even possible to claim I learned English through such documentation – or maybe the early days of localizations spoiled my conception of its quality. Also, new things are always available in English only first, with translations being added later (if at all), and if you want to stay on top of the technology advances you need to understand English. And, as Erling mentioned, searching for localized error messages is next to useless and retranslating to English is a rather hard task due to the aforementioned dictionaries.
In the end I only code in English: my comments, my variable names and everything else is in English and it feels unnatural to use German…
Design Patterns are not from Hell
September 9, 2008
A response to Design patterns are from hell^2!
While I can agree that design patterns are quite abused nowadays – mostly by clueless people doing cargo cult programming – I cannot leave “[…] design patterns are language dependent”
uncommented.
Starting with the very first two sentences of Wikipedias Design pattern (computer science) page “[…] a design pattern is a general reusable solution to a commonly occurring problem in software design. A design pattern is not a finished design that can be transformed directly into code.”
should result in a question like: How can something like that be language dependent?
Continuing with the Wikipedia page for the Builder pattern reveals a text that explains the pattern in a programming language agnostic way, leaving language specific implementations to the examples section where they belong.
Allow me to close this with a Singletons must die.