Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > sci.physics > #531713

Re: Microsoft How Are You Stupid: Let Me Count The Ways

From Snit <usenet@gallopinginsanity.com>
Newsgroups sci.physics, comp.os.linux.advocacy
Subject Re: Microsoft How Are You Stupid: Let Me Count The Ways
Date 2015-11-09 22:12 -0700
Message-ID <D266CAB4.63638%usenet@gallopinginsanity.com> (permalink)
References (6 earlier) <pan.2015.11.09.23.25.42@localhost.localdomain> <GYydnWHlO_pN0tzLnZ2dnUU7-TWdnZ2d@bresnan.com> <pan.2015.11.10.03.26.36@localhost.localdomain> <D266C568.6362D%usenet@gallopinginsanity.com> <pan.2015.11.10.05.06.02@localhost.localdomain>

Cross-posted to 2 groups.

Show all headers | View raw


On 11/9/15, 10:06 PM, in article
pan.2015.11.10.05.06.02@localhost.localdomain, "Fabian Russell"
<root@localhost.localdomain> wrote:

> On Mon, 09 Nov 2015 21:49:28 -0700, Snit wrote:
> 
>> 
>> So why not show how you would do the tasks I have shown you...
> 
> Here is a different task.
> 
> I go out with my digital SLR and shoot some pictures.  The RAW images
> are saved to a camera card.
> 
> I want to process these RAW files in a completely automated fashion,
> with no user intervention, and with control over all fine details
> such as demosaic parameters, white balance parameters, histogram
> parmeters, etc.
> 
> How can I do this?
> 
> On MS Windows: Duh?  What?  Huh?  No way, dude.

A Photoshop script should work fine.

Other programs can do that, too.

> On Apple: (same thing)
> 
> On linux:
> 
> I plug my camera card into the USB slot and run the following
> script (with a wrapper to take of misc I/O):
> 
> #! /bin/bash
> # process raw (nef) completely to final JPEG in sRGB
> 
> file=`basename $1`
> shrp=$2
> mults=`exiftool -s3 -WB_RBGGLevels $1`
> mul1=${mults:0:3}
> mul2=${mults:4:3}
> mul3=${mults:8:3}
> mul4=${mults:12:3}
> dcraw -v -c -D -6 -g 1 0 -W $1 | pgm_cfa_mult $mul1 $mul3 $mul2 $mul4 |
> pambayer -type=4 \
> | pamtopnm \
> | pnmhisteq -rmap nef_curve_lut.pgm \
> | pnmgamma 2.2 > filewbg.ppm
> 
> ppmtopgm filewbg.ppm > filecs.ppm
> 
> bval=`pamsumm -brief -min filecs.ppm`
> wval=`pamsumm -brief -max filecs.ppm`
> pnmnorm -bvalue=$bval -wvalue=$wval -keephues filewbg.ppm | pamtotiff -none
> -truecolor > file.tif
> 
> tifficc -v -e -n -c 2 -t 0 -w -b -i camera.icm -o
> sRGB_IEC61966-2-1_black_scaled.icm file.tif filecc.tif
> 
> gmic filecc.tif -resize2dx 1600,5,1 -cut 0,65535 -unsharp 0.6,$shrp,0 -cut
> 0,65535 -o -.pnm \
> | pnmtojpeg -quality=90 -dct=float -sample 1x1 -optimize > ${file%.nef}.jpg
> 
> display ${file%.nef}.jpg &
> rm filecs.ppm filewbg.ppm file.tif filecc.tif

I would bet there are scriptable programs on Windows to do that but I admit
I would need to look into it. But, sure, you could do the same on OS X
(though you might need to get some of the command line tools).


-- 
* OS X / Linux: What is a file?     <http://youtu.be/_dMbXGLW9PI>
* Mint MATE Trash, Panel, Menu:     <http://youtu.be/C0y74FIf7uE>
* Mint KDE working with folders:    <http://youtu.be/7C9nvniOoE0>
* Mint KDE creating files:          <http://youtu.be/N7-fZJaJUv8>
* Mint KDE help:                    <http://youtu.be/3ikizUd3sa8>
* Mint KDE general navigation:      <http://youtu.be/t9y14yZtQuI>
* Mint KDE bugs or Easter eggs?     <http://youtu.be/CU-whJQvtfA>
* Easy on OS X / Hard on Linux:     <http://youtu.be/D3BPWANQoIk>
* OS / Word Processor Comparison:   <http://youtu.be/w6Qcl-w7s5c>

Back to sci.physics | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 18:27 +0000
  Re: Microsoft How Are You Stupid: Let Me Count The Ways Poutnik <Poutnik4NNTP@gmail.com> - 2015-11-09 19:47 +0100
    Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 18:59 +0000
      Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-09 16:45 -0500
      Re: Microsoft How Are You Stupid: Let Me Count The Ways benj <none@gmail.com> - 2015-11-09 20:24 -0500
      Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-09 18:54 -0700
  Re: Microsoft How Are You Stupid: Let Me Count The Ways Sam Wormley <swormley1@gmail.com> - 2015-11-09 12:47 -0600
  Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-09 11:50 -0700
  Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-09 16:42 -0500
    Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 22:26 +0000
      Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-09 22:32 +0000
        Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 22:43 +0000
          Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-09 17:25 -0600
            Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 23:59 +0000
          Re: Microsoft How Are You Stupid: Let Me Count The Ways benj <none@gmail.com> - 2015-11-09 20:45 -0500
            Re: Microsoft How Are You Stupid: Let Me Count The Ways vallor <vallor@cultnix.org> - 2015-11-10 22:38 +0000
              Re: Microsoft How Are You Stupid: Let Me Count The Ways chrisv <chrisv@nospam.invalid> - 2015-11-11 06:57 -0600
          Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-09 18:56 -0700
      Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 15:36 -0700
        Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 22:50 +0000
          Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 16:04 -0700
            Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-09 18:59 -0700
      Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-09 17:41 -0500
        Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 23:04 +0000
          Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 16:19 -0700
            Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 23:25 +0000
              Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 16:42 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 00:17 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 17:25 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways vallor <vallor@cultnix.org> - 2015-11-10 00:41 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 17:48 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 03:20 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 21:50 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 12:09 -0700
              Re: Microsoft How Are You Stupid: Let Me Count The Ways jimp@specsol.spam.sux.com - 2015-11-09 23:33 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-09 19:00 -0700
              Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-09 19:00 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 03:28 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 21:49 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 05:06 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 22:12 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 06:01 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 06:07 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 09:33 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 09:33 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 22:02 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 17:43 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 01:09 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways "Ezekiel" <zeke@nosuchemail.com> - 2015-11-10 20:14 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 18:14 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-10 19:52 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 02:02 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-10 20:08 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-11 09:10 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Mahipal <mahipal7638@gmail.com> - 2015-11-11 06:53 -0800
                Re: Microsoft How Are You Stupid: Let Me Count The Ways benj <none@gmail.com> - 2015-11-11 12:13 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 10:51 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways JEDIDIAH <jedi@nomad.mishnet> - 2015-11-12 12:26 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 12:01 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways JEDIDIAH <jedi@nomad.mishnet> - 2015-11-10 10:42 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 10:33 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 05:16 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 12:12 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 22:06 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-10 22:13 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways "Ezekiel" <zeke@nosuchemail.com> - 2015-11-10 17:31 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 23:28 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways "Ezekiel" <zeke@nosuchemail.com> - 2015-11-10 19:32 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 23:22 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-10 18:25 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Peter Köhlmann <peter-koehlmann@t-online.de> - 2015-11-11 00:44 +0100
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-10 18:50 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-11 09:04 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Peter Köhlmann <peter-koehlmann@t-online.de> - 2015-11-11 15:49 +0100
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-11 10:37 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Peter Köhlmann <peter-koehlmann@t-online.de> - 2015-11-11 17:46 +0100
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-11 12:21 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 11:01 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 10:50 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 10:52 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 10:36 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Peter Köhlmann <peter-koehlmann@t-online.de> - 2015-11-12 23:06 +0100
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 15:28 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 23:56 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-10 19:02 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 00:59 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-10 19:44 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 04:20 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-10 21:02 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 02:49 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-10 21:57 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 03:24 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways JEDIDIAH <jedi@nomad.mishnet> - 2015-11-12 12:28 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways "Ezekiel" <zeke@nosuchemail.com> - 2015-11-11 07:33 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-10 23:29 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-10 18:32 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Peter Köhlmann <peter-koehlmann@t-online.de> - 2015-11-10 23:27 +0100
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 16:29 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 16:27 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 12:12 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 12:36 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 22:24 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways "Ezekiel" <zeke@nosuchemail.com> - 2015-11-10 17:36 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 16:30 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 17:46 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 01:22 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 18:50 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 02:26 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-11 10:34 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-11 13:52 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 10:26 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 20:03 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-12 11:32 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 16:29 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-10 18:10 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 22:07 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-10 17:59 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 23:42 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-10 18:59 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways "Ezekiel" <zeke@nosuchemail.com> - 2015-11-10 19:47 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Mahipal <mahipal7638@gmail.com> - 2015-11-10 16:41 -0800
                Re: Microsoft How Are You Stupid: Let Me Count The Ways jimp@specsol.spam.sux.com - 2015-11-11 00:52 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways benj <nobody@gmail.com> - 2015-11-10 20:42 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways "Ezekiel" <zeke@nosuchemail.com> - 2015-11-10 20:05 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 01:27 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Melzzzzz <mel@zzzzz.com> - 2015-11-11 02:56 +0100
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-11 13:55 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-10 19:39 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 02:19 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-10 20:47 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 03:04 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-10 21:24 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 03:40 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-11 07:11 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-11 04:45 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-11 07:15 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-11 09:03 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 16:31 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Odd Bodkin <bodkinodd@gmail.com> - 2015-11-10 13:38 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 12:11 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 22:26 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-10 16:33 -0700
          Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-09 18:41 -0500
            Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 16:51 -0700
          Re: Microsoft How Are You Stupid: Let Me Count The Ways JEDIDIAH <jedi@nomad.mishnet> - 2015-11-09 20:52 -0600
            Re: Microsoft How Are You Stupid: Let Me Count The Ways chrisv <chrisv@nospam.invalid> - 2015-11-10 08:29 -0600
              Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-10 14:34 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 14:56 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-10 15:01 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways JEDIDIAH <jedi@nomad.mishnet> - 2015-11-10 10:40 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-10 17:16 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Mahipal <mahipal7638@gmail.com> - 2015-11-10 09:56 -0800
                Re: Microsoft How Are You Stupid: Let Me Count The Ways chrisv <chrisv@nospam.invalid> - 2015-11-10 13:00 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-10 19:05 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Chris Ahlstrom <OFeem1987@teleworm.us> - 2015-11-11 06:14 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-11 12:00 +0000
                Re: Microsoft How Are You Stupid: Let Me Count The Ways chrisv <chrisv@nospam.invalid> - 2015-11-11 09:10 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Chris Ahlstrom <OFeem1987@teleworm.us> - 2015-11-11 11:34 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-11 12:18 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 10:23 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways JEDIDIAH <jedi@nomad.mishnet> - 2015-11-12 12:23 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-12 10:21 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-11 13:57 -0700
                Re: Microsoft How Are You Stupid: Let Me Count The Ways chrisv <chrisv@nospam.invalid> - 2015-11-11 12:04 -0600
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-11 13:12 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Big Fish in a Small Crotch <bigfishinasmallcrotch@myself.com> - 2015-11-11 15:26 -0500
                Re: Microsoft How Are You Stupid: Let Me Count The Ways Lloyd Parsons <lloydp211@gmail.com> - 2015-11-11 20:30 +0000
                The Jackass, aka Turdv, braying away. GreyCloud <cumulus@mist.com> - 2015-11-11 13:59 -0700
              Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-10 10:47 -0500
      Re: Microsoft How Are You Stupid: Let Me Count The Ways JEDIDIAH <jedi@nomad.mishnet> - 2015-11-09 16:41 -0600
        Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-09 18:35 -0500
          Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 16:52 -0700
      Re: Microsoft How Are You Stupid: Let Me Count The Ways Sam Wormley <swormley1@gmail.com> - 2015-11-09 18:15 -0600
        Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 00:30 +0000
          Re: Microsoft How Are You Stupid: Let Me Count The Ways Sam Wormley <swormley1@gmail.com> - 2015-11-09 18:43 -0600
            Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 03:37 +0000
          Re: Microsoft How Are You Stupid: Let Me Count The Ways vallor <vallor@cultnix.org> - 2015-11-10 00:46 +0000
            Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 18:07 -0700
            Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-09 19:03 -0700
      Re: Microsoft How Are You Stupid: Let Me Count The Ways GreyCloud <cumulus@mist.com> - 2015-11-09 18:56 -0700
      Re: Microsoft How Are You Stupid: Let Me Count The Ways Chris Ahlstrom <OFeem1987@teleworm.us> - 2015-11-10 06:03 -0500
        Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 14:59 +0000
          Re: Microsoft How Are You Stupid: Let Me Count The Ways Chris Ahlstrom <OFeem1987@teleworm.us> - 2015-11-10 13:41 -0500
    Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-09 23:34 +0000
      Re: Microsoft How Are You Stupid: Let Me Count The Ways Slimer <.m@nsn.s> - 2015-11-09 18:42 -0500
      Re: Microsoft How Are You Stupid: Let Me Count The Ways Snit <usenet@gallopinginsanity.com> - 2015-11-09 16:53 -0700
  Re: Microsoft How Are You Stupid: Let Me Count The Ways "Wipe A Rat" <invalid@example.com> - 2015-11-09 19:44 -0800
    Re: Microsoft How Are You Stupid: Let Me Count The Ways Fabian Russell <root@localhost.localdomain> - 2015-11-10 05:17 +0000

csiph-web