Slashdot Mirror


User: DarwinSurvivor

DarwinSurvivor's activity in the archive.

Stories
0
Comments
2,678
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,678

  1. Re:Delete more on Ask Slashdot: Best On-Site Backup Plan? · · Score: 3, Insightful

    A 10MP image in RAW form is probably at most 20MB (a little overhead for meta data, etc) in size. At current HDD prices ($150/2TB == $75/TB == $0.073/GB) that comes to about 0.14 CENTS per photograph ($0.0014/photo). Lets say you can go through your photos and delete 20 photos per minute (3 seconds per photo on average is reasonable), that's 1200 photos per hour, or $1.72 worth of HDD space per hour (for your first copy). Even if you have 4 redundant backups (5 total copies), you are still deleting photos at $8.58/hour, which is below minimum wage for any modern country. Your time is worth more than that and I doubt you would feel comfortable having a minimum-wage intern deciding which photos are worth keeping.

    Another way to look at it is with each photo (with 4 redundant backups) costing $0.007 to store, if you delete 10,000 photos ($70 HDD savings) is that really worth the risk of a client possibly wanting a $100 print of even ONE of those photos?!?

    Moral of the story: With today's HDD prices, unless you have a lot of VERY big files or can automate deletion, deleting stuff is actually more expensive than backing it up 4 times.

  2. Re:Offsite != cloud on Ask Slashdot: Best On-Site Backup Plan? · · Score: 1

    If you decide to encrypt your offsite backup, make sure you have another offsite backup (safety deposit box, another friend, lawyer, etc) of the encryption keys!!!

  3. Re:Magnet links? on Content-Centric Networking & the Next Internet · · Score: 1

    Ummm, the same way we do it with e-mail. VOIP is designed so there is more than one domain.

  4. What do you have now? on Ask Slashdot: Simple Way To Backup 24TB of Data Onto USB HDDs ? · · Score: 1

    Sometimes the easiest way to duplicate (back up) data is to simply duplicate the hardware it's already on. If it's on a 16-disk (x 2TB) NAS system, build another one. If it's on tape, buy more tapes, if it's on random HDD's scattered all over the place, then you have bigger problems to deal with first (like building a NAS box)!

  5. Re:It's not stop-and-go traffic, it's AT&T's n on Google's Self-Driving Cars: 300,000 Miles Logged, Not a Single Accident · · Score: 1

    What would reception have to do with anything? If you think the cars are using GPS to stay on the road, that would be *disastrous* due to the ~1m accuracy of non-military GPS (under GOOD conditions) and the fact that roads aren't even mapped to that accuracy. The only thing I can think of that the cars would need GPS for is navigation (the equivalent of a built-in TomTom).

  6. Re:Field dependent requirement on Ask Slashdot: How Many of You Actually Use Math? · · Score: 1

    Exactly. To be a successful software developer, you need to be proficient in at least TWO things. Software development, and whatever field you are writing software for. If you are writing tax software and don't tax brackets, income tax, deductions, etc, then you are NOT going to succeed. The same goes for understanding shipping/receiving to write inventory software, understanding physics to write a game engine, understanding wood grain and densities to write lumber-cutting algorithms, etc. If you only know how to write software, you're not going to become very successful as a software engineer.

  7. Re:Oblig. on Man Orders TV On Amazon, Gets Shipped Assault Rifle · · Score: 1

    I'll bet Randall never expected THAT comic to become a obligatory xkcd reference!

  8. Re:Sounds like win-win to me! on Man Orders TV On Amazon, Gets Shipped Assault Rifle · · Score: 1

    And wouldn't that ALSO suggest that UPS was shipping a gun in the first place? Doesn't that need one HELL of a warning sticker of some kind...?

  9. Re:"We have to expect this sort of thing"... on NASA Morpheus Lander Test Ends In Explosion · · Score: 4, Informative

    It wouldn't have taken quite so long if they had arrived from UP-WIND and knew how to AIM those foam-cannons they have strapped to their trucks. Seriously, it was like watching a 3 year old trying to hit the toilet bowl from the hallway!

  10. Re:They re-engineer it too damn often on GNOME Developers Lay Out Plans for GNOME OS · · Score: 1

    Gnome and KDE have changed their UI exactly ONCE in the last 5 years and Debian is the only distro to have changed their UI twice in that time, once when gnome was updated and now that they are switching to XFCE. Leave your FUD outside.

  11. Re:How long does it take? on Sensor Uses Body's Electrical Signature To Secure Devices · · Score: 1

    You don't have to use the SAME device to get the digital version.

  12. Re:Magnet links? on Content-Centric Networking & the Next Internet · · Score: 1

    Hopefully VOIP will solve that problem soon.

  13. Re:How about this ... on Ask Slashdot: Best Way To Jump Back Into Programming? · · Score: 0

    Not if you're writing in Basic or Assembly, but it can have some pretty severe stack-related issues in function and object oriented languages if your are not VERY, VERY, VERY careful.

  14. Re:Riiight... on Best Buy Founder Makes $8.5 Billion Bid To Take Company Private · · Score: 1

    Not kidding, $19.99 was actually what I paid for my first wireless router (wrt64gc) AT BestBuy! This was about 6-9 years ago though and you're lucky to find one under $80.

  15. Re:Took yer time on Free Software PS2 Emulator PCSX2 Hits 1.0 · · Score: 5, Funny

    Yeah, but NASA didn't have to deal with Sony's BS.

  16. Re:well.. crap on Demonoid Shut By Ukrainian Authorities · · Score: 4, Insightful

    You'd be lucky to get them to acknowledge that grey-area copyright and out-of-copyright materials even exist in the first place!

  17. Re:Terrible, just awful on Australian Agency Rules Facebook Pages Responsible For Comments · · Score: 1

    I think using the term "skinhead" in the article itself should get them in trouble before the regulators even scroll down the comments section...

  18. Re:Forced Upgrades? on Why We Love Firefox, and Why We Hate It · · Score: 1

    I have 11 addons installed in Firefox and I haven't seen one of those dialogs since at least version 4 or 5.

  19. Re:yes and no on UEFI Secure Boot and Linux: Where Things Stand · · Score: 1

    It's not really a subsidy when your subsidizing yourself...

  20. Re:How about this ... on Ask Slashdot: Best Way To Jump Back Into Programming? · · Score: 1, Insightful

    Why would you need to "unlearn" non-object-oriented styles? As long as you aren't using goto's, all of your previous knowledge can still be used in modern object-oriented code. You just need to add some more paradigms to your repertoire. In case you didn't notice, the stuff inside the function is still very much procedural just like it always has been, it's just now you say "object.function(arg1, arg2)" instead of "function(object, arg1, arg2)" and "new Object(arg1, arg2)" instead of "create_object(arg1, arg2)". There are some other differences once you get into more advanced stuff (inheritance, interfaces for you java-folk, etc), but it's still the same beast just with a new fur-lined coat.

  21. Re:Terrible, just awful on Australian Agency Rules Facebook Pages Responsible For Comments · · Score: 2

    The ruling was by the ADVERTISING STANDARDS COUNCIL. They have NO jurisdiction over normal websites. The facebook pages they are talking about were being used AS advertisements.

  22. Re:Good. on Australian Agency Rules Facebook Pages Responsible For Comments · · Score: 1, Insightful

    "Your comment has been held for moderation". There, see, that wasn't so hard now was it? If they are going to delete offensive comments every 12 hours, why not instead approve the non-offensive ones every 12 hours?

  23. Countdown on MSL Landing Timeline: What To Expect Tonight · · Score: 3, Informative

    Would it really be so much to ask for a link to the Countdown?!?

  24. FreeBSD Jails on Bedrock Linux Combines Benefits of Other Linux Distros · · Score: 2

    So from what I can tell in the "Introduction" (haven't reald it all yet), it's sort of like FreeBSD's jails but without them getting their own IP addresses and being able to use a different distribution in each jail?

  25. Re:Forced Upgrades? on Why We Love Firefox, and Why We Hate It · · Score: 1

    Memory does become an issue on multi-user systems. Our home desktop has 4GB of ram and if 3 people leave firefox running in their session, the computer starts swapping like 10-year-olds at a Pokémon Card convention!