Slashdot Mirror


User: Bob+4knee

Bob+4knee's activity in the archive.

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

Comments · 78

  1. Re:The real world just got a whole lot scarier on Microsoft Collaborates On Child Porn Buster · · Score: 2, Interesting
    The devil is in the details

    What if I use a digital camera to post (non-porn) pics to the web. Later on I send an image from the same camera to the police or the press (to document a crime in progress, such as a cop beating a "suspect"). I wanted to be anon, and give them a clue but they want to "talk" to me and ask me some questions.

    Hmmm. They happen to know that there is a data base that they can use to link (legit) web images to my camera. Should they be allowed to access this data base? Should the crawler even store the info about my camera (the posted images have nothing to do with porn)? Would they? How would we know?

  2. Anybody want to buy a used Linux license? on EDS: Linux is Insecure, Unscalable · · Score: 2, Funny
    Phew! Thanks for telling me. I'll get right on the phone with our MS rep to let them know we'll be renewing that contract...

    Anybody want to buy a used Linux license?

  3. Re:What is it with the buffer overflows?` on Data Execution Protection · · Score: 1

    The stack is often (with good reason) used to pass parameters to a subroutine (function, what have you). It is also used to hold the return address. The problem with a buffer overflow attack is not "jumping to an address that's in the stack", it's when a setuid program allows an unprivileged user to overrun a parameter (on the stack) and write over the return address. The OS then "returns" to the bogus address, and runs code the user selected BUT with more privileges. Good coding practice will fix it (don't write to location 12 of a 5 byte vector). Even if the coders aren't being careful, there are ways to fix it (google for "stackguard", for example).

  4. Won't charge on Li-Ion With 300% More Power, Minutes to Recharge · · Score: 1
    You cannot do this while charging a battery. The voltage MUST be kept below the voltage of the battery or you will start doing funky things with the battery.

    If your input voltage is below battery voltage, current flows out of the battery and you discharge the battery. You don't want it (charging voltage) too much above the battery voltage, or bad things happen. Warped plates and cells drying out for lead acid batteries. Explosions and fires and such for other types. Hence the voltage regulator on your car.

  5. Re:A lot less invasive on California Wants GPS Tracking Device in Every Car · · Score: 1
    .. and given that we want to reduce the amount of gas consumed, that's a good thing. Once everybody is driving gasoline-free vehicles, then it will be time to revisit our tax base; but we're nowhere near that point.
    Where do you think the electricity comes from?
  6. Re:Watch for the Error.log file on Microsoft Anti-Spyware to Be Free of Charge · · Score: 1

    Re: MS products. They are all beta. You are paying to test for them, and they will ignore your feedback until you can make it happen again and again.

  7. Re:Some thoughts on GPS-Enabled Criminals In Massachusetts · · Score: 2, Funny
    Um, I fail to see the connection. Because saying, for a moment, that I accept your thesis of GPS being used to "restrict the rights" of innocent people, yes, using GPS to track convicted criminals is definitely "better". How are these two things even related?

    Both use GPS?

  8. Re:Business or Personal? on What Do You Charge for Tech Support? · · Score: 1, Troll
    Now that I have a gf ...
    Is this really an option for most /.ers?
  9. Re:Dyu think Microsoft will ever live it down ... on First Program Executed on L4 Port of GNU/HURD · · Score: 1
    Come on... Microsoft will never live up to HURD. Everybody knows it takes many Longhorns to make one HURD.

    *ducks*

    A hurd of ducks is called a "flock".
  10. Re:Which linux for a newb? on Interview with Debian Project Leader · · Score: 1
    Many are pretty easy to understand. If there's another Linux user around (friend, co-worker, "some guy down the hall") it might be worth installing whatever he/she is running. (I used to run Mandrake, when I moved to a new mostly-windows shop last year I installed Fedora since the only other guy in my building running Linux was a Fedora user.) As a user, Fedora isn't any harder for me to understand, but I've got a security blanket if I do run into something that I can't find the answer to online.

    I did run into problems with the Fedora Core II , GRUB, and a newer Dell computer, but we've now got 4-5 computers running various versions of Fedora (Core I worked on that box, Core II on this one, and the other guy seems to be having good luck with Core 3 on a couple of machines).

  11. Re:Article has a flair for the dramatic on Microsoft Advised To Learn To Love Linux · · Score: 1
    Speaking as a someone who works across the street from them and whose company depends on them directly for 90% of their business
    You work at Starbucks?
  12. Re:New wallets for everybody! on RFID Drivers' Licenses Debated · · Score: 1

    I'll just keep mine under my tin-foil hat. Hmmm, I wonder if that's exactly what "they" want me to do....

  13. Birthday Attacks on Implications Of The Recent Hash Function Attacks · · Score: 1
    The problem is that you can say basically the same thing, many different ways. Each of these ways will (probably) have a different hash.

    I'm Bob Fourney
    I'm bob Fourney
    I'm Bob Fourney.
    I'm Bob Fourney:
    I am Bob Fourney
    I'm Robert Fourney
    I'm Robert Anthony Fourney

    So, you could write the malicious code (or email) and play games with the syntax until you get the malicious functionality and a hash you like.

    It's easier if you can play with both the "good" message and the malicious one.

  14. Re:security on Why is Java Considered Un-Cool? · · Score: 1
    I can still flash my high beams at night...

    I meant (and should have specified) during daylight.

    can you give me one example of where writing past an array is a good idea

    No.

    I was thinking more along the lines of the compiler not needing to check that I was within bounds (so should not have said "writing past the end.."). For example, a subroutine does not need to check (or even to know) the bounds of the original array (declared elsewhere). If the subroutine knows where A[0] lives, and the programmer wants to mess w/ A[99], C wouldn't check, and wouldn't need to know how big A is. I guess that really falls under "directly manipulating pointers", since A[99] is the same as *(A + 99)

  15. security on Why is Java Considered Un-Cool? · · Score: 1
    The security features of Java are somewhat like "daytime running lights" on GM vehicles. We are admitting to ourselves that there is a class of people who are too stupid to figure out when to turn on their lights, but we want them to be able to drive "safely". Java has a lot of bounds checking and type checking built in, so it's "safer" for the coder who doesn't bother with these things. Is it better to educate the programmers about security, or have the lights come on automagikally? (Hint--they may, someday, have to code in another language and all security properties are NOT type properties).

    Sometimes the safest thing to do is to idle a car w/ the lights out, or to visibly flash your lights at an oncoming vehicle, but folks with daytime running lights don't have that option. Sometimes you might want to speed up some code by ignoring typing, writing past the end of an array, or directly manipulating a pointer.

  16. Re:politically motivated? on Senator Blacklisted by No-Fly List · · Score: 1
    He got on the list by buying his (one way) ticket(s) at the last minute. Having some other suspicious guy give the name "Ted Kennedy" probably didn't help. Once your'e on the list, you seem to be on it for life. If Ted asked me to help him get off of the list, I'd help him, eventually. That seems to be what happened.

    Sure it's a bad system. Like all of our current airport security it is designed to make the sheep feel like "somebody is doing something" more than to provide any real increase in security. Unlike taking nail clippers away from blue-haird ladies, this one is much more open to abuse. Nobody in either party is real surprised.

  17. Re:Recipe for Caramel Apple Powerbooks on PowerBook G4 Battery Recall · · Score: 0

    5. Profit !!

  18. Re:Possibly the best news ever... on IBM Moves To Enforce GPL By Summary Judgement · · Score: 1

    Oh yeah, ruin the ending

  19. Re:This is what we need.... on How To Lose An Election · · Score: 1
    This is exactly what we need, except w/out the computer. When I lived in Maryland, one voted by connecting a line (drawing an arrow) next to the candidate's name. You could look at it, and read the vote. A machine could look at it and figure out who you voted for. If the process was messed up, they could revisit the paper ballot

    Do we really need to try so hard to give the franchise to people who are too stupid to figure out such a simple process? I think not, but for those who will disagree: what makes you think slapping a computer (more difficult to operate than a grease pencil) on the front end will fix anything?

  20. Re:This is why there need to be reform on How To Lose An Election · · Score: 1

    The voter doesn't even have to touch the paper ballot. It could be displayed behind a glass window. He/she hits a "yes, that's my vote" button to drop it in the bucket or a "no, start over" button to shred it (right before their eyes) and start over.

  21. SCOX down 7.5% in 3 hours on SCO's claims Against Daimler-Chrysler Thrown Out · · Score: 5, Funny

    New yearly lows. Heck of a business plan

  22. Re:Moms and grandmas not always so dumb on Microsoft Responds to IE Criticism · · Score: 1

    What did she use to download it?

  23. Re:delays on Cassini-Huygens Reaches Orbit Around Saturn · · Score: 4, Interesting
    ...some sort of technology that allowed some independent operation on the part of the probe might be a valuable investment for the next go-round.

    It's in there this time. See:

    http://www.cnn.com/2004/TECH/space/07/01/cassini.o rbit/index.html

    NASA also designed Cassini to be independent because the time lag of one hour and 24 minutes -- the time for light to travel 930 million miles from Saturn to Earth -- means controllers on Earth cannot immediately react to unexpected problems.

    Instead, Cassini operates on its own.

    "The spacecraft has been programmed to continue even in the event of an emergency," said Mitchell in a statement. "We don't want Cassini to call home if a problem arises, we want it to keep going."

  24. Re:Amazing. on Cassini-Huygens Reaches Orbit Around Saturn · · Score: 1
    Er... The speed of light's pretty quick.
    But when you're sending data over a noisy channel, you use redundancy (error correcting codes). To send a lot of data (a picture) might requre time on the front end for processing, more transit time before the entire file arrives (determined by bandwidth and the overhead of this redundancy), then maybe some processing time on this end.
  25. Re:Sure but does it require new equipment on IEEE Approves 802.11i · · Score: 1

    they are not incented

    Did you just architect a new word?