Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
User Journal

Journal Journal: Next PlayStation to lock out used games

"Buckle up, Sony enthusiasts. A tipster has told Kotaku that the PlayStation 4 is named "Orbis," and that it will feature an anti-used game system, offer no backwards compatibility with PlayStation 3 titles, and ship in holiday 2013. " Story is at gamespot.com.

What does this system offer that would compel a user to "upgrade"?

Comment Re:_slashdot_ at it again (Score 1) 284

What's to stop anyone from creating their own site? Slashcode is free. Meld that with something like digg (except with clueful readers) and the users can control the submissions (since your gripe seems to be with the editors of this site). Sounds easy, but I'll bet it isn't.

My guess is the editors have so many stories to choose from, they've got some keyword filters set up and pick out of that lot. That would explain why there are so many stories along the same lines, which gets kind of repetitive.

Comment Re:InfoWorld at it again (Score 1) 284

Nice tip. You can improve on it like this:

#! /bin/sh
ssh user@hostname -i $0
exit

The $0 (dollar-zero) expands to the name of your script (including path) so you don't need to be in the same directory. Now add $HOME/.ssh to your PATH and you can run it from anywhere.

Comment Re:What about (Score 2) 185

I'm finding distractions are a huge problem for me, too. I didn't realize I was so sensitive to distractions until recently. It seems to take me about an hour to really get in the zone on a problem, and having to multitask something running in the background kills that deep thought process. I wonder how common that is or if there are tips to overcome it...

Comment Re:Just shocked! I thought hackers were night owls (Score 1) 185

That's fine if you're working alone. In a team environment, waiting for someone to roll in "when they feel like it" so you can ask them a question is a real pisser. I'm not a fan of clock watching by any means, but we eventually agreed to a common set of hours that everyone was expected to be in at (like 11:00am-3:00pm) and I thought that worked pretty well for most people.

Comment Data integrity (Score 3, Interesting) 414

This is my personal data and it is starting to become unbelievably unruly to deal with as far as data integrity and security are concerned.

Keep all your important files in a version control system. Personally, I use Perforce (it's free for 2 users or less). That gives you: multi-revision history and checkin comments, an easy way to pull a subset of files to any computer in your house, and peace of mind that you don't need to worry about kids deleting anything important as it's all stored on the server with history. Also easy to see what has changed on any computer and check those files in. And there's a big win for data integrity checks: Perforce stores the checksum of all files (and revisions) and can easily check that every file still matches the checksum in the central database. If you have any disk corruption, you'll know about it when you run 'p4 verify -q //...'. You can store files of several gigabytes each with no problem.

On top of this, I use rsync to copy the server data onto backup drives. I'm also looking at storing backups online, but haven't taken that step yet.

I've been using this system for years and I couldn't imagine being without it. It's so easy to find and retrieve exactly what I want - my resume 5 revisions ago, my tax return, photos from 2003. Even without that, the data integrity checks give a lot of peace of mind.

Slashdot Top Deals

Beware of Programmers who carry screwdrivers. -- Leonard Brandwein

Working...