Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.os.linux.advocacy > #349755
| From | owl <owl@rooftop.invalid> |
|---|---|
| Newsgroups | comp.os.linux.advocacy |
| Subject | Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript |
| Date | 2016-04-14 02:10 +0000 |
| Organization | O.W.L. |
| Message-ID | <hgjcnvod893.a83@rooftop.invalid> (permalink) |
| References | <nejanb$p7n$1@dont-email.me> <hjgd03at.ay4@rooftop.invalid> <neme8k$h7m$1@dont-email.me> <hjgid9093.aef@rooftop.invalid> <nemlee$c0v$1@dont-email.me> |
DFS <nospam@dfs.com> wrote: > On 4/13/2016 7:00 PM, owl wrote: >> DFS <nospam@dfs.com> wrote: >>> On 4/13/2016 4:49 PM, owl wrote: >>>> DFS <nospam@dfs.com> wrote: >>>>> http://i.imgur.com/XD1A5It.jpg >>>>> >>>>> Took the base 25 addresses, and copied until I had 10,000 entries. >>>>> >>>>> My superior MS Windows VBScript then transformed 10,000 addresses from 4 >>>>> lines per address to one line per address (removing extraneous lines and >>>>> words in the process), delimited it, de-duped the 10,000 rows, then >>>>> sorted, then saved ... all in just over half a second? WTF!? And the >>>>> final result was 25 unique lines, as it should be. >>>>> >>>>> 10,000 addresses in 0.53 seconds? Holy Shit that's fast! >>>> >>>> 0.24 sec is faster, though. Linux FTW once again. >>>> >> ... >> >>> >>> >>> Looking good to the untrained eye - and extremely impressive for a >>> one-liner sed statement - but I'm all over it: >>> >>> Your input data doesn't match the format of mine. You need to: >>> >>> * drop a specific phrase off the end of the 3rd line >> >> Trivial. > > You're just the man for that... > > >>> * drop the 2nd and 4th lines >> >> In all cases? Might the second line be a critical part of the >> address? The "0.3 mi" thing can be regex'd out without reference >> to its line number. You sure that by-line-number is the way you >> would want it handled? > > Yes. Sometimes the 4th line has a website > "0.7 miwww.burgerking.com" > > > >>> * split the street from the address line >> >> Is that a special case for a problematic entry or would they all >> be like that? > > > All the addresses are like that. They were cut and pasted from a search > I did at: > > http://www.usdirectory.com > > Fabian Russell used it for his mailing labels videos and perl code, so I > used it, too. > > The requirements I listed are dictated by the format of the data. I > added an if-then for the delimiter, just because when you say .csv file > some people expect commas. > > A gotcha to remember: using a comma delimiter means the 'City, State > Zip' can't have a comma in it. I like 'City, State Zip' format, but it > won't mess up the Post Office. > > I also like # as a delimiter, or a pipe | > > Another gotcha to remember: ANY character used as a delimiter can't be > part of the address data, or the file won't parse correctly. > > Your 0.24 is doubling as we speak... 0.36 is the VBS benchmark with a > comma-delimiter, 0.33 with a semicolon or other delimiter. > anon@lowtide:~/code/dfs$ wc -l dfs_addresses_e 50000 dfs_addresses_e anon@lowtide:~/code/dfs$ tail -n 20 dfs_addresses_e Papa John's Pizza RESTAURANTS PIZZA 1009 Athens Hwy Ste 8, Loganville, GA 30052 Call Now! 1.7 miwww.papajohns.com Nagoya Japanese Steak House RESTAURANTS STEAK HOUSES 2944 Rosebud Rd, Loganville, GA 30052 Call Now! 1.7 mi My Pizza Buffet RESTAURANTS PIZZA 2944 Rosebud Rd Ste D, Loganville, GA 30052 Call Now! 1.7 mi Coopers Corner B&G BARS 1111 Athens Hwy, Grayson, GA 30017 Call Now! 1.7 mi anon@lowtide:~/code/dfs$ anon@lowtide:~/code/dfs$ cat sortem3 #!/bin/bash echo "Name;Street;CityStateZip" sed -e 's/$/;/g'<dfs_addresses_e \ | sed -e 's/^;/WWWWW/g' \ | sed -z 's/\n//g' \ | sed -e 's/WWWWW/\n/g' \ | sort -u \ | sed -e 's/;$//g' \ | sed -e 's/;[0-9]*\.[0-9]* mi.*$/;/g' \ | sed -e 's/Call Now!//g' \ | sed -e 's/\(.*\),\(.*\),\(.*\)$/\1;\2,\3/g' \ | sed -e 's/^\([^;]*\);\([^;]*\);\(.*\)$/\1;\3/g' \ | sed -e 's/;$//g' anon@lowtide:~/code/dfs$ anon@lowtide:~/code/dfs$ cat sortem4 #!/bin/bash echo "Name,Street,CityStateZip" sed -e 's/$/;/g'<dfs_addresses_e \ | sed -e 's/^;/WWWWW/g' \ | sed -z 's/\n//g' \ | sed -e 's/WWWWW/\n/g' \ | sort -u \ | sed -e 's/;$//g' \ | sed -e 's/;[0-9]*\.[0-9]* mi.*$/;/g' \ | sed -e 's/Call Now!//g' \ | sed -e 's/\(.*\),\(.*\),\(.*\)$/\1;\2,\3/g' \ | sed -e 's/^\([^;]*\);\([^;]*\);\(.*\)$/\1;\3/g' \ | sed -e 's/;$//g' \ | sed -e 's/,//g' \ | sed -e 's/;/,/g' anon@lowtide:~/code/dfs$ anon@lowtide:~/code/dfs$ time ./sortem3 Name;Street;CityStateZip After The Game Sports Bar and Grill;2445 Moon Rd Ste 1; Grayson, GA 30017 Burger King;1990 Grayson Hwy; Grayson, GA 30017 Carlitos Mexican Restaurant, Inc;2445 Moon Rd; Grayson, GA 30017 China Cafe;1911 Grayson Hwy; Grayson, GA 30017 China Cafe;1911 Grayson Hwy Ste 4; Grayson, GA 30017 Coopers Corner B&G;1111 Athens Hwy; Grayson, GA 30017 Grand China Chinese Restaurant;910 Athens Hwy Ste O; Loganville, GA 30052 Hail Mary Sports Pub;1950 Grayson Hwy Ste 140; Grayson, GA 30017 Joa Wings and Deli;1911 Grayson Hwy; Grayson, GA 30017 Joa Wings and Deli;1911 Grayson Hwy Ste 17; Grayson, GA 30017 Johnny's Pizza;2023 Grayson Hwy Ste 110; Grayson, GA 30017 KFC;1855 Grayson Hwy; Grayson, GA 30017 Little Caesars Pizza;1950 Grayson Hwy; Grayson, GA 30017 McDonald's;1881 Grayson Hwy; Grayson, GA 30017 My Pizza Buffet;2944 Rosebud Rd Ste D; Loganville, GA 30052 Nagoya Japanese Steak House;2944 Rosebud Rd; Loganville, GA 30052 Pancake House;1911 Grayson Hwy; Grayson, GA 30017 Pancake House;1911 Grayson Hwy Ste 5; Grayson, GA 30017 Papa John's Pizza;1009 Athens Hwy Ste 8; Loganville, GA 30052 Parkside Bakery & Cafe;2023 Grayson Hwy; Grayson, GA 30017 Riverside Pizza;1845 Grayson Hwy Ste 1400; Grayson, GA 30017 Taco Bell;1855 Grayson Hwy; Grayson, GA 30017 Thai Taste Restaurant;1009 Athens Hwy; Loganville, GA 30052 Thai Taste Restaurant;1009 Athens Hwy; Loganville, GA 30052 Zaxby's;1931 Grayson Hwy; Grayson, GA 30017 real 0m0.199s user 0m0.236s sys 0m0.016s anon@lowtide:~/code/dfs$ anon@lowtide:~/code/dfs$ time ./sortem4 Name,Street,CityStateZip After The Game Sports Bar and Grill,2445 Moon Rd Ste 1, Grayson GA 30017 Burger King,1990 Grayson Hwy, Grayson GA 30017 Carlitos Mexican Restaurant Inc,2445 Moon Rd, Grayson GA 30017 China Cafe,1911 Grayson Hwy, Grayson GA 30017 China Cafe,1911 Grayson Hwy Ste 4, Grayson GA 30017 Coopers Corner B&G,1111 Athens Hwy, Grayson GA 30017 Grand China Chinese Restaurant,910 Athens Hwy Ste O, Loganville GA 30052 Hail Mary Sports Pub,1950 Grayson Hwy Ste 140, Grayson GA 30017 Joa Wings and Deli,1911 Grayson Hwy, Grayson GA 30017 Joa Wings and Deli,1911 Grayson Hwy Ste 17, Grayson GA 30017 Johnny's Pizza,2023 Grayson Hwy Ste 110, Grayson GA 30017 KFC,1855 Grayson Hwy, Grayson GA 30017 Little Caesars Pizza,1950 Grayson Hwy, Grayson GA 30017 McDonald's,1881 Grayson Hwy, Grayson GA 30017 My Pizza Buffet,2944 Rosebud Rd Ste D, Loganville GA 30052 Nagoya Japanese Steak House,2944 Rosebud Rd, Loganville GA 30052 Pancake House,1911 Grayson Hwy, Grayson GA 30017 Pancake House,1911 Grayson Hwy Ste 5, Grayson GA 30017 Papa John's Pizza,1009 Athens Hwy Ste 8, Loganville GA 30052 Parkside Bakery & Cafe,2023 Grayson Hwy, Grayson GA 30017 Riverside Pizza,1845 Grayson Hwy Ste 1400, Grayson GA 30017 Taco Bell,1855 Grayson Hwy, Grayson GA 30017 Thai Taste Restaurant,1009 Athens Hwy, Loganville GA 30052 Thai Taste Restaurant,1009 Athens Hwy, Loganville GA 30052 Zaxby's,1931 Grayson Hwy, Grayson GA 30017 real 0m0.265s user 0m0.292s sys 0m0.040s anon@lowtide:~/code/dfs$
Back to comp.os.linux.advocacy | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-12 13:22 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Fabian Russell <fb@zen.info> - 2016-04-13 10:07 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-13 12:53 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Omar <omarsayeed@linuxmail.org> - 2016-04-13 13:13 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript John Gohde <john.h.gohde@gmail.com> - 2016-04-13 11:18 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-13 17:13 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript John Gohde <john.h.gohde@gmail.com> - 2016-04-13 14:35 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-13 18:44 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript John Gohde <john.h.gohde@gmail.com> - 2016-04-15 05:39 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-13 20:49 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-13 17:41 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-13 23:00 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-13 19:44 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-14 02:10 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-13 22:29 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-14 02:36 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-13 22:42 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-14 03:07 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-13 23:56 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-14 03:32 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-14 00:04 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-14 04:38 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-15 19:25 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-15 19:37 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-15 16:17 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-15 13:33 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-15 16:59 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 08:11 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-18 11:54 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-20 00:19 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-15 21:02 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-16 08:05 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-16 08:56 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-16 11:28 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-16 19:13 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-16 21:12 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 08:51 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-17 14:43 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 15:16 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-17 16:10 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 21:38 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-17 22:04 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 07:38 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-17 13:08 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 21:57 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-17 18:15 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 07:43 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-18 10:49 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 15:08 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 08:18 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-18 11:46 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 09:16 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-18 12:39 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 17:43 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-04-18 14:27 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Silver Slimer <peter@klown.is> - 2016-04-18 17:50 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 12:18 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 12:27 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 13:13 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 13:46 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 13:51 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 14:09 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzen@gmail.com> - 2016-04-18 14:13 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 14:19 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 14:23 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 14:26 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzen@gmail.com> - 2016-04-18 14:35 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 21:36 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 14:38 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 14:48 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 14:56 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 15:00 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 15:05 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzen@gmail.com> - 2016-04-18 14:34 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzen@gmail.com> - 2016-04-18 14:34 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript William Poaster <wp@dev.null> - 2016-04-18 22:34 +0100
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzen@gmail.com> - 2016-04-18 14:11 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 14:13 -0700
Snit digest 206 / 2016-04-18 Sandman <mr@sandman.net> - 2016-04-18 21:38 +0000
Re: Snit digest 206 / 2016-04-18 Steve Carroll <fretwizzer@gmail.com> - 2016-04-18 14:42 -0700
Re: Snit digest 206 / 2016-04-18 Sandman <mr@sandman.net> - 2016-04-19 05:51 +0000
Re: Snit digest 206 / 2016-04-18 Steve Carroll <fretwizzer@gmail.com> - 2016-04-19 08:24 -0700
Re: Snit digest 206 / 2016-04-18 Sandman <mr@sandman.net> - 2016-04-19 16:37 +0000
Re: Snit digest 206 / 2016-04-18 Steve Carroll <fretwizzer@gmail.com> - 2016-04-19 09:49 -0700
Re: Snit digest 206 / 2016-04-18 Sandman <mr@sandman.net> - 2016-04-19 16:53 +0000
Re: Snit digest 206 / 2016-04-18 chrisv <chrisv@nospam.invalid> - 2016-04-19 12:04 -0500
Re: Snit digest 206 / 2016-04-18 Steve Carroll <fretwizzer@gmail.com> - 2016-04-19 10:15 -0700
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 13:08 -0700
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-19 21:14 +0000
Re: Snit digest 206 / 2016-04-18 Sandman <mr@sandman.net> - 2016-04-19 21:39 +0000
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-19 22:03 +0000
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 16:21 -0700
Re: Snit digest 206 / 2016-04-18 Marek Novotny <marek.novotny@marspolar.com> - 2016-04-19 17:07 -0700
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 20:36 -0700
Re: Snit digest 206 / 2016-04-18 DFS <nospam@dfs.com> - 2016-04-20 10:19 -0400
Re: Snit digest 206 / 2016-04-18 DFS <nospam@dfs.com> - 2016-04-20 12:44 -0400
Re: Snit digest 206 / 2016-04-18 Richard King <kingsley651@webby.org> - 2016-04-19 18:27 -0400
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 16:15 -0700
Re: Snit digest 206 / 2016-04-18 Richard King <kingsley651@webby.org> - 2016-04-19 19:32 -0400
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-20 03:39 +0000
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-20 04:01 +0000
Snit digest 211 / 2016-04-20 Sandman <mr@sandman.net> - 2016-04-20 05:24 +0000
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 15:01 -0700
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-19 22:11 +0000
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 16:20 -0700
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-19 23:36 +0000
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 20:30 -0700
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-20 03:58 +0000
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 21:19 -0700
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-20 05:01 +0000
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 22:14 -0700
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-20 05:29 +0000
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-19 22:33 -0700
Re: Snit digest 206 / 2016-04-18 owl <owl@rooftop.invalid> - 2016-04-20 05:52 +0000
Re: Snit digest 206 / 2016-04-18 vallor <vallor@cultnix.org> - 2016-04-20 16:02 +0000
Re: Snit digest 206 / 2016-04-18 Steve Carroll <fretwizzer@gmail.com> - 2016-04-20 09:11 -0700
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-20 10:40 -0700
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-20 10:43 -0700
Re: Snit digest 206 / 2016-04-18 Steve Carroll <fretwizzer@gmail.com> - 2016-04-20 11:36 -0700
Re: Snit digest 206 / 2016-04-18 Sandman <mr@sandman.net> - 2016-04-20 06:01 +0000
Re: Snit digest 206 / 2016-04-18 Snit <usenet@gallopinginsanity.com> - 2016-04-18 16:30 -0700
Snit digest 207 / 2016-04-19 Sandman <mr@sandman.net> - 2016-04-19 05:52 +0000
Re: Snit digest 207 / 2016-04-19 Snit <usenet@gallopinginsanity.com> - 2016-04-18 23:25 -0700
Snit digest 208 / 2016-04-19 Sandman <mr@sandman.net> - 2016-04-19 07:49 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 20:49 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 13:52 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 21:33 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-04-19 05:48 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Marek Novotny <marek.novotny@marspolar.com> - 2016-04-18 13:55 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 21:35 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-04-19 05:41 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-04-18 15:52 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 20:47 +0000
Re: Microsoft is the standard; Apple extends it; Ubuntu falls short. Fabian Russell <fb@zen.info> - 2016-04-18 22:59 +0000
Re: Microsoft is the standard; Apple extends it; Ubuntu falls short. DFS <nospam@dfs.com> - 2016-04-20 10:19 -0400
Re: Microsoft is the standard; Apple extends it; Ubuntu falls short. benj <nobodyxx@gmail> - 2016-04-19 00:03 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-16 13:19 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 16:25 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-16 15:08 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 18:15 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-16 15:26 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 18:35 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-16 15:51 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-20 10:10 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-20 08:13 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-20 12:10 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Steve Carroll <fretwizzer@gmail.com> - 2016-04-20 09:12 -0700
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 09:02 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-17 13:31 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 21:59 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-17 20:06 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-18 00:24 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 07:46 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-04-18 05:41 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-18 11:01 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Melzzzzz <mel@zzzzz.com> - 2016-04-18 17:04 +0200
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-18 11:08 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 15:23 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-20 10:16 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-20 18:22 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 14:03 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 08:38 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-04-17 07:27 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-17 13:03 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 21:55 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 18:26 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 08:59 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 09:40 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-17 14:14 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 15:07 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-17 15:51 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 21:39 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-17 22:09 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 07:40 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Silver Slimer <linux@shit.is> - 2016-04-15 17:18 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-04-15 19:12 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-16 08:57 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-16 11:29 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 18:28 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Melzzzzz <mel@zzzzz.com> - 2016-04-15 23:03 +0200
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-16 08:57 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Silver Slimer <linux@shit.is> - 2016-04-15 17:17 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-15 21:39 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-16 08:58 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-15 18:24 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-16 08:59 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-04-16 06:34 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-16 11:32 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Omar <omarsayeed@linuxmail.org> - 2016-04-16 09:01 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 14:02 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript owl <owl@rooftop.invalid> - 2016-04-16 11:16 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 14:02 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-16 19:12 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-16 14:05 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-17 08:40 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-18 10:48 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Sandman <mr@sandman.net> - 2016-04-18 15:06 +0000
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Norman Peelman <npeelman@cfl.rr.com> - 2016-04-17 09:33 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript DFS <nospam@dfs.com> - 2016-04-17 14:30 -0400
Re: Fabian: 10,000 addresses processed in 0.53 seconds with VBScript Norman Peelman <npeelman@cfl.rr.com> - 2016-04-17 18:21 -0400
csiph-web