Forgot your password?

typodupeerror

Comment: Re:this (Score 1) 495

by mad.frog (#36696274) Attached to: Are You Too Good For Code Reviews?

No, that is 100% wrong.

The purpose of QA isn't to *find* bugs; the purpose of QA is to *verify* that *there are no bugs*.

If you are giving something to QA with unknown deficiencies, and expect them to find them for you, you should be looking for another line of work.

(Known deficiencies of a work-in-progress are a different story, of course...)

Comment: Re:Pure Arrogance (Score 1) 495

by mad.frog (#36696230) Attached to: Are You Too Good For Code Reviews?

Code review is purposefully a politically loaded process which enables management to divide and conquer and keep wages down.

You must have an awfully dysfunctional management. On my current team, code reviews came about by demand from the engineers, not from management.

Re: anonymous code reviews, meh, that could be made to work, I guess, but I don't see the point -- I'd rather have a discussion in the open.

Comment: Re:Cool hack (Score 1) 250

by mad.frog (#36480478) Attached to: JavaScript Decoder Plays MP3s Without Flash

> Compared to a Silverlight solution, the JS player is 3.5 times larger (535kb vs 154kb), uses about 3.6 times as
> much CPU power (25% vs 7%), and has to have significant modifications to work in multiple browsers. Not really progress. ...compared to a Flash solution, the JS player is >100 times larger (a Flash version could be under, say, 4k, including UI, since the MP3 decoder is built in).

Comment: Re:LLVM (Score 2) 97

by mad.frog (#36000708) Attached to: Inside Mozilla's New JavaScript JIT Compiler

A guy did in fact transplant LLVM in place of Nanojit (in Tamarin rather than SpiderMonkey, but close enough):

http://www.masonchang.com/blog/2011/4/21/tamarin-on-llvm-more-numbers.html

And found that LLVM didn't really produce an overall win for this sort of code generation. LLVM is nice for ahead-of-time-compilation, but isn't a good fit for just-in-time.

There is nothing more silly than a silly laugh. -- Gaius Valerius Catullus

Working...