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

 



Forgot your password?
typodupeerror
×

Comment Re:even when in offline mode (Score 3, Informative) 117

Well I kind of chuckled when you said

How did it take you that long to read the handful of comments that existed at the time?

because it couldn't make more clear how (as per /. etiquette, of course, I know) directly jumping to the comment section is your usual MO, when in reality, the occasional guy who actually does spend a few minutes on reading TFA is not unheard of.
Therefore it could have been a funny and subtle troll as well; thanks for ruling out that possibility :).

Besides, It's also very possible that the poster just reads /. the way I do, which is skimming the front page for stories of potential interest (i know, i know), opening them in background tabs, and only /then/ going through the opened stories, eh, comment sections, one by one. So there's quite a delay between clicking on a story (causing comments to be loaded), and actually looking at it for the first time.

Comment Re:AdBlock Edge. uBlock. AdBlock Latitude. (Score 1) 286

I like to keep FF running all the time, too, but it (or the javascripts on certain sites) consume just too much CPU. here's my crude cure

#!/bin/sh

if [ -f /tmp/.ffstopped ]; then
pkill -CONT firefox; pkill -CONT npviewer; pkill -CONT plugin-container
rm -f /tmp/.ffstopped
else
pkill -STOP firefox; pkill -STOP npviewer; pkill -STOP plugin-container
touch /tmp/.ffstopped
fi

I.e. it's kind of a toggle. Works best when bound to a key combo of the window manager or so. Process names might also differ on Linux

Comment Re:IPv6 and Rust: overhyped and unwanted! (Score 1) 390

That's only because dumb people (like you) don't realize in the first place when it would be useful. p2p comms with both ends behind a NAT?
Sure, i mean routing your shit through a 3rd party server also makes it "work", but it's arguably undesirable, except for dumb people (like you, again) who do not care. Happy Skyping.

Comment Re:IPv6 and Rust: overhyped and unwanted! (Score 1) 390

God dammit. I see what you're trying to say, but seriously this is so wrong. It's no big deal (i.e. easy to implement) to have End-to-End connectivity and still not be "exposed" to the oh-so-hostile Internet.
It is a big deal (i.e. impossible) to actually get End-to-End connecitivity when you do need it but find yourself behind a (carrier grade) NAT.

Breaking this one fundamental principle for the added comfort of being able to just deploy a NAT and feel reasonably secure is totally not worth it. Really, stop.

Slashdot Top Deals

The Tao is like a glob pattern: used but never used up. It is like the extern void: filled with infinite possibilities.

Working...