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

 



Forgot your password?
typodupeerror
×

Comment Re:OT: Why can't I see subject lines? (Score 1) 567

Whoops, there's an error. The Slashdot filter removed an asterisk (used to match subdomains) from the @include in the ecode tag. To correct it this time I saved my post as "code". Hope this works:

// ==UserScript==
// @name           Fix invisible Slashdot titles
// @namespace      hjd73hd73hd
// @include        http://*slashdot.org/story/*
// ==/UserScript==

var s = document.createElement("style");
s.setAttribute("type", "text/css");
s.innerHTML='\
    .title, .title * {\
        background-color: #005151 !important;\
        //background-image: none !important;\
    }\
'; // End of source
document.getElementsByTagName("head")[0].appendChild(s);

Comment Re:OT: Why can't I see subject lines? (Score 2, Informative) 567

You could try this Greasemonkey script.

// ==UserScript==
// @name Fix invisible Slashdot titles
// @namespace hjd73hd73hd
// @include http://slashdot.org/story/*
// ==/UserScript==

var s = document.createElement("style");
s.setAttribute("type", "text/css");
s.innerHTML='\
.title, .title * {\
background-color: #005151 !important;\
//background-image: none !important;\
}\
'; // End of source
document.getElementsByTagName("head")[0].appendChild(s);

Comment Re:Off site backup! (Score 1) 393

I have a hdd for software-managed backups in my computer, so I want my next backup to be off-site to guard against fire/burglary/earthquake. The most convenient place is actually my car. But the downsides/risks include vehicle acceleration, temperature changes, and humidity. Are these manageable, anyone?

Comment Re:Historical record gone. (Score 1) 244

There are lots of World of Warcraft videos, and my guess is it would be much more useful & interesting to watch those and see how people played than to know only what people played (by analogy, like knowing the rules of chess vs. the history of chess: the former tells you less about people).

Slashdot Top Deals

I've noticed several design suggestions in your code.

Working...