Slashdot Mirror


User: Poltras

Poltras's activity in the archive.

Stories
0
Comments
671
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 671

  1. Re:Errata on When Dinosaurs Battled Crurotarsans · · Score: 1

    Toto, I've a feeling we're not in Kansas any more.

  2. Re:Yeah? on World's First "Unclonable" RFID Chip · · Score: 1

    1000000+ UIDs, these days...

  3. Re:You must mean on Physicists Discover "Doubly Strange" Particle · · Score: 2, Funny

    "The proton absorbs a photon and emits two morons, a lepton, a boson, and a boson's mate. Why did I ever take high-energy physics?"

    Yeah, my family is just as screwed as this proton's....

  4. Re:This is not Chrome-specific. on Reading Google Chrome's Fine Print · · Score: 1

    If I might jump to conclusion, he meant that there was no difference between the two, in meaning. Thus, the difference is clearly not semantic. As such, he used the wrong term.

    For the record, the right term would syntactic. Re-read the OP post.

    This post was brought to you by Pedantis. Pedantis, the right solution to the wrong problems!

  5. Re:This is not Chrome-specific. on Reading Google Chrome's Fine Print · · Score: 1

    Whoosh

  6. Re:Snake Oil on Smilin' Bob Not Smilin' Anymore · · Score: 1

    And why there are so much anonymous cowards talking about penis size. Just askin...

  7. Re:Snake Oil on Smilin' Bob Not Smilin' Anymore · · Score: 1

    I thought he was talking about egos...

  8. Re:For the last fucking time... on MIT Secretly Built Mega-Efficient Nano Batteries · · Score: 1

    I learnt Sanskrit and it's sooo overrated.

  9. Re:Please Rate the Canadian Justice System on Quebec Govt Sued For Ignoring Free Software · · Score: 1

    You, sir, should go to Europe to look upon the real definition of slow bureaucracy. We are speedy-gonzalez-fast here compared to some cases.

    Also, I know some American lawsuits that have been taken forever as well, this is not localized to Canada.

  10. Re:Forgive my ignorance on 45th Known Mersenne Prime Found? · · Score: 1

    Do we at least know who the mother is??

  11. Re:Encoding please??? on Quebec Govt Sued For Ignoring Free Software · · Score: 1

    You shouldn't have to use the HTML encoding of those letters. Most browsers support them inlined now so what's the big deal about using UTF8 in your DB/comment system?

  12. Re:visual representation of the PlayStation commun on Sony Guarantees Playstation "Home" Launch Before 2009 · · Score: 1

    According the vgchartz, 20.35M and 14.89M as the writing of this message. Also, please note that the PS3 is currently outselling week after week the XBox, although TBH at this trend it's gonna take 3-4 years before they reach it. I don't think Sony is having financial problems, for those worried; the PSP is selling good and with a profit on each unit.

  13. Re:Guaranteed! on Sony Guarantees Playstation "Home" Launch Before 2009 · · Score: 2, Funny

    No sir, he's X. Gotta love roman numerals.

  14. Re:Noob on The 1-Petabyte Barrier Is Crumbling · · Score: 1

    Not on slashdot, for sure :)

  15. Re:Fixed it for you... on The 1-Petabyte Barrier Is Crumbling · · Score: 1

    Please. Stop. Just stop.

  16. Re:Persistent worlds? Who cares! on The Future of Persistent Worlds In MMOs · · Score: 2, Informative

    Blizz charges for transfering char. But it's possible.

  17. Re:What a waste of energy on Intel Claims an Advance In Wireless Power · · Score: 2, Funny

    I never signed anything.

  18. Re:Objective C and C++ on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    C++ often occurs imperceptible code (for example, constructors, destructors, temporary variables, copy-ctor, ...) that can slow the final product. This can be circumvented, but in most case is not because the programmer is not experienced enough.

    The case is, although I prefer C++ as a language, I'm well aware that people needs a hell of a lot more experience in C++ than in C to write code that is both faster and easier to maintain. Also, if readability by none-expert is an issue, C is always easier to understand. If you have a team of talented C++ developer, it's going to be 99.5% as fast as C, and will take less time to maintain and code new features. The level of expertise of such a team is an order of magnitude more than the same results in C, though.

  19. Re:So much for the seeds of .... on Teens Arrested For Motorized Office Chair · · Score: 0, Troll

    What about bicycles?

    What part of "motorized vehicle driven on public roads" did you miss?

  20. Re:Boost epitomizes everything that is wrong with on Boost 1.36 Released · · Score: 2, Informative

    I've given you two keywords (restrict, export) and two features (implicit functions, inlining) that aren't well implemented (okay, lets say different enough so that one code might not be compatible) across the mainstream compilers, but I'll tell you another one: template metaprogramming and typename.

    I don't know about the state of VC2008 and Comeau since I've stopped working with them a while ago (working on OSX with intelc and g++), but I remember by my young self having a lot of difficulties building cross-compiler expression templates and dynamic type resolution libraries. I'm not talking export here, just using templates of templates to build expressions that should be inlined correctly at the end of the compiler pipeline. If it's compiled at all.

    I won't find a real world code example, lets just say that when you enter the templates recursion, template operators and heavy template worlds, and you throw in some functors, binding and dynamic typeinfo (which are all standards, not some unsupported feature like export), what works on one compiler will choke the next one. I've had my share of "Internal Compiler Error". Those are nasty and almost impossible to resolve. And sometimes G++ just give up without an error code... oO

    Saying that what works on one mainstream compiler should work on the other if you follow standard is the same as saying that coding POSIX guarantees you to work on all mainstream operating system. Theory is fine, practice showed us otherwise.

    And boost came across these problems as well. Do you think the HEAVY use of macros and preprocessing is only there to render the code unreadable? :)

  21. Re:Boost epitomizes everything that is wrong with on Boost 1.36 Released · · Score: 1

    VC++, GCC, Intel, Comeau... That's just off the top of my head

    Out of my head: the restrict and export keywords. If I remember correctly, only one of the compilers you mentioned really respect export, three respecs restrict, and they are errors for the others (left as an exercise to the reader). And let's talk a bit about inlining and implicit functions...

    None of them are perfect, but they're close enough as makes no difference.

    They do make a difference. They are not 100% compatible to the standard, and it means that code that would work on one compiler may not on the other. I've faced this in projects, and I'm sure the Boost guys are aware of it a lot (and use preprocessing to circumvent the differences).

    We're talking mainstream here. Wanna go see what's going on on the lowest tiers of the market?

  22. Re:Still easier than coding the Windows Kernel on Torvalds Says It's No Picnic To Become Major Linux Coder · · Score: 2, Insightful

    By the time you are working on the Linux kernel as a contributor, you'd have accumulated enough knowledge/experience to get employed at Microsoft. I think at that point, it's more a matter of ideology.

    At Microsoft, working on the kernel pays as a fulltime job, while you still have to find a way to get money if you're just working on the Linux kernel as a hobby. And if you can get employed by some corp to get paid working on the Linux kernel, I'd think their employment standards would be comparable to MS's.

  23. Re:Just Remember... on Seattle Flushes $5M High-Tech Toilets · · Score: 1

    Yeah, sure. You blame the prostitutes? I blame society.

  24. Re:"I love the phont, but..." on What's the Problem With iPhone 3G Reception? · · Score: 1
    And as you may see, I'm not answering to you. I found your joke funny.

    Aside of that, how've you been?

  25. Re:"I love the phont, but..." on What's the Problem With iPhone 3G Reception? · · Score: 1

    I don't care much about cut-and-paste, never really used it before. It's a feature I'm missing a bit, but the advantages of the whole thing outweighs the engineering bugs and missing features by much. If the only complain you have about the iPhone is cut-n-paste, you should revise your reviews.

    On topic, I haven't had a single call drop since I bought it. Some slow down on 3G, but the phone reception is working good for me. Guess what? I love the "phont". ;)