Slashdot Mirror


User: victim

victim's activity in the archive.

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

Comments · 346

  1. Re:Ammo for the lawyers on Apple Patents Alternative To NFC · · Score: 1

    How on earth does a May 2011 hackaday come a year and a half before an October 2009 patent filing?

    Patents: All of the words in the laws are important.

  2. Re:Another Tesla museum? on The Oatmeal's Fundraiser Tops $1M Toward Tesla Museum · · Score: 1

    since most people are not going to happen to go to Belgrade.

    Which is good, because if most people were in Belgrade that would be slightly more than 10 people per square meter.

  3. This of you who refuse to read French on From the Nuremberg Toy Fair, a New Linux System For RC Cars · · Score: 4, Informative

    might appreciate the vendor's site in English.

  4. Re:Do they self destruct like other Greens? on WD Launches 3 Terabyte HD · · Score: 1

    And as soon as everyone is omniscient about the undocumented behavior of their devices and the "documented only in source code" behavior of all code of their systems this will be a brilliant solution.

  5. Re:Do they self destruct like other Greens? on WD Launches 3 Terabyte HD · · Score: 1

    I will respond to your dickish tone with my own:

    Ever here of a log file?

    How about if you are monitoring the S.M.A.R.T. data to watch for signs of drive failure? You will destroy the drive instead. (Especially if using Munin, because it doesn't show Load_Cycle_Count by default so you won't see it take off.)

    How about when your OS is clever and tries to reduce disk use by only flushing the OS block cache intermittently, and that interval is slightly greater than the park timer? Your machine under continuous use parks and unparks continuously.

    So there is this little computer in the drive making park decisions. Shouldn't it notice that the drive is parking too often? WD knows how many parks it built the drive to survive, it knows how frequently it is parking. Cap the park rate! Problem solved.

  6. Re:Do they self destruct like other Greens? on WD Launches 3 Terabyte HD · · Score: 1

    So? What is your Load_Cycle_Count? That is what is being discussed here. The drives are rated for 300,000. I have ones near a million that haven't failed yet, but have also failures around 600,000.

  7. Location does work on iPad Review · · Score: 1

    My iPad has correctly found me in all four locations I've tried by triangulating WIFI access points.

    Apparently mobile users with GPS have tagged my access points.

  8. So? on Coping With 1 Million SSH Authentication Failures? · · Score: 4, Interesting

    If you really have secure passwords, the random guessers aren't going to get them. Log it and move on.

    I get thousands of Chinese hackers attempting to break into the battery monitor in my tool shed, big deal. I don't know why my battery voltage and solar current is so important to them, but they can knock themselves out all day.

    If the logs bother you then install fail2ban and configure it to lock people out after a few bad guesses. (Then be ready to unlock yourself from an alternate IP when you inevitably lock yourself out.)

  9. Re:Use the Coax to pull CAT 5e cable on Suggestions For a Coax-To-Ethernet Solution? · · Score: 1

    Ethernet coax was 50ohm, the stuff in your walls is probably 75ohm. They are not interchangeable.

    Might I suggest you join us in the 21st century and just use 802.11n? USB dongles can be had for about the cost of a cat5 patch cable and 802.11n is as fast as 100mbps ethernet.

    Plus you gain some nice lightning damage protection by eliminating the second electrical path.

  10. Re:Green ? on "Green" Ice Resurfacing Machines Fail In Vancouver · · Score: 1

    In general large power plants are more efficient than small point of use engines, this is traded off against transmission losses and can end up either a win or a loss for total input energy.

    For cleanliness, power plants run much cleaner than small point of use engines and they don't concentrate the adverse effects in close proximity with people. (You may need to pee, but don't do it in the pool.)

  11. Reassess your place in the universe, techmage. on Getting Company Owners To Follow Their Own Rules? · · Score: 3, Insightful

    What makes you think the owner's information should be available to you in the IT department?

  12. Re:Atom 330 Desktop/Server - second this on Low-Power Home Linux Server? · · Score: 1

    I use a few of these in different place. It won't get you to the 10 watt range of the reflashed routers, but you save much time in wrestling fringe distributions in to working the way you want them to. (I have wrtsl54gs boxes running OpenWRT too, Atoms are more convenient.)

    Do replace the motherboard fan if you get the intel motherboard. It will probably fail soon and cause your CPU to start thermal throttling. I just took it off and placed a full sized fan on the case vents over the motherboard blowing down. It runs cooler, quieter, and longer.

  13. There is no chip. on NCSU's Fingernail-Size Chip Can Hold 1TB · · Score: 5, Informative

    They have made a material which could if you designed a suitable chip and associated circuitry, and figured out how to manufacture it at large scale, would let you store a terabyte of data on a fingernail sized chip.

    The whoever wrote the article title should be embarrassed, as should timothy for propagating it.

  14. Re:I don't get it on Replacements For Adobe Creative Suite 3 Apps? · · Score: 1

    I should add, my copy of Illustrator for Mac is 5 years old and works like a champ. So, depending what you do with CS you may not even care.

  15. Re:I don't get it on Replacements For Adobe Creative Suite 3 Apps? · · Score: 1

    No, but Adobe is. They have a long history of doing stupid things, then waiting until the actual consumer release to "discover" that their product has a problem and not fixing it until the next major release thereby preventing their users from upgrading OS.

    In this case CS3 may actually work, they just aren't going to promise it so people will pay to upgrade and Adobe doesn't have to do any support on CS3.

  16. Re:Crazy Idea - during his time... on Nokia Developed Wireless Power-Harvesting Phones · · Score: 4, Funny

    They are asking about radio, not noodles.

  17. Re:First you need root on the box on Intel Cache Poisoning Is Dangerously Easy On Linux · · Score: 4, Insightful

    The significance of SMM buried rootkits is that you can remove and shred the hard drive of your compromised machine, replace it with a new one, do a fresh install, and still be compromised.

  18. Workaround is disaster for laptops on Ext4 Data Losses Explained, Worked Around · · Score: 5, Insightful

    The workaround (flushing everything to disk before the rename) is a disaster for laptops or anything else which might wish to spin down a disk drive.

    The write-replace idiom is used when a program is updating a file and can tolerate the update being lost in a crash, but wants either the old or the new to be intact and uncorrupted. The proposed sync solution accomplishes this, but at the cost of spinning up the drive and writing the blocks at each write-replace. How often does your browser update a file while you surf? Every cache entry? Every history entry? What about your music player? Desktop manager? All of these will be spin up your disk drive.

    Hiding behind POSIX is not the solution. There needs to be a solution that supports write-replace without spinning up the disk drive.

    The ext4 people have kindly illuminated the problem. Now it is time to define a solution. Maybe it will be some sort of barrier logic, maybe a new kind of sync syscall. But it needs to be done.

  19. There will be no recommendation. on How To Handle Corporate Blackmail? · · Score: 2, Informative

    Don't worry about your recommendation. All a large company will do is confirm that you were employed.

  20. Re:Who do you trust with a death ray? on Obama Transition Team Examining Space Solar Power · · Score: 1

    Your numbers are likely off by several orders of magnitude. 100W/m2 is 1/10th the energy density of direct sunlight. i.e. you can do ten times better than that with a flat mirror, no concentration.

    Who says it has to a be a centimeter wavelength? How about the 95GHz pain beam? (I haven't checked to see what the atmosphere does at that wavelength, I would suspect clouds block it at the very least, but given that light is shorter wavelength and it penetrates well, I'm fairly certain there will be something between cm and nm that also works well.)

    Of course in normal operation your 1000 units would beam to 1000 different reception sites at a safe level, it is only when you want to destroy someone that you divert them all to your enemy.

  21. Re:Who do you trust with a death ray? on Obama Transition Team Examining Space Solar Power · · Score: 1

    I can only use my nuclear power plants against my own people. The solar death ray can be targeted anywhere on the planet.

  22. Who do you trust with a death ray? on Obama Transition Team Examining Space Solar Power · · Score: 2, Insightful

    Whenever you read "spaced based solar power", just replace that with "municipal scale death ray". Now decide who should be in control of it.

  23. I don't think this applies to real HTTP passwords. on Safari and Chrome: Tied For the Worst Password Manager · · Score: 0

    Reading the article, this doesn't seem to be about real HTTP authentication passwords, but rather about the interaction of form autofilling and fields that an application might consider to be a password. (Like slashdot uses.)

    Granted, somewhere the HTTP standards committee failed the community making ad hoc form based passwords more common than real authentication. I suspect the lack of a "logout" concept has a lot to do with that, though designers' desire to spread their "look and feel" over all elements also contributes.

    If you use HTTP authentication this does not apply. If you use <input type=password ...> then, yeah, autofillers may autofill.

  24. Go install fail2ban on Distributed, Low-Intensity Botnets · · Score: 2, Informative

    fail2ban will watch your log files and when it sees probing will firewall ban the offender. It has virtually eliminated probing attacks on my networks of machines. Sure, a distributed botnet can still probe you, but I haven't seen that happening.

    Do be careful though...

    • Have two different IPs you can come from. You will eventually ban yourself by being stupid. It took me a year, but I finally banned myself while working on some backup scripts.
    • It is written in python and uses 3M of RAM plus maybe 20M more virtual memory. Sure, you high end gamers have 100 times that in your video card alone, but if you are running on a 64M VPS or a 32M router it is something to think about.
    • You can have it watch much more than ssh if you wish.
    • If you forward the syslogs of all your machines to your firewall and run fail2ban out there you can protect all of your machines at the first transgression and only have to manage one copy of fail2ban.
    • If you are running virtual servers, consider running their syslogs out to the host box and running fail2ban there. Works well.
    • There should be a memory efficient alternative, maybe I'll have to write that.
  25. Just Hype on "Cyber Monday" Expected To Draw Virtual Crowds · · Score: 4, Insightful

    Cyber Monday is just marketing hype. The peak shopping days come later. The goal is to have a recognizable name that people will google up and read their customers' ads. I suppose they owe a big thank you to Soulskill for getting their message out.

    Maybe we can have a slashdot article for Sears' next "White Sale".