Top 100 Response To Requests While DJing
― Alba (Alba), Wednesday, 1 February 2006 23:31 (twenty years ago)
― Jena (JenaP), Thursday, 2 February 2006 02:20 (twenty years ago)
― A BOLD QUAHOG (ex machina), Wednesday, 8 February 2006 17:25 (twenty years ago)
― grimly fiendish (grimlord), Sunday, 9 April 2006 17:57 (twenty years ago)
― Jena (JenaP), Sunday, 9 April 2006 21:49 (twenty years ago)
― grimly fiendish (grimlord), Sunday, 9 April 2006 21:58 (twenty years ago)
― don weiner (don weiner), Monday, 10 April 2006 00:49 (twenty years ago)
― Jena (JenaP), Friday, 14 April 2006 18:24 (twenty years ago)
― pixel farmer (Rock Hardy), Friday, 14 April 2006 18:35 (twenty years ago)
― stet (stet), Friday, 14 April 2006 18:40 (twenty years ago)
― Tracey Hand (tracerhand), Friday, 14 April 2006 19:00 (twenty years ago)
― Fight the Real Enemy -- Tasti D-Lite (ex machina), Friday, 14 April 2006 19:01 (twenty years ago)
― stet (stet), Friday, 14 April 2006 20:12 (twenty years ago)
― geeta (geeta), Friday, 14 April 2006 20:19 (twenty years ago)
yes, it has a timer option that will probably let you do that.
― Jena (JenaP), Friday, 14 April 2006 20:55 (twenty years ago)
http://ldopa.net/wp-content/uploads/2006/01/ldopa-1970.jpg
― schwantz (schwantz), Friday, 14 April 2006 21:59 (twenty years ago)
― cozen (Cozen), Saturday, 15 April 2006 15:00 (twenty years ago)
-- stet (vmdnb900...) (webmail), April 14th, 2006 5:12 PM. (stet) (later) (link)
In every way, except for not supporting extensions. :D It has a native GUI and I think there is a greasemonkey for it. People should move all extensions to userscripts (aka greasemonkey) so Opera+all Mozillas+Konqueror+Safari can all use it.
― Fight the Real Enemy -- Tasti D-Lite (ex machina), Saturday, 15 April 2006 15:22 (twenty years ago)
― gbx (skowly), Saturday, 15 April 2006 15:24 (twenty years ago)
― Nathalie (stevie nixed), Saturday, 15 April 2006 15:28 (twenty years ago)
This script will add a little red asterisk by threads that you have read and that have since acquired new answers. this would work somewhat better in conjunction with some sort of feature that sez "don't alert me about this thread because i don't care" or even an ignore thread. but this is enough for a bit of dicking around. save the following as a text file named "ilxunread.user.js" or something and import it into greasemonkey:
// ==UserScript==
// @name ILX NewAnswers
// @description Place a red * by thread you have read and now have new answers
// @include http://ilx.wh3rd.net/*// @include http://ilx.ph3r.net/*
// ==/UserScript==
if(window.location.href.match(/thread\.php/)) { var allBQ, lastBQ; allBQ = document.getElementsByTagName('blockquote');
lastBQ=allBQ[allBQ.length-1]; re = /\), .*\d\d\d\d (.+?)\./gmi; txt = lastBQ.lastChild.childNodes[2].nodeValue; lastDate= re.exec(txt); re = /thread\.php\?msgid=(\d+)/gmi; thread=re.exec(window.location.href);// GM_log(lastDate); GM_setValue(thread[1],lastDate[1]);} else if (window.location.href.match(/newanswers\.php/)) { var allA allA = document.evaluate( "//a[@href]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (var i = 0; i < allA.snapshotLength; i++) { thisItem = allA.snapshotItem(i); if(thisItem.href.match(/thread\.php/gmi)) { reg = /last\W+at\W+(.+m)/i; tm = reg.exec(thisItem.parentNode.lastChild.nodeValue); if(tm) { regg = /msgid=(\d+)/i; id = regg.exec(thisItem.href); foo = GM_getValue(id[1],''); if(foo) { if(foo.toUpperCase() != tm[1].toUpperCase()) {// GM_log(foo.toUpperCase()+", "+tm[1].toUpperCase()); newElement=document.createElement('span'); newElement.innerHTML="<font color='#ff0000'>*</font>"; thisItem.parentNode.insertBefore(newElement,thisItem.nextSibling.nextSibling); } } } } }}}
― Sterling Clover (s_clover), Sunday, 16 April 2006 00:39 (twenty years ago)
― Sterling Clover (s_clover), Sunday, 16 April 2006 00:42 (twenty years ago)
― Sterling Clover (s_clover), Sunday, 16 April 2006 00:43 (twenty years ago)
― toby (tsg20), Sunday, 7 May 2006 12:48 (twenty years ago)
I've never tried Eudora, but I'm told it's tolerable. Mailsmith and Gyazmail are both useless since they don't support IMAP. If you are l337 then there's always mutt.
― caek (caek), Sunday, 7 May 2006 12:58 (twenty years ago)
― Sterling Clover (s_clover), Sunday, 7 May 2006 22:18 (twenty years ago)
― gbx (skowly), Sunday, 7 May 2006 22:19 (twenty years ago)
― Sterling Clover (s_clover), Sunday, 7 May 2006 22:21 (twenty years ago)
― The Jazz Guide to Penguins on Compact Disc (Rock Hardy), Sunday, 7 May 2006 23:02 (twenty years ago)
it is picky like that
― Sterling Clover (s_clover), Sunday, 7 May 2006 23:04 (twenty years ago)
― The Jazz Guide to Penguins on Compact Disc (Rock Hardy), Monday, 8 May 2006 00:31 (twenty years ago)
I must go. My two minutes are up.
― Safety First (pullapartgirl), Monday, 8 May 2006 01:13 (twenty years ago)
― toby (tsg20), Monday, 8 May 2006 02:24 (twenty years ago)
― toby (tsg20), Monday, 8 May 2006 02:32 (twenty years ago)
― Sterling Clover (s_clover), Monday, 8 May 2006 02:52 (twenty years ago)
― The Jazz Guide to Penguins on Compact Disc (Rock Hardy), Monday, 8 May 2006 12:04 (twenty years ago)
― Alba (Alba), Monday, 8 May 2006 12:07 (twenty years ago)
― Alba (Alba), Monday, 8 May 2006 12:25 (twenty years ago)
― Sterling Clover (s_clover), Monday, 8 May 2006 21:31 (twenty years ago)
it doesn't have to be web related i'm not particularly interested in anyone accessing the stats other than me.
― jed_ (jed), Monday, 8 May 2006 22:37 (twenty years ago)
― jed_ (jed), Monday, 8 May 2006 22:39 (twenty years ago)
― jed_ (jed), Monday, 8 May 2006 22:48 (twenty years ago)
― jhoshea (scoopsnoodle), Monday, 8 May 2006 23:00 (twenty years ago)
I have uploaded an SVN build of the stripped-down, iPod/PSP-dedicated version of HandBrake, called “Instant HandBrake”.
At the moment, it lets you create iPod-compatible MPEG-4 or H.264 files, or PSP-compatible MPEG-4 files. The default is to automatically crop the picture to fill the screen (4:3 on the iPod, 16:9 on the PSP), or you can choose to keep the original format.
http://handbrake.m0k.org/
― JW (ex machina), Friday, 19 May 2006 03:10 (twenty years ago)
― Alba (Alba), Sunday, 21 May 2006 13:16 (twenty years ago)
― Nathalie (stevie nixed), Sunday, 21 May 2006 13:47 (twenty years ago)
― jed_ (jed), Sunday, 21 May 2006 14:13 (twenty years ago)
― Alba (Alba), Tuesday, 1 August 2006 10:10 (nineteen years ago)
― Alba (Alba), Tuesday, 1 August 2006 10:12 (nineteen years ago)
― i'll mitya halfway (mitya), Tuesday, 1 August 2006 10:22 (nineteen years ago)