Slashdot Mirror


User: darkHanzz

darkHanzz's activity in the archive.

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

Comments · 88

  1. Re: Time for a breath of fresh air on Tesla Model 3 Earns Five-Star Crash Safety Rating From NHTSA (jalopnik.com) · · Score: 1

    They are improving, but most likely not at 8000, rather around 4000 cars per week: https://www.bloomberg.com/grap...

  2. Re:The more important question: on 'The State of JavaScript Frameworks, 2017' (npmjs.com) · · Score: 1

    Firefox has been updated to not have high-resolution timers, so for private use, Spectre shouldn't be much of an issue. Since AMD's post on lkml, someone must have done that already, so 'seven days ago' is probably a reasonable answer.

  3. Re: It's because audiophiles are the definition of on SoundCloud Refutes Decreasing Audio Quality, Cites Standard Testing (billboard.com) · · Score: 1

    for which you pay the price in reduced signal-to-noise in those frequency bands, making it roughly as simple as described.

  4. Re:You all presumably know why. on In Which Linus Torvalds Makes An 'Init' Joke (lkml.org) · · Score: 5, Insightful

    Presumably, this is a poke towards systemD. It has suffered from feature-creep, which directly opposes the unix-philosophy of doing only one thing, but doing it well. Recently, there was a problem with, I believe the DNS server which is part of systemD.

  5. Re:Just another f***ing kludge to get around on Google Boosts Python By Turning It Into Go (infoworld.com) · · Score: 2

    Doesn't python secretly use semicolons to allow multiple statements in lamdba's ? If so, it'd only prove your point..

  6. No it doesn't on Researchers Set To Work On Malware-Detecting CPUs (helpnetsecurity.com) · · Score: 1

    Adding hardware protections to software ones in order to block the ever increasing onslaught of computer malware seems like a solid idea
    No it doesn't. Fix the real problem

  7. Re:Plus ca change on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    I'm quite sure it's an assert that triggers, which is something quite else than an exception. At least Torvalds is acutely aware of the distinction between the two.

  8. Re:It should be obvious on Author Joris Luyendijk: Economics Is Not a Science (theguardian.com) · · Score: 1

    A systematic, empirical study of a subject is a science by definition.

    Nope, falsifiable experiments are. That's what allows use to make predictions.

  9. Re:Infinity on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    There's NaN (not-a-number) for that. works beatifully

  10. Re:Chinese that speak English on What Language Will the World Speak In 2115? · · Score: 1

    I once practiced for 2 weeks on the pronouncation of a specific Shanghai subway station and failed. Chinese is for sure a very hard language for someone who's native language is western.

  11. Re:Why doubt something better would exist? on Oracle Promises Patches Next Week For 36 Exploits In Latest Java · · Score: 1

    WHERE did you get the idea that C++ is more immune to memory leaks or buffer overflows than C? C++ adds to the basic C memory management services and memory organization, but it still retains the original C ones. And adds an additional way to leak memory - undisposed objects.

    Probably from experience: Consistent use of stl memory classes (shared_ptr and unique_ptr) and containers (mostly std::vector) make it very hard to shoot yourself in the foot. Adhere to "Raw pointers don't transfer livetime from function to function" if you use raw pointers. These things are really easily spotted by code-review.

  12. Re:Backwardness of KDE continues on KDE Releases Frameworks 5 Tech Preview · · Score: 2

    and then provide native code layer to provide an interface for computational demanding stuff.

    Well, they are moving in that direction with QML. For many apps, a native UI makes perfect sense. Not only if the UI is very demanding, but also when the UI is very simple: staying in one programming language keeps things simple.

  13. Weight-saving on Ford Rolls the Dice With Breakthrough F-150 Aluminum Pickup Truck · · Score: 2

    One could consider buying a smaller car, and only renting when you need to haul something. For most pick-up truck owners, that gives a cheaper, more comfortable ride.

  14. Re:"So who needs native code now?" on Asm.js Gets Faster · · Score: 1

    Indeed he didn't. The whole thread was about native vs. non-native code, where C is just an example of native code.

    C++ is another example, closely related to C, with all the relevant properties. for example, you don't pay (performance) for abstractions/features you don't use. (exceptions, garbage collection, virtual function calls/inheritance)

  15. Re:"So who needs native code now?" on Asm.js Gets Faster · · Score: 2, Insightful

    In C++ it'd come down to a lambda function and std::swap, I don't see how that's less 'elegant'.

  16. Re:lol on Enlightenment DR 0.18: Improved Compositing, Wayland Support · · Score: 2

    Does it really segfault that often, that that's part of the 'experience'. That's quite bad. Last time I tried enlightenment (486dx, with 24MB ram), at least it was fairly stable.

  17. Zeus had no problem with it on Is Europa Too Prickly To Land On? · · Score: 4, Funny

    Just saying...

  18. Re:I see plenty of people reading on France Moves To Protect Independent Booksellers From Amazon · · Score: 1

    The way most pocket books are printed is at least as wastefull as an E-book. Those pocketbooks will only last a few decades at best, given the cheap paper they're made of.

  19. Re:At what speed? on Google: Our Robot Cars Are Better Drivers Than You · · Score: 2

    Wouldn't that be cheating?

  20. Re:The mess at the bottom on Back To 'The Future of Programming' · · Score: 1

    The best bet might be if China decides they need to be fully independant from the 'Capitalist West' and design their own architecture

    I'm not so sure if you have ever seen the Chinese way of designing; fiddle with it until it seems to work. Search for Huawei's security problems and you'll get the drift. Hardware design is really not done better.

  21. Re:In other words, no-one really cares about CO2 on Duke Energy Scraps Plans For Florida Nuclear Plant, Forced To Delay Others · · Score: 1

    Don't assume conspiracy if incompetence can explain it. The latter is far more likely.

  22. Re:Huh? on Using Java In Low Latency Environments · · Score: 4, Informative

    Use RAII consistently, and use containers (from stl or otherwise) which have asserts() on bounds-checking. Bonus points for a tiny unit-test (which can therefore run at the end of every compilation). You'll be amazed at how stable, maintainable, easy to debug and performant your code will be.
    Do the hardcore pointer handling only where the profiler tells you that it matters and there's no way java even gets close in performance

  23. Re:Well if you've nothing to hide... on Google Pressure Cookers and Backpacks: Get a Visit From the Feds · · Score: 1

    Mmm, makes sense, but I'm just wondering whether the gun-powder was really needed for the revenge-scene. Wouldn't the pressure cooker by itself have been enough ?

  24. Re:Well if you've nothing to hide... on Google Pressure Cookers and Backpacks: Get a Visit From the Feds · · Score: 2

    Just wondering thought, why would you make your own soap ?

  25. Re:I thought latency was the main issue? on New Alternatives To Silicon May Increase Chip Speeds By Orders of Magnitude. · · Score: 1

    For the current generation/standards at most some power efficiency. More processing power might allow better coding schemes, better beamforming (=less interference), smaller circuits (since less has to be done in parallel). So in the end it'll mostly come down to power efficiency. http://slashdot.org/comments.pl?sid=4025309&cid=44410675#