Slashdot Mirror


User: Z00L00K

Z00L00K's activity in the archive.

Stories
0
Comments
6,410
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 6,410

  1. With no network connection it's not possible to do a remote access to log out the users.

    And if the visits are frequent enough then it would be pretty stressful.

    Remember that the tax authorities always are right even if they are wrong.

  2. Re:No rule of law on Google Loses Up to 250 Bikes a Week (siliconbeat.com) · · Score: 1

    How come that I'm not at all surprised by the bikes showing up at Burning Man?

  3. Re:If this works as well as ads in web pages on Your Car May Soon Start Serving You Ads (siliconbeat.com) · · Score: 2

    Not to mention the amount of driver distraction it would cause. I'd expect legislation soon to take care of this.

  4. Re: Sigh on Your Car May Soon Start Serving You Ads (siliconbeat.com) · · Score: 1

    Tell that to the people in Norway that recently turned off the FM net and now only offers DAB.

  5. Even nicer if it was MP/M. Or OS8MT.

  6. In Soviet Russia Olympians makes you.

  7. If you learn to make a solution on a low performance device then you will become a better coder less prone to make inefficient solutions.

    You can always make something that works, but to do something efficient takes skill.

  8. They are still suitable for various small embedded solutions. Not every computing task requires petaflop performance.

    I'm not saying that the Raspberry Pi is the ideal solution, but sometimes the most amazing solutions comes out of implementations made on low performance devices while high performance devices instead allows for bloatware.

  9. Re:Youtube own provided music on White Noise Video on YouTube Hit By Five Copyright Claims (bbc.com) · · Score: 2

    I just tells you to not add any music to your videos. Many videos that have music added is actually pretty annoying.

  10. Re:White noise can be copied too on White Noise Video on YouTube Hit By Five Copyright Claims (bbc.com) · · Score: 1

    Good luck with wave form identification on white noise.

  11. FCC will get a hard time. on What Happens When States Have Their Own Net Neutrality Rules? (bloomberg.com) · · Score: 1

    I think that the abolishing of the Net Neutrality has essentially caused the FCC to get a hard time trying to control the states trying to enforce the Net Neutrality by state.

    The end result may be that the FCC loses control completely and that the networks ends up being under state legislation instead.

  12. Re: USRobotic modem on The FCC Is Preparing To Weaken the Definition of Broadband (dslreports.com) · · Score: 1

    How about the PEP mode that the Trailblazer modems had?

    These days if you want a modem with some performance you'd have to get a Pactor 4 modem. Or if you want to get really slow, go JT-65.

  13. My broadband supplier is soon upgrading me from 10/100 to 100/100 since that's their lowest offering on media I have. That's sufficient for my needs.

  14. Which means a lot of ATMs out there. Maybe a few voting machines too? Could be fun at the mid term election in the US.

  15. Re: AMD getting the Patch despite not being vulner on Microsoft Issues Rare Out-of-Band Emergency Windows Update For Processor Security Bugs (theverge.com) · · Score: 1

    I was waiting for this.

  16. Unpatched Win7 running on Atom? Can it get slower?

  17. Re:Monopolies gonna monopolize. on Opinion: Chrome is Turning Into the New Internet Explorer 6 (theverge.com) · · Score: 4, Interesting

    I don't see a problem when it comes to beta sites, but for full production the site has to be W3C compliant, just use the HTML and CSS validators to ensure that the site follows all standards. But when it comes to JavaScript then it's a headache of its own, primarily on Microsoft browsers where those browsers have a tendency to do things differently.

    But a site that depends on JavaScript is in general a pretty crappy site.

  18. Probably more like "not possible to fix fully with software".

  19. At least not with the attack style that works on Intel processors, but I wouldn't be surprised if there are similar methods that works on AMD processors.

  20. But older architectures has other kinds of security gaps instead. So going back isn't going to help either.

    And today we essentially only have ARM and x86 architectures to care about. Sparc is a fringe architecture, so is PowerPC and MIPS, which means that it really doesn't matter if these architectures are impacted or not.

  21. This isn't even surprising that the problem exists in almost every CPU since a long time considering that most CPUs share the same type of logic in order to achieve the best performance. But performance and security often comes into conflict.

  22. Thanks! I got badly confused myself.

  23. Re:It's serious as it affects all Intel cpus on 'Kernel Memory Leaking' Intel Processor Design Flaw Forces Linux, Windows Redesign (theregister.co.uk) · · Score: 1

    It all depends on your application if this is going to be a real issue or not. For massive calculation computers already isolated from external influence this is a non-issue but for most computers used for home, office and gaming this is a considerable issue.

  24. Re: In before Fractal of Bad Design on Which Programming Languages Are Most Prone to Bugs? (i-programmer.info) · · Score: 2

    And one way around it was to declare the function before it was used - that did help a bit sometimes. Not always, but sometimes - and depending on compiler.

    But Pascal, C, Java, C++ and Ada all belong to the same programming paradigm, with or without the object orientation twist.

    Then we have Basic and Fortran which sometimes have the paradigms from Pascal et.al. but also other ways not related to them.

    Cobol is in turn an animal of itself.

    And then you can turn to Erlang, Haskell and Prolog for yet another way to do things.

  25. Re: In before Fractal of Bad Design on Which Programming Languages Are Most Prone to Bugs? (i-programmer.info) · · Score: 1

    Different languages allow for different language-specific bugs.

    However the worst bugs aren't the language specific bugs - it's system design bugs where the designer don't understand the business case that shall be solved.

    The programming language bugs are usually found either by hand or by tools like FindBugs, Splint and other similar tools. But system design bugs are all in the brain of people - and some people have a very strange brain wiring resulting in "perfect solutions on non-existing problems".