Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(156) |
May
(208) |
Jun
(238) |
Jul
(193) |
Aug
(184) |
Sep
(150) |
Oct
(75) |
Nov
(85) |
Dec
(52) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(51) |
Feb
(70) |
Mar
(42) |
Apr
(131) |
May
(59) |
Jun
(37) |
Jul
(44) |
Aug
(80) |
Sep
(48) |
Oct
(71) |
Nov
(65) |
Dec
(69) |
2004 |
Jan
(108) |
Feb
(102) |
Mar
(58) |
Apr
(68) |
May
(50) |
Jun
(12) |
Jul
(55) |
Aug
(73) |
Sep
(39) |
Oct
(22) |
Nov
(93) |
Dec
(61) |
2005 |
Jan
(73) |
Feb
(22) |
Mar
(26) |
Apr
(66) |
May
(5) |
Jun
(6) |
Jul
(1) |
Aug
(16) |
Sep
(14) |
Oct
(2) |
Nov
|
Dec
(12) |
2006 |
Jan
(24) |
Feb
(36) |
Mar
(54) |
Apr
(5) |
May
(47) |
Jun
(24) |
Jul
(33) |
Aug
(16) |
Sep
(9) |
Oct
(7) |
Nov
(28) |
Dec
(36) |
2007 |
Jan
(27) |
Feb
(28) |
Mar
(12) |
Apr
(6) |
May
(30) |
Jun
(22) |
Jul
(5) |
Aug
(10) |
Sep
(23) |
Oct
(5) |
Nov
(17) |
Dec
(4) |
2008 |
Jan
(1) |
Feb
(23) |
Mar
(3) |
Apr
(16) |
May
(27) |
Jun
(45) |
Jul
(21) |
Aug
(4) |
Sep
(14) |
Oct
(3) |
Nov
(10) |
Dec
(6) |
2009 |
Jan
(32) |
Feb
(28) |
Mar
(17) |
Apr
(5) |
May
(29) |
Jun
(3) |
Jul
(4) |
Aug
(5) |
Sep
(1) |
Oct
(8) |
Nov
(8) |
Dec
(5) |
2010 |
Jan
(3) |
Feb
(6) |
Mar
(25) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(14) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(9) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(3) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
(9) |
Apr
|
May
|
Jun
(12) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(12) |
Dec
|
2014 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
(1) |
Mar
|
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1
|
2
|
3
|
4
(1) |
5
(1) |
6
(1) |
7
|
8
|
9
|
10
|
11
(1) |
12
(1) |
13
(1) |
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
(1) |
|
|
|
|
From: brian <turbo@ta...> - 2006-10-12 23:39:19
|
I noticed a couple days ago that the "Joy of Tech" cartoon was no longer appearing in my comx line in DQSD -- instead, I'd get another small graphic file. I took a look at the web page, then took a look at the comx.xml file. I guess, when this search was written, the Joy of Tech comic was the only (or at least the first) referenced image in the 'joyimages' directory on that web page. By slightly changing the regex used to find the graphic url within the page, functionality can be restored: --[original]-------------------------------------------------------------- case "joyoftech": var sUrl="http://www.geekculture.com/joyoftech/index.html";; var xmlHttp = new ActiveXObject("Microsoft.XmlHttp"); xmlHttp.open("GET", sUrl, false); xmlHttp.send(); //get the response content from the remote site var sBody = xmlHttp.responseText; // what I'm looking for //<img src="joyimages/555.png" height="431" width="485" border="0"> var pattern = /joyimages\/\S+.[jpg|png|gif]/ig; var result = sBody.match(pattern)[0]; var imgurl = "http://www.geekculture.com/joyoftech/"+result; break; -------------------------------------------------------------------------- to retrieve the correct image, just change: var pattern = /joyimages\/\S+.[jpg|png|gif]/ig; to: var pattern = /joyimages\/\S+.[jpg|png|gif]" alt="The Joy/ig; - brian |