Follow Slashdot stories on Twitter

 



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?

Slashdot Top Deals

Those who can, do; those who can't, write. Those who can't write work for the Bell Labs Record.

Working...