Comment verizon reseller (Score 1) 208
Upside vs. vzw branded: It's really cheap. $10/mo for a basic plan, and $.015/mb $.015/min $.01/txt PAYG. Or $30/mo for 1.5GB, 750min, 750txt.
MVNO's are by nature a little flakey, and i've seen warnings on web forums about the puppy operator being a previous scam artist. I've used it for a couple years with no issues.
Comment Rolling tardis (Score 2) 151
Comment happy parent (Score 1) 18
Comment Some actual data (Score 1) 135
The EPA recommends no more than
It is an open question whether that is really a safe long term limit, as these things do tend to accumulate in the body.
Soylent 1.5 has 21.39g (.021 mg) of cadmium per 500 calorie serving.
So, as per the EPA standard, if that person ate mostly soylent, 4 servings per day (2000 calories), you would have
Note the definition of mg/kg/day is how many mg of something you can consume per kg of body mass. The soylent guy's google spreadsheet reports mg/kg of the toxic substances in the soylent itself, which is irrelevant. This suggests that he doesn't understand what he is talking about. What a surprise.
Comment Re:DAK! (Score 1) 31
Comment Re:Measuring favourites (Score 1) 328
Comment yes but it blows the sound quality (Score 1) 295
Comment IOS device/app management still sucks (Score 1) 295
Comment netdot (Score 2) 165
"Netdot is an open source tool designed to help network administrators collect, organize and maintain network documentation."
Comment Re:BackupPC (Score 1) 306
rsync can handle hard links, yes.
What is difficult is that there are so many hard links and so many seeks required that it takes way too long to be practical.
~@backup3% df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
Comment BackupPC (Score 3, Informative) 306
http://backuppc.sourceforge.net/
Its primary disadvantage is the logical consequence of all those hard links. Duplicating the backup store, so you can send it offsite, is basically impossible with filesystem-level tools. You have to copy the entire filesystem to the offsite media, typically with dd.
It also can make your life difficult if you're trying to restore a lot of data all at once, like after a disaster. You take your offsite disks that you've dd' copied, hook them up, and start to run restores.
The hard links mean lots and lots of disk head seeks, so you are doing random i/o on your restore. This is really slow. If I ever have to do this, my plan is to buy a bunch of SSD's to copy my backup onto. Since there are no seeks on SSDs it will be much faster.