-
Website
http://www.scripting.com/ -
Original page
http://www.scripting.com/stories/2007/11/15/isTwitterDown.html -
Subscribe
All Comments -
Community
-
Top Commenters
-
eas
55 comments · 4 points
-
AndrewBurton
134 comments · 10 points
-
Michael Markman (Mickeleh)
154 comments · 16 points
-
Rex Hammock
52 comments · 9 points
-
malatmals
81 comments · 3 points
-
-
Popular Threads
-
How I develop formats and protocols. (Scripting News)
1 day ago · 11 comments
-
Open is in the eye of the beholder. (Scripting News)
3 days ago · 13 comments
-
Store Twitter URLs in earth's oceans? (Scripting News)
5 days ago · 16 comments
-
Why today's Twitter is like Napster in Y2K. (Scripting News)
5 days ago · 15 comments
-
If you wrote the words you own the copyright. (Scripting News)
5 days ago · 7 comments
-
How I develop formats and protocols. (Scripting News)
We had some database issues which unexpectedly took us down for a bit. We've identified the issue, and should be up and speedy again now.
The @username linking is a bug we're working on fixing right now. Apologies for the inconvenience.
And it's been down since at least 4:30 - this doesn't bode well.
http://www.makeyougohmm.com/20071116/4946/
(The below is taken from http://userscripts.org/scripts/review/13919 with just the URL modified)
var regex = /@(\w*)/g;
var elements = document.getElementsByTagName("span");
for (var i = 0; i < elements.length; i++) {
var content = elements[i];
var text = content.innerHTML;
if (text.indexOf("@") < 0) {
continue;
}
content.innerHTML = text.replace(regex, "@$1");
}
Rails and network television != scaling? :)