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

 



Forgot your password?
typodupeerror
×

Comment Re:Google did it (Score 1) 70

Most voice-mails are of *terrible* quality (listen to them sometime - people mumble, etc.). But even still GV does a pretty good job. And it does a very good job with numbers. So it's great for that person who left you a long rambling voice-mail with their phone-number half-way through. Oh - and the phone number will be "clickable" in GV to boot.

Comment Re:Can someone answer me this? (Score 2) 164

I always thought /.'s moderation system was pretty clever like that. It rewards commitment. Stackexchange has taken it a bit further and limits the type of things you can do until you gain some "creds" by participating on the site (can only mod up until you get the "right" to mod down). I don't know why these systems aren't more common? The childish trolls don't have the patience to gain trust and those who commit to a site are the sort of community you want to foster.

Comment Re:Give up "popular music" != calcify. (Score 1) 361

Ah, and *now* I find this paragraph:

"Kalia himself indicates the study refers to popular music and not specific genres or time periods with the title of his analysis: “Music was better back then: When do we stop keeping up with popular music?” It’s not that you stop listening to new artists or even discovering new styles as you age, just that you won’t care as much who is taking home platinum records and leading the iTunes downloads race."

That's a long way from calcifying...

Comment Give up "popular music" != calcify. (Score 4, Insightful) 361

I'm in my late 30's (*sigh*) and my music tastes have only expanded. Thing is - they expanded into areas that still aren't the current "popular music." It's difficult to tell how that would be represented in this report.

Granted I'm likely an outlier of sorts but it's not clear that the methodology would consider me such.

Submission + - Australia Outlaws Warrant Canaries (schneier.com)

An anonymous reader writes: In the US, certain types of warrants can come with gag orders preventing the recipient from disclosing the existence of warrant to anyone else. A warrant canary is basically a legal hack of that prohibition. Instead of saying "I just received a warrant with a gag order," the potential recipient keeps repeating "I have not received any warrants." If the recipient stops saying that, the rest of us are supposed to assume that he has been served one.
Lots of organizations maintain them. Personally, I have never believed this trick would work. It relies on the fact that a prohibition against speaking doesn't prevent someone from not speaking. But courts generally aren't impressed by this sort of thing, and I can easily imagine a secret warrant that includes a prohibition against triggering the warrant canary. And for all I know, there are right now secret legal proceedings on this very issue.
Australia has sidestepped all of this by outlawing warrant canaries entirely:
        Section 182A of the new law says that a person commits an offense if he or she discloses or uses information about "the existence or non-existence of such a [journalist information] warrant." The penalty upon conviction is two years imprisonment.
Expect that sort of wording in future US surveillance bills, too.

Comment Re: Centralized on GitHub! LOL! (Score 1) 116

GitHub negates the decentralization of git in order to make it practical for real world use.

Negates? No - it just provides a single location through with to share code. You're confusing "using a central repository" with "requiring a central repository." It is just above trivial for any git project to switch to a new "central" server through with to share code.

Comment Re: Centralized on GitHub! LOL! (Score 2) 116

# git remote add newupstream git://new.server/my-project
# git push master newupstream

Aaaaand, done.

You're not going to do that with Subversion anytime soon. Sorry - I like SVN. But to claim that having a central repository is anything like *requiring* a central repository is just missing the point.

Comment Re:It depends (Score 1) 486

Which makes it very strange that they would think to write a paper on it. It's not even worth a blog post.

Not to mention that in the Java implementation they're writing to a BufferedWriter. So even with the StringBuilder they're comparing "concatenating a string, writing it to a buffer and writing that to disk" to "copying strings to a buffer then writing that to disk."

If you do more work it takes longer. QED.

Comment Re:It depends (Score 1) 486

In the Java application they're using a BufferedWriter as well - so they're buffering before the OS buffer.

It seems pretty clear to me that "concatenating a string then writing it to a buffer and flushing that to disk" would be faster than "writing a bunch of strings to a buffer then flush that to disk." They're basically copying that data around at least twice.

Slashdot Top Deals

Beware of Programmers who carry screwdrivers. -- Leonard Brandwein

Working...