Slashdot Mirror


User: TheThiefMaster

TheThiefMaster's activity in the archive.

Stories
0
Comments
1,625
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,625

  1. Re:Insurance? on How Do I Prevent Lan Party Theft? · · Score: 1

    Multiplay (huge UK lan party) gets by with a badge and stickers on your equipment with your name and an id number on. And a little security at the door to enforce it of course.

  2. Re:My gut feeling? on Level of IPv6 Usage Is Vanishingly Small · · Score: 1

    So we're not going to really be able to visit Martian websites then :(
    Technically HTTP doesn't have to be over TCP, but regardless you're not going to get a reply sooner than the RTT to Mars without faking it with a local cache (and having an expires time on the page of more than the RTT to Mars) or using dns trickery to direct requests to uni.mars to a local server on the same planet as them.

    Incidentally, anyone know if the http "Expires:" in x seconds header is measured from the time the request is sent, the response is sent or the time the response is received? Normally latency is low enough for this not to matter, but in cases like this...

  3. Re:my dog... on Magpies Are Self-Aware · · Score: 1

    It's largely wrong that animals all see in black and white.
    A lot of mammals can see light intensity and two colours. This probably includes dogs.

  4. Re:I knew magpies are quite "smart" on Magpies Are Self-Aware · · Score: 1

    And not forgetting the fact that biological neural nets grow and strengthen and "learn" in ways that we have no idea about. The links in artificial neural nets are often fixed (just with variable weights), and the learning process is either manual/automatic adjustment of the link weights from outside or evolution. We have no way of making an artificial neural net "learn" like a biological one yet.

  5. Re:Interesting on New Multi-GPU Technology With No Strings Attached · · Score: 2, Interesting

    What about the fact that different cards give different results for texture filtering? Specifically their choice of mip level and anisotropic filtering. Think circle vs square differences.

    Hell, some cards implement anti-aliasing differently to others.

  6. Re:Solution looking for a problem on Level of IPv6 Usage Is Vanishingly Small · · Score: 1

    Actually you can add it as a protocol through the properties of the network connection.

  7. Re:My gut feeling? on Level of IPv6 Usage Is Vanishingly Small · · Score: 1

    The closest we can get to that is with HTTP/1.1, using HTTP Pipelining which needs two requests:
    Request page, using HTTP/1.1 with "Connection: keep-alive" header.
    Receive response, hopefully a "HTTP/1.1 200 OK" with another "Connection: keep-alive" header.
    Request all the images etc on the page one after the other in the same connection, without pausing for responses.
    Receive all the responses.

    With suitably set cache headers to allow local caches to serve the page without the delay.

    The only way to improve this is to add an additional response type, e.g. "HTTP/1.1 210 Additional", which the server would use (along with the "Location:" header) to give additional responses that it thinks the client needs or will need without them being requested.
    i.e.:
    Client: (on earth)
    GET / HTTP/1.1
    Host: uni.mars
    Connection: keep-alive

    Server: (on mars)
    HTTP/1.1 200 OK
    Connection: keep-alive

    --Data of index.html--

    HTTP/1.1 210 Additional
    Connection: keep-alive
    Location: /style.css

    --Data of style.css--

    HTTP/1.1 210 Additional
    Connection: keep-alive
    Location: /logo.png

    --Data of logo.png--

    etc.

  8. Re:Should have gone to A.B.C.D.E.F.G format. on Level of IPv6 Usage Is Vanishingly Small · · Score: 1

    IPv6 addresses don't have to be excessively long, I have: 2001:XXXX:XXXX::1 (obviously the Xs aren't really the address, but giving an address on a lowly home internet connection on slashdot seems like a bad idea)
    Autoconfig defaults to adding the link's mac address to that as well (with FF:FE in the middle), so I also have a longer (almost max IPv6 length) address for the same connection.

  9. Re:It's the ads that kill the BBC clips on BBC's Open Player Claims Not Followed Through · · Score: 1

    We're not talking about BBC News, we're talking about BBC iPlayer. It's a site of theirs for watching online anything that was broadcast on BBC TV in the last week.

  10. Re:Snoops mining on UK Gov't Proposes Massive Internet Snooping, Data Storage · · Score: 1

    It's not the cows you should be worried about, it's the TREES!
    They're plotting against us I tell you!
    Every day they invade further into our cities. They've clearly already got to the planning councils. Have they got the government yet? I don't know.

    I'll stay indoors, it's safer.

  11. Re:Article should be titled "What *US* Tech Worker on What Tech Workers Need To Know About Overtime · · Score: 1

    Oh, wait, I misunderstood you.

    No you didn't, you just thought it would be funny to act like you did.

  12. Re:Article should be titled "What *US* Tech Worker on What Tech Workers Need To Know About Overtime · · Score: 3, Insightful

    I don't care about the stories being US-centric (which is what the FAQ is about), but it would be nice to see US-centric articles marked as such.

  13. Article should be titled "What *US* Tech Workers" on What Tech Workers Need To Know About Overtime · · Score: 4, Insightful

    Article should be titled "What *US* Tech Workers Need to Know About Overtime".

    Very few stories on here are US-specific, and they should be labelled as such.

  14. Re:Stop paying MS for bad software... on Windows XP Still Outselling Windows Vista · · Score: 1

    DirectPlay is deprecated.

  15. Re:Extended warranties are rip-offs - no exception on IT Repair Installs Webcam Spying Software · · Score: 2, Interesting

    "Profitable for apple" could mean that they aren't making a profit on the warranty and repairs themselves, but they cover the costs easily in the profit of the pc and the customer is so happy they buy more apple stuff later.

    "Not losing your customers to the competition" can have a value too. It's a bit too indirect for most modern companies unfortunately, they seem to instead prefer to give all sorts of incentives to new customers and allow their existing customers to be drawn away by their competitors' new customer incentives. "We'll treat you like crap when you try to claim on the warranty, to make sure you never buy from us again!"

  16. Re:MMX/SMD Extensions on PCMark Memory Benchmark Favors GenuineIntel · · Score: 1

    But that's not up to Futuremark to fix.

  17. Re:out of portugal ? on The First Paper-Based Transistors · · Score: 1

    Of course the last two actually exist...

  18. Re:testing and QA on Dublin Air Traffic Control Brought Down By Faulty NIC · · Score: 2, Insightful

    If one fails with probability p, and you have n of them, a total system failure is probability p^n, not 1-p^n. Well technically it's Mult(p,1->n) where p1 is the probability of the first failing, p2 the probability of the second, etc, multiplying them all together to get the chance of a total system failure.
    The probability of any one device in a redundant system failing is (1-((1-p)^n)). This equation rapidly approaches 1, so in larger setups failures will be a common occurrence, but they'll largely be harmless due to redundancy.

    Of course this all assumes the failure mode of the device is "off" or "non-functioning". If it fails in a way which routes 15A of mains power into a network cable, redundancy might not help a whole lot.

    Obviously that's not what happened, but it's not outside possibility for one device to take down an entire redundant system.

  19. Re:no h-j-k-l? on Slashdot Discussion System Updates · · Score: 1, Informative

    Mod parent super informative.

    HJKL does in fact work.

  20. Re:Yes it is - take a look at this: on Mercedes To Phase Out Gasoline By 2015 · · Score: 3, Insightful

    Though I wouldn't be surprised if it was 80mph for 30 miles or 30mph for 100 miles...

    The real question is: "What's its range under normal motorway/town driving?"

  21. Re:Quantum State on Discovery of a "Flat" Atom Hailed as Quantum Computing Breakthrough · · Score: 1

    Quantum computing is statistical, it doesn't really have states at all.
    A quantum bit (qbit) has an X% chance of being 1 and Y% chance of being 0. Depending on the value of X, the bit could be a guaranteed 1 or 0, or could be randomly one or the other.

    Even more confusingly, the probability of a quantum bit is actually a squared complex number, with the complex number (unsquared) being used in calculations. The (squared) numbers have to total 1.0, but the unsquared numbers can have negative terms. This doesn't have any effect normally, but makes some really interesting things happen when you operate on qbits, such as a quantum gate which will make a qbit's probability 0.5:0.5 (perfectly random) on first use and change it back to its original value on the second use (unrandomising it).

  22. Re:please, don't try sysadmin on Non-Programming Jobs For a Computer Science Major? · · Score: 1

    From the question:

    I unfortunately must admit that I am not very skilled with programming.

    Looks like you need to hire him.

  23. Re:a "tiny" mode on What Do You Want On Future Browsers? · · Score: 1

    It's also F11 in firefox. I gives you a minimalistic address and toolbar, which auto-hides, leaving all but a few lines of pixels of your screen for rendering the page.

  24. Re:Classic 5-step on Feds Say They're Ready For Monday's IPv6 Deadline · · Score: 1

    IPv6 router: http://www.apple.com/airportextreme/specs.html
    That just leaves ISP.

  25. Re:Classic 5-step on Feds Say They're Ready For Monday's IPv6 Deadline · · Score: 1

    2. Update all clients to IPv6 capable systems (i.e., junk Windows)

    Windows XP SP2 and Vista both support IPv6. Vista even has it on by default.

    But you already knew that, and just wanted to bash MS again.