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

 



Forgot your password?
typodupeerror

Comment Blank Media Levy? (Score 1) 296

To the Canadians out there, if this gets big, do you think he'll be able to collect on the Blank Media Levy?

As it stands, every blank CD-R sold is subject to a 21-cent levy (77 cents if it's an Audio CD-R). The question is, which part of the retail chain gets to take the hit on the levy? Retailer, Distributor, Label, Artist, or Consumer? Who will get to see those 77 cents at the end of the day?

This might be a neat way for those starving artists to finally start collecting payment for their work -- selling blanks for fun and profit.

Comment IPv6 Adopters Rejoice (Score 3, Insightful) 217

We've been joking about it for years, but we finally have an answer for the ages-old question of "why would I need an IP address for my fridge?"

Now, we just need some compelling reasons for networked sinks, sponges, cutlery, and microwaves. Not Talking Toasters though. They'd keep us on IPv4 for another decade.

Comment Re:How does it work with non-static IPs? (Score 2, Informative) 346

There aren't any strict rules saying that people have to pull straight from your laptop.

In terms of non-distributed VCSes, would you ever host a your repository on a machine that other people couldn't access? It would always be somewhere publicly accessible.

For this kind of situation, you'd probably have a public development repo that's separate from your official repository. This would give you a set of repositories that looks like:

official - The authoritative repository, controlled by some kind of integration manager

jim-dev-public - Code that Jim is ready to unleash upon the world, but not upon the official repository
jim-dev-private - Code that Jim is currently working on from his blimp with irregular Internet access

fred-dev-public, alice-dev-public, bob-dev-public - These are the only ones that you need to pull from. Fred, Alice, and Bob can have as many private repositories as they'd like, and will share their work when it's ready.

Supercomputing

Roland Piquepaille Dies 288

overheardinpdx writes "I'm sad to report that longtime HPC technology pundit Roland Piquepaille (rpiquepa) died this past Tuesday. Many of you may know of him through his blog, his submissions to Slashdot, and his many years of software visualization work at SGI and Cray Research. I worked with Roland 20 years ago at Cray, where we both wrote tech stories for the company newsletter. With his focus on how new technologies modify our way of life, Roland was really doing Slashdot-type reporting before there was a World Wide Web. Rest in peace, Roland. You will be missed." The notice of Roland's passing was posted on the Cray Research alumni group on Linked-In by Matthias Fouquet-Lapar. There will be a ceremony on Monday Jan. 12, at 10:30 am Paris time, at Père Lachaise.

Comment Re:I'd rather seen they moved to Subversion (Score 1) 277

Why wait for a new project? Git and Mercurial both support some bidirectional SVN integration. This means that you can pull changes from the SVN repo, and do your own DCVS thing, then push your commits back to SVN. Your project partner can keep using the SVN repository, and generally doesn't even know that you're trying something new on your end.

Assuming that you're using the conventional SVN project structure, all you need to do is a quick git svn clone --stdlayout file:///path/to/your/repository and you'll be up and running. You can make your changes, commiting to your local git repository, then just git svn dcommit to push your changes back up to SVN. If it bothers you about uncommitted changes just wrap it up in a git stash; git svn dcommit; git stash pop to store your working copy (eg, your project file, temp files, partially edited config file containing passwords and whatnot) commit and then restore all your extra files. To pull changes from SVN, you just need to git svn rebase to apply your changes to the current head.

Do note that branches and tags aren't propagated back up to SVN if they're created in Git, but that's not such a big deal. You can still merge stuff down into master and push it up to the SVN repo. (There might be a way to get it to work with branches, but I haven't looked at it)

Go give it a try on a private repository. There's plenty of documentation out there (for once), so it's easy to get started. Just beware -- you might like the new workflow.

Comment Re:Whatever (Score 3, Interesting) 351

For factual reference, Thompson claims to not have sent it directly to the mother:

"I sent it to Strauss Zelnick's attorney. I would never send it to his mother," Mr. Thompson told me.
I'll take Thompson at his word that he sent it through the attorney...however, I suspect that this is not good-will, but a byproduct of the plausible notions that he was unable to find the address by any reasonable (eg, non-stalker) means, and that he probably realizes the potential PR nightmare that could be caused by actually sending the letter directly to the said family member.

Slashdot Top Deals

Artificial intelligence has the same relation to intelligence as artificial flowers have to flowers. -- David Parnas

Working...