Forgot your password?

typodupeerror

Comment: Re:Ripping Off (Score 1) 321

by Mjlner (#38890545) Attached to: <em>Angry Birds</em> Boss Credits Piracy For Popularity Boost

...Angry Birds brand, or ripping off its fans.

Because Rovio brought us the first of this wonderful concept of projectile-tower crushing. No ripping off there.

Hang on there! Your misunderstanding the portion you quote! Hed said "or ripping off its fans". Not at all the same thing as copying an idea or plagiarizing.

Comment: Re:Novices learning from whom...? (Score 1) 538

by Mjlner (#37865616) Attached to: Is Perl Better Than a Randomly Generated Programming Language?

Ummm...I've been using Perl for close to ten years now in production environments and I both call functions with an ampersand (to clearly delineate that this a function defined with the program itself, as opposed to a built-in Perl function) and use C-style loops.

Get yourself a copy of "Perl Best Practices" and read it. It will show you the errors of your ways and make you write better and more readable code.

Comment: Re:Novices learning from whom...? (Score 2) 538

by Mjlner (#37865598) Attached to: Is Perl Better Than a Randomly Generated Programming Language?

A shift would have been more intuitive?

No, but perhaps a "my ($a,$b,$c) = @_;" would have been. Since I'm a long-time Perl programmer, I can't really speak for the newbie. But the use of the numerous $_[n]-lines is probably unclear. In any case, it is considered bad code, since it is both hard to read and error prone.

Using a foreach, instead of the C-style for loop, is certainly easier and MUCH closer to the implementation used in Quorum and Randomo. So that, at least, was very poorly thought-out. And Randomo? Is it really random? Or is it really Quorum with a bunch of substitutions made? Just look at the code samples.

When I had a look at the paper, the first thing I noticed was the use of the ampersand sigil in a function call. This has been considered bad code in Perl since time immemmorial and really goes to show to things:
* The researchers didn't know the first thing about contemporary Perl and didn't bother to find out, ie. do research.
* The researchers did nothing to make the Perl code readable, which is paramount for newbies to any language.

And worst of all, and this is really appalling, they are cherry-picking their methods. Just look at the table and the numbers, then read their analysis. And don't even get me started on the sample-size...

Comment: Truly sad news (Score 1) 1

by Mjlner (#37711080) Attached to: Dennis Ritchie passed away

It is sad indeed that the death of this man, who contributed a whole lot more to IT, will be overshadowed by the death of a CEO whose main achievement was dishing out cool gadgets. Without Dennis Ritchie, these gadgets would never have seen the light of day.

No Ritchie, no UNIX, no FreeBSD, no OSX. (And, of course, no Windows or Linux either.)

Without the C programming language, the IT world would be completely different today.
May he rest in peace.

Comment: Re:Lameness (Score 0) 1613

by Mjlner (#37624536) Attached to: Steve Jobs Dead At 56

Torvalds was 9 when Jobs and Wozniak were doing their revolutionizing. There is a good case to be made that without Woz, Torvalds wouldn't have done what he did.

That's a ridiculous idea! Torvalds has never shown anything but contempt for Apple's products. When Torvalds started hacking together linux, Mac OS was still in version 7 (or was it even 6). Say what you like about the GUI, but under the hood, OS 7 was a complete mess, as were 8 and 9.

Of course, OS X changed all this, after ten years of Linux, when Torvalds and his kernel had become world-famous. If anything, it is the other way around. Iow, the success of Linux inspired Apple enough to believe that they could greatly improve on their system. Now, OS X is based on FreeBSD, which certainly has been heavily influenced by Linux. I'm not claiming that OS X would never have seen the light of day without Linux, but it would certainly have been a crappier product.

Of course, this all applies to the technology under the hood. Linus has never been active in GUI development, which is were Apple has become famous.

Comment: Re:Brewed by Monks (Score 1) 840

by Mjlner (#36621346) Attached to: With regards to beer, I prefer it to be:

> (yes,yes, I know, most readily available Trappist is brewed in factories)

I'm not sure how it works in the US. But if you want to call your beer a Trappist (and carry the trappist logo) in the EU it has to be brewed in an actual abbey.

In the case of Orval, the beer is brewed under license by a private company. The brewery just happens to be placed within the walls of the abbey and is therefore permitted to carry the trappist log on the bottle. The beer can be brewed by anyone, as long as it's under the supervision of the monks. As far as the US goes, I suppose the trappist logo is a registered trademark, so the product must meet the approval of the trademark owner in the US as well. Since all the major trappist breweries avoid mentioning who does the actual brewing (except when stating that it's a separate company, as in the case of Orval), I suspect that none of them are really brewed by monks. The monks at Westvleteren, however, do not allow reselling the beer and will only sell only one crate per visitor, which is why I suspect that their beer is actually brewed by the monks themselves. It is easily the best of the Trappists, perhaps because of that reason. And I'm not just saying that because it's so hard to get. If you find a bottle in a beer shop in eg. Brussels, it's well worth the hefty price you have to pay.

Comment: Re:Emacs? (Score 1) 831

by Mjlner (#35652534) Attached to: Why Mac OS X Is Unsuitable For Web Development

Using Emacs as your main tool for web development is like pounding nails in with your fist instead of a hammer. Sure, you could do it, but other than a misguided need to prove your masculinity and/or street cred, why would you?

If you actually knew what you're doing and are using the correct modes and macros, coding HTML with emacs can be quite OK. I certainly haven't found anything better, but HTML has never been my main language.

What's worse, instead of making you seem like a badass, it mostly makes you look like somebody who doesn't understand the concept of their being a right tool for a job. Special butterfly keystrokes notwithstanding, Emacs isn't the best tool for every job, including this one. Nor is any pure text editor, honestly.

Actually, the pure text editor is at the core of any developer's toolbox. Anything else gives up too much control and will. The best HTML coders I've met have all used their favourite text editors with awesome results. The notion that a specially designed tool must be the best for a specific task is a myth.

You can't carve your way to success without cutting remarks.

Working...