Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Christian Theocracy (Score 1) 1168

"This is another power grab by the religious right"

I think this is just a bunch of politicians spending money and time on something stupid. Politicians either trying to grab votes from the more radical religious voters or just radical religious politicians trying to force their world view on other people. I don't think these people can be considered one coherent group like your statement suggests.

Comment Edge cases (Score 1) 298

Good code has comments for edge cases, I mean "why the fuck are you checking if foo is less than bar?" with "//checking if foo will not overflow because ..."

Edge cases are by definition very unlikely, usually the code that handles them are bugfixes. Too many times I come across code that is full of bugfixes for those edge cases but no comments whatsoever, to me those kind of comments are more important than method comments (aka javadoc).

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

As opposed to what? Subversion would be completely unusable in this situation, at least git users can push and pull from each other peer to peer, which you would only do if you REALLY need it, because it is kinda of a pain in the ass compared to push/pulling to origin. Plus you CAN carry on your own work keeping a normal commit history as long as you don't want to share it with anyone until the servers come back online.

Really, it is "the greatest thing ever (for source control)".

Comment Re:How much would NoScript mitagte the FF Vulns? (Score 1) 237

I don't think stuff actually loads that much faster with ghostery because those analytics scripts and facebook buttons are really small and the browser makes up to X connections (8 usually) per domain at the same time. BUT sometimes the page hangs waiting for a third party domain to respond, this rare cases don't happen anymore.

Comment Re:How much would NoScript mitagte the FF Vulns? (Score 1) 237

The thing I don't get is the analytics scripts, do you really need that many? One or two I can understand, but with that many you won't even have the time to look at all the graphs they can throw at you. It is not like they are generating revenue for your website...

Comment Re:How much would NoScript mitagte the FF Vulns? (Score 1) 237

This is true, I was amased at how much crap ghostery caught. At first I thought that a common news website would have ads from two or tree domains and a couple of analytics scripts from third parties, it filters around 50 different stuff from third parties, the chance of any single one of them being compromised is pretty big...

Slashdot Top Deals

"Everything should be made as simple as possible, but not simpler." -- Albert Einstein

Working...