Rocksolid Light

News from da outaworlds

mail  files  register  groups  login

Message-ID:  

You are capable of planning your future.


comp / comp.os.linux.advocacy / Re: Enscript

SubjectAuthor
* EnscriptChris Ahlstrom
`* Re: EnscriptFarley Flud
 +* Re: EnscriptChris Ahlstrom
 |`* Re: EnscriptFarley Flud
 | +* Re: EnscriptChris Ahlstrom
 | |`* Re: Enscriptrbowman
 | | `* Re: EnscriptChris Ahlstrom
 | |  +* Re: EnscriptFarley Flud
 | |  |+- Re: EnscriptChris Ahlstrom
 | |  |+- Re: EnscriptDFS
 | |  |`- Re: EnscriptPhysfitfreak
 | |  `- Re: Enscriptrbowman
 | `- Re: EnscriptStéphane CARPENTIER
 `* Re: EnscriptPhysfitfreak
  `* Re: EnscriptCrudeSausage
   `* Re: Enscriptrbowman
    +* Re: EnscriptDiego Garcia
    |`- Re: EnscriptPhysfitfreak
    `- Re: EnscriptCrudeSausage

1
Subject: Enscript
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Wed, 23 Oct 2024 12:54 UTC
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Enscript
Date: Wed, 23 Oct 2024 08:54:11 -0400
Organization: None
Lines: 26
Message-ID: <vfarm9$21oij$1@dont-email.me>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Wed, 23 Oct 2024 14:54:33 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="e98396259acb753fb4f93782939bc6b9";
logging-data="2155091"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19DVqEIfkceH6M0pj13khzW"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:2k/gyQ933BoouNEExVHZpQNlbvk=
X-Face: 63n<76,LYJQ2m#'5YL#.T95xqyPiG`ffIP70tN+j"(&@6(4l\7uL)2+/-r0)/9SjZ`qw=
Njn mr93Xrerx}aQG-Ap5IHn"xe;`5:pp"$RH>Kx_ngWw%c\+6qSg!q"41n2[.N/;Pu6q8?+Poz~e
A9? $6_R7cm.l!s8]yfv7x+-FYQ|/k
View all headers

I haven't used enscript for quite awhile. I used it all the time at work to
print code without having to use a text editor to do it. Here's part of a
script to convert a text file to PDF, with line numbers and a narrow font
suitable to printing. Blank lines and some info output removed.

#!/bin/bash
FONT="Monospace8"
OPTIONS="q -B -C -G -T3"
for FILENAME in $* ; do
# Get the whole filename, then strip off the whole file extension.
BASENAME="${FILENAME%%.*}"
EXTENSION="${FILENAME##*.}"
EOPTION="E"
[ "$EXTENSION" == "hpp" ] && EOPTION="Ecpp"
[ "$EXTENSION" == "h" ] && EOPTION="Ec"
enscript -$OPTIONS -$EOPTION -f $FONT -p - $FILENAME | ps2pdf - $BASENAME.pdf
done

--
A selection from the Taoist Writings:
"Lao-Tan asked Confucius: `What do you mean by benevolence and righteousness?'
Confucius said: `To be in one's inmost heart in kindly sympathy with all
things; to love all men and allow no selfish thoughts: this is the nature
of benevolence and righteousness.'"
-- Kwang-tzu

Subject: Re: Enscript
From: Farley Flud
Newsgroups: comp.os.linux.advocacy
Organization: UsenetExpress - www.usenetexpress.com
Date: Wed, 23 Oct 2024 14:15 UTC
References: 1
From: ff@linux.rocks (Farley Flud)
Subject: Re: Enscript
Newsgroups: comp.os.linux.advocacy
References: <vfarm9$21oij$1@dont-email.me>
Mime-Version: 1.0
Message-Id: <pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 39
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr3.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Wed, 23 Oct 2024 14:15:50 +0000
Nntp-Posting-Date: Wed, 23 Oct 2024 14:15:50 +0000
X-Received-Bytes: 1774
Organization: UsenetExpress - www.usenetexpress.com
X-Complaints-To: abuse@usenetexpress.com
View all headers

On Wed, 23 Oct 2024 08:54:11 -0400, Chris Ahlstrom wrote:

> I haven't used enscript for quite awhile. I used it all the time at work to
> print code without having to use a text editor to do it. Here's part of a
> script to convert a text file to PDF, with line numbers and a narrow font
> suitable to printing. Blank lines and some info output removed.
>
> #!/bin/bash
> FONT="Monospace8"
> OPTIONS="q -B -C -G -T3"
>

You must write very short lines.

The default page for enscript is A4 and that is very near to
Letter size of 8.5" x 11".

Most code, if we include the indents, has long lines of far more
than 80 characters that even with a size 8 font will exceed the
bounds of an A4 page. Enscript will wrap them by default and the
result is sort of ugly.

One could specify "landscape" orientation but that may not solve
the problem entirely.

The only other possibility would be to specify an A1 page size.

My philosophy is just to keep it in text format.

Enscript, and equivalents such as aps, paps, etc., are certainly
very capable programs, but who the fuck actually PRINTS nowadays?

Printing is, or should be, dead. Like facsimile (fax) it is kept
alive by throwback idiots that cannot adapt to change.

--
Systemd: solving all the problems that you never knew you had.

Subject: Re: Enscript
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Wed, 23 Oct 2024 18:09 UTC
References: 1 2
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: Wed, 23 Oct 2024 14:09:01 -0400
Organization: None
Lines: 57
Message-ID: <vfbe4c$2518h$1@dont-email.me>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Wed, 23 Oct 2024 20:09:18 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="e98396259acb753fb4f93782939bc6b9";
logging-data="2262289"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/byxCfmZKpw67QqN0hOYx2"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:7nFGignwZNW6Gj3B8LEUOikdxog=
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Slrn: Why use anything else?
X-Mutt: The most widely-used MUA
X-Face: 63n<76,LYJQ2m#'5YL#.T95xqyPiG`ffIP70tN+j"(&@6(4l\7uL)2+/-r0)/9SjZ`qw=
Njn mr93Xrerx}aQG-Ap5IHn"xe;`5:pp"$RH>Kx_ngWw%c\+6qSg!q"41n2[.N/;Pu6q8?+Poz~e
A9? $6_R7cm.l!s8]yfv7x+-FYQ|/k
View all headers

Farley Flud wrote this copyrighted missive and expects royalties:

> On Wed, 23 Oct 2024 08:54:11 -0400, Chris Ahlstrom wrote:
>
>> I haven't used enscript for quite awhile. I used it all the time at work to
>> print code without having to use a text editor to do it. Here's part of a
>> script to convert a text file to PDF, with line numbers and a narrow font
>> suitable to printing. Blank lines and some info output removed.
>>
>> #!/bin/bash
>> FONT="Monospace8"
>> OPTIONS="q -B -C -G -T3"
>
> You must write very short lines.

I generally keep them under 80 characters. Much easier to read, for
one thing.

> The default page for enscript is A4 and that is very near to
> Letter size of 8.5" x 11".
>
> Most code, if we include the indents, has long lines of far more
> than 80 characters that even with a size 8 font will exceed the
> bounds of an A4 page. Enscript will wrap them by default and the
> result is sort of ugly.
>
> One could specify "landscape" orientation but that may not solve
> the problem entirely.
>
> The only other possibility would be to specify an A1 page size.
>
> My philosophy is just to keep it in text format.

Well, printing text (e.g. from vim) doesn't (as far as I know) allow
for changing the font.

> Enscript, and equivalents such as aps, paps, etc., are certainly
> very capable programs, but who the fuck actually PRINTS nowadays?

I do, in limited quantities.

> Printing is, or should be, dead. Like facsimile (fax) it is kept
> alive by throwback idiots that cannot adapt to change.

:-D

Sometimes it's easier, when going through a big script, to have the print
out to mark up as one makes the script work. Then later apply the fixes to the
file.

--
My analyst told me that I was right out of my head,
But I said, "Dear Doctor, I think that it is you instead.
Because I have got a thing that is unique and new,
To prove it I'll have the last laugh on you.
'Cause instead of one head -- I've got two.
And you know two heads are better than one.

Subject: Re: Enscript
From: Farley Flud
Newsgroups: comp.os.linux.advocacy
Organization: UsenetExpress - www.usenetexpress.com
Date: Wed, 23 Oct 2024 19:06 UTC
References: 1 2 3
From: ff@linux.rocks (Farley Flud)
Subject: Re: Enscript
Newsgroups: comp.os.linux.advocacy
References: <vfarm9$21oij$1@dont-email.me> <pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks> <vfbe4c$2518h$1@dont-email.me>
Mime-Version: 1.0
Message-Id: <pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 22
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!border-4.nntp.ord.giganews.com!border-1.nntp.ord.giganews.com!nntp.giganews.com!weretis.net!feeder9.news.weretis.net!panix!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Wed, 23 Oct 2024 19:06:13 +0000
Nntp-Posting-Date: Wed, 23 Oct 2024 19:06:13 +0000
X-Received-Bytes: 1142
X-Complaints-To: abuse@usenetexpress.com
Organization: UsenetExpress - www.usenetexpress.com
View all headers

On Wed, 23 Oct 2024 14:09:01 -0400, Chris Ahlstrom wrote:

>
> Sometimes it's easier, when going through a big script, to have the print
> out to mark up as one makes the script work. Then later apply the fixes to the
> file.
>

That's the same old excuse.

It seems that you haven't gotten fully accustomed to the digital way
of doing things.

There are ways, if only totally ad hoc, of doing the same with text
editors.

In my opinion, there should NEVER be a need to rise up from ones chair
to peruse a ridiculous print.

--
Systemd: solving all the problems that you never knew you had.

Subject: Re: Enscript
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Wed, 23 Oct 2024 20:42 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: Wed, 23 Oct 2024 16:42:29 -0400
Organization: None
Lines: 34
Message-ID: <vfbn44$28lpf$5@dont-email.me>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Wed, 23 Oct 2024 22:42:45 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="e98396259acb753fb4f93782939bc6b9";
logging-data="2381615"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18jbT5OKyeCRWMLnFjohQ6K"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:M+syfNFUuG53RYXwRJQh3Xs1y04=
X-Mutt: The most widely-used MUA
X-Face: 63n<76,LYJQ2m#'5YL#.T95xqyPiG`ffIP70tN+j"(&@6(4l\7uL)2+/-r0)/9SjZ`qw=
Njn mr93Xrerx}aQG-Ap5IHn"xe;`5:pp"$RH>Kx_ngWw%c\+6qSg!q"41n2[.N/;Pu6q8?+Poz~e
A9? $6_R7cm.l!s8]yfv7x+-FYQ|/k
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Slrn: Why use anything else?
View all headers

Farley Flud wrote this copyrighted missive and expects royalties:

> On Wed, 23 Oct 2024 14:09:01 -0400, Chris Ahlstrom wrote:
>
>> Sometimes it's easier, when going through a big script, to have the print
>> out to mark up as one makes the script work. Then later apply the fixes to the
>> file.
>
> That's the same old excuse.
>
> It seems that you haven't gotten fully accustomed to the digital way
> of doing things.

There is no "digital way". It's doing some light editing or thinking on a pad
of paper or doing the same on a (heavier) tablet. One hand versus two hands.
But otherwise an isomorphic paradigm.

> There are ways, if only totally ad hoc, of doing the same with text
> editors.

It's difficult to draw arrows across a page, or draw a little diagram, in a
text editor.

Editing a printout on paper rather than editing in a text editor in a laptop is
a lot easier when sitting on the crapper. Or at the doctor's office.

> In my opinion, there should NEVER be a need to rise up from ones chair
> to peruse a ridiculous print.

No wonder your ass is so ponderous! :-D Get up off it and stand! Isn't your
fitness watch telling you that?

--
Will it improve my CASH FLOW?

Subject: Re: Enscript
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Thu, 24 Oct 2024 00:36 UTC
References: 1 2 3 4 5
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!2.eu.feeder.erje.net!feeder.erje.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: 24 Oct 2024 00:36:20 GMT
Lines: 9
Message-ID: <lntj44Fr91vU3@mid.individual.net>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
<vfbn44$28lpf$5@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net Aya3cRYkCRba/YENhnIgqQCXi6UhPG9ATNk4exqDr4l1lJ+19F
Cancel-Lock: sha1:wV0LOzpffsLMfzegYRbp0a3IPX4= sha256:k4bitDaT4tAAFj9uv0UQ3mEMh3gEEJSXHttWPTSsi4o=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Wed, 23 Oct 2024 16:42:29 -0400, Chris Ahlstrom wrote:

> No wonder your ass is so ponderous! :-D Get up off it and stand! Isn't
> your fitness watch telling you that?

It took the app forever to update just now. Yup, 54 minutes on a outdoor
bike as usual. In truth it was 54 minutes pushing a lawnmower which always
shows as a bike. This time ouf year mowing the lawn means mulching the
leaves and deer turds. Great things mulching mowers.

Subject: Would Missoula arrest you if you shut a deer from your window ?
From: Relf
Newsgroups: comp.os.linux.advocacy
Date: Thu, 1 Jan 1970 00:00 UTC
References: 1 2 3 4 5 6
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!2.eu.feeder.erje.net!feeder.erje.net!feeder2.feed.ams11.usenet.farm!feed.usenet.farm!peer03.ams4!peer.am4.highwinds-media.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx43.iad.POSTED!not-for-mail
Content-Type: Text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
From: Usenet@Jeff-Relf.Me (Relf)
Message-ID: <Jeff-Relf.Me@Oct.24--2.45am.Seattle.2024>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
<vfbn44$28lpf$5@dont-email.me>
<lntj44Fr91vU3@mid.individual.net>
Newsgroups: comp.os.linux.advocacy
Subject: Would Missoula arrest you if you shut a deer from your window ?
User-Agent: Jeff-Relf.Me/z1.HTM
Lines: 3
X-Complaints-To: https://www.astraweb.com/aup
NNTP-Posting-Date: Thu, 24 Oct 2024 09:45:58 UTC
Date: Thu, 24 Oct 2024 02:45:54 -0700 (Seattle)
X-Received-Bytes: 977
View all headers

rBowman: mulching the leaves and deer turds.

Would Missoula arrest you if you shut a deer from your window ?

Subject: Re: Enscript
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Thu, 24 Oct 2024 10:47 UTC
References: 1 2 3 4 5 6
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: Thu, 24 Oct 2024 06:47:32 -0400
Organization: None
Lines: 26
Message-ID: <vfd8kn$2jhev$3@dont-email.me>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
<vfbn44$28lpf$5@dont-email.me> <lntj44Fr91vU3@mid.individual.net>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Thu, 24 Oct 2024 12:47:52 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="0e95730a4005f7be534f96a86c610916";
logging-data="2737631"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18u41gNEos7+pDPBBEd/8lc"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:OoEkj3fCoywLitpi+QSntP5i/8E=
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Mutt: The most widely-used MUA
X-Slrn: Why use anything else?
X-Face: 63n<76,LYJQ2m#'5YL#.T95xqyPiG`ffIP70tN+j"(&@6(4l\7uL)2+/-r0)/9SjZ`qw=
Njn mr93Xrerx}aQG-Ap5IHn"xe;`5:pp"$RH>Kx_ngWw%c\+6qSg!q"41n2[.N/;Pu6q8?+Poz~e
A9? $6_R7cm.l!s8]yfv7x+-FYQ|/k
View all headers

rbowman wrote this copyrighted missive and expects royalties:

> On Wed, 23 Oct 2024 16:42:29 -0400, Chris Ahlstrom wrote:
>
>> No wonder your ass is so ponderous! :-D Get up off it and stand! Isn't
>> your fitness watch telling you that?
>
> It took the app forever to update just now. Yup, 54 minutes on a outdoor
> bike as usual. In truth it was 54 minutes pushing a lawnmower which always
> shows as a bike. This time ouf year mowing the lawn means mulching the
> leaves and deer turds. Great things mulching mowers.

My watch has one thing that bugs me. Let's say I go walking without activating
the "Walking" app. It counts the steps, but adds in only a few calories.
If I activate it, then it counts calories.

I need to know if I burned enough calories to deserve a couple beers!

--
A little retrospection shows that although many fine, useful software systems
have been designed by committees and built as part of multipart projects,
those software systems that have excited passionate fans are those that are
the products of one or a few designing minds, great designers. Consider Unix,
APL, Pascal, Modula, the Smalltalk interface, even Fortran; and contrast them
with Cobol, PL/I, Algol, MVS/370, and MS-DOS.
-- Fred Brooks

Subject: Re: Enscript
From: Farley Flud
Newsgroups: comp.os.linux.advocacy
Organization: UsenetExpress - www.usenetexpress.com
Date: Thu, 24 Oct 2024 18:33 UTC
References: 1 2 3 4 5 6 7
From: ff@linux.rocks (Farley Flud)
Subject: Re: Enscript
Newsgroups: comp.os.linux.advocacy
References: <vfarm9$21oij$1@dont-email.me> <pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks> <vfbe4c$2518h$1@dont-email.me> <pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks> <vfbn44$28lpf$5@dont-email.me> <lntj44Fr91vU3@mid.individual.net> <vfd8kn$2jhev$3@dont-email.me>
Mime-Version: 1.0
Message-Id: <pan$bfee9$82c2403d$60351f9c$b967e98f@linux.rocks>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 20
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Thu, 24 Oct 2024 18:33:31 +0000
Nntp-Posting-Date: Thu, 24 Oct 2024 18:33:31 +0000
X-Received-Bytes: 1369
Organization: UsenetExpress - www.usenetexpress.com
X-Complaints-To: abuse@usenetexpress.com
View all headers

On Thu, 24 Oct 2024 06:47:32 -0400, Chris Ahlstrom wrote:

>
> My watch has one thing that bugs me. Let's say I go walking without activating
> the "Walking" app. It counts the steps, but adds in only a few calories.
> If I activate it, then it counts calories.
>

I really hate to burst your bubble, but walking, even walking a few miles,
burns very little calories. (I won't go into the physics.)

The only exception would be walking up a steep hill.

Also I cannot resist condemning another gadget freak. What rational
and sophisticated human being would ever waste money on a useless
fitness watch?

--
Systemd: solving all the problems that you never knew you had.

Subject: Re: Would Missoula arrest you if you shut a deer from your window ?
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Thu, 24 Oct 2024 19:04 UTC
References: 1 2 3 4 5 6 7
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Would Missoula arrest you if you shut a deer from your window ?
Date: 24 Oct 2024 19:04:58 GMT
Lines: 19
Message-ID: <lnvk2qF6gc7U2@mid.individual.net>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
<vfbn44$28lpf$5@dont-email.me> <lntj44Fr91vU3@mid.individual.net>
<Jeff-Relf.Me@Oct.24--2.45am.Seattle.2024>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net uqe1kOr1COBZrDXjteDSOwrO2agHNzzgJChEsyz2j/9H3uE70W
Cancel-Lock: sha1:HgPEfc1Tq7/yfn6S0tlaA08yMPM= sha256:+KAfQdQ4g/D0jXMnXalj78vtiHEq6Ho85c/7IT8qipg=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Thu, 24 Oct 2024 02:45:54 -0700 (Seattle), Relf wrote:

> rBowman: mulching the leaves and deer turds.
>
> Would Missoula arrest you if you shut a deer from your window ?

The city of Missoula would. Physically that's a very small part of
Missoula county. Around the 4th of July you can tell where the city
boundaries are by the fireworks stands that spring up a few feet on the
other side of the line.

In Helena they might turn a blind eye.

https://www.ktvh.com/news/mtn-outdoors/deer-culling-starts-in-helena

The deer in Helena are mule deer which are more aggressive. The Missoula
urban deer are whitetails which are more docile and don't cause as many
problems so trying to introduce a cull hasn't been popular.

Subject: Re: Enscript
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Thu, 24 Oct 2024 19:38 UTC
References: 1 2 3 4 5 6 7
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: 24 Oct 2024 19:38:54 GMT
Lines: 15
Message-ID: <lnvm2eF6gc7U6@mid.individual.net>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
<vfbn44$28lpf$5@dont-email.me> <lntj44Fr91vU3@mid.individual.net>
<vfd8kn$2jhev$3@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net 5pk88hMOwa4BXpPaeU8PnwRw1WhRhXZr+IYebuyEeBT/M4Nfvl
Cancel-Lock: sha1:RoX+iwPdtV1r26a5X7sp8bBzgIE= sha256:jWg1K6yY/Gp0ODo+JKwlu45Wicwn6ASynHmxWWtNE0A=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Thu, 24 Oct 2024 06:47:32 -0400, Chris Ahlstrom wrote:

> My watch has one thing that bugs me. Let's say I go walking without
> activating the "Walking" app. It counts the steps, but adds in only a
> few calories.
> If I activate it, then it counts calories.
>
> I need to know if I burned enough calories to deserve a couple beers!

I don't even look at the calories. I don't think it's very accurate. I
never activate the walking app and let it autoselect if it feels like it.
That can be amusing. A couple of weeks ago I took a 7 mile walk up and
down a couple of ridges scoring a lot of fitness minutes. It came up with
a 30 minute walk for the time I spent going downhill back to the car.

Subject: Re: Enscript
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Thu, 24 Oct 2024 20:26 UTC
References: 1 2 3 4 5 6 7 8
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: Thu, 24 Oct 2024 16:26:08 -0400
Organization: None
Lines: 29
Message-ID: <vfeahk$2pc8c$3@dont-email.me>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
<vfbn44$28lpf$5@dont-email.me> <lntj44Fr91vU3@mid.individual.net>
<vfd8kn$2jhev$3@dont-email.me>
<pan$bfee9$82c2403d$60351f9c$b967e98f@linux.rocks>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Thu, 24 Oct 2024 22:26:28 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="0e95730a4005f7be534f96a86c610916";
logging-data="2928908"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19y51hSzri7N9ZjTaGfOeMa"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:fcQe6q396veR1bUUNUQta9MUGKs=
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Face: 63n<76,LYJQ2m#'5YL#.T95xqyPiG`ffIP70tN+j"(&@6(4l\7uL)2+/-r0)/9SjZ`qw=
Njn mr93Xrerx}aQG-Ap5IHn"xe;`5:pp"$RH>Kx_ngWw%c\+6qSg!q"41n2[.N/;Pu6q8?+Poz~e
A9? $6_R7cm.l!s8]yfv7x+-FYQ|/k
X-Mutt: The most widely-used MUA
X-Slrn: Why use anything else?
View all headers

Farley Flud wrote this copyrighted missive and expects royalties:

> On Thu, 24 Oct 2024 06:47:32 -0400, Chris Ahlstrom wrote:
>
>>
>> My watch has one thing that bugs me. Let's say I go walking without activating
>> the "Walking" app. It counts the steps, but adds in only a few calories.
>> If I activate it, then it counts calories.
>
> I really hate to burst your bubble, but walking, even walking a few miles,
> burns very little calories. (I won't go into the physics.)

:-D You don't know squat.

> The only exception would be walking up a steep hill.
>
> Also I cannot resist condemning another gadget freak. What rational
> and sophisticated human being would ever waste money on a useless
> fitness watch?

I find the watch very useful. Among other things, it displays incoming phone
calls, allowing me to zap the call (hang up) without digging in my pocket for
the phone.

Gadget freak :-D

--
Real programmers don't bring brown-bag lunches. If the vending machine
doesn't sell it, they don't eat it. Vending machines don't sell quiche.

Subject: Re: Enscript
From: DFS
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Thu, 24 Oct 2024 20:52 UTC
References: 1 2 3 4 5 6 7 8
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: guhnoo-basher@linux.advocaca (DFS)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: Thu, 24 Oct 2024 16:52:09 -0400
Organization: A noiseless patient Spider
Lines: 40
Message-ID: <vfec1o$2pki7$3@dont-email.me>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
<vfbn44$28lpf$5@dont-email.me> <lntj44Fr91vU3@mid.individual.net>
<vfd8kn$2jhev$3@dont-email.me>
<pan$bfee9$82c2403d$60351f9c$b967e98f@linux.rocks>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 24 Oct 2024 22:52:09 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="8ade3d07b79ba2dd5a5882ff1a5f0bf8";
logging-data="2937415"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18IuELX04A4s9WXadNW0D97"
User-Agent: Betterbird (Windows)
Cancel-Lock: sha1:8S0q9oGr3LBZp1H27VX84x3KkZ8=
In-Reply-To: <pan$bfee9$82c2403d$60351f9c$b967e98f@linux.rocks>
Content-Language: en-US
View all headers

On 10/24/2024 2:33 PM, Lameass Know-it-all Larry Piet wrote:

> On Thu, 24 Oct 2024 06:47:32 -0400, Chris Ahlstrom wrote:
>
>>
>> My watch has one thing that bugs me. Let's say I go walking without activating
>> the "Walking" app. It counts the steps, but adds in only a few calories.
>> If I activate it, then it counts calories.
>>
>
> I really hate to burst your bubble, but walking, even walking a few miles,
> burns very little calories. (I won't go into the physics.)

You didn't burst any bubbles, lameass.

Most of the know-it-all bullshit you post is already known to everyone here.

Everyone knows calories burned while walking or jogging depend on your
bodyweight and pace and age and metabolism.

> The only exception would be walking up a steep hill.

No, that's not the only exception.

> Also I cannot resist condemning another gadget freak. What rational
> and sophisticated human being would ever waste money on a useless
> fitness watch?

Aren't you the gadget asshole with 6 computers?

Only the 2 Windows systems are worth anything economically, of course;
the 4 GuhNoo crapboxes are just playtime tinkertoys.

ps GFIA

Subject: Re: Enscript
From: Physfitfreak
Newsgroups: comp.os.linux.advocacy
Organization: Modern Human
Date: Fri, 25 Oct 2024 03:33 UTC
References: 1 2
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: Thu, 24 Oct 2024 22:33:24 -0500
Organization: Modern Human
Message-ID: <vff3i5$1bvkt$4@solani.org>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 25 Oct 2024 03:33:25 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1441437"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:dXMrAvdA3TexTkbvJINs+7sH/lU=
X-User-ID: eJwFwYEBwCAIA7CXrEBh52iR/09YEkZQ6Qx6TIztJ3txhiXLlY94+FoFdfTdhRS8nDY28q28K5oYzcVx/VmNFew=
Content-Language: en-US
In-Reply-To: <pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
View all headers

On 10/23/24 09:15, Farley Flud wrote:
> On Wed, 23 Oct 2024 08:54:11 -0400, Chris Ahlstrom wrote:
>
>> I haven't used enscript for quite awhile. I used it all the time at work to
>> print code without having to use a text editor to do it. Here's part of a
>> script to convert a text file to PDF, with line numbers and a narrow font
>> suitable to printing. Blank lines and some info output removed.
>>
>> #!/bin/bash
>> FONT="Monospace8"
>> OPTIONS="q -B -C -G -T3"
>>
>
> You must write very short lines.
>
> The default page for enscript is A4 and that is very near to
> Letter size of 8.5" x 11".
>
> Most code, if we include the indents, has long lines of far more
> than 80 characters that even with a size 8 font will exceed the
> bounds of an A4 page. Enscript will wrap them by default and the
> result is sort of ugly.
>
> One could specify "landscape" orientation but that may not solve
> the problem entirely.
>
> The only other possibility would be to specify an A1 page size.
>
> My philosophy is just to keep it in text format.
>
> Enscript, and equivalents such as aps, paps, etc., are certainly
> very capable programs, but who the fuck actually PRINTS nowadays?
>
> Printing is, or should be, dead. Like facsimile (fax) it is kept
> alive by throwback idiots that cannot adapt to change.
>
>
>

Like most of U.S. government agencies. Especially social security admin.

You're still young. Wait a few more years and you'll see how you fall
back on printing and regular mail. They give you no other choice because
those offices are all run by semi-literate old fat Black women.

Subject: Re: Enscript
From: Physfitfreak
Newsgroups: comp.os.linux.advocacy
Organization: Modern Human
Date: Fri, 25 Oct 2024 03:48 UTC
References: 1 2 3 4 5 6 7 8
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: Thu, 24 Oct 2024 22:48:37 -0500
Organization: Modern Human
Message-ID: <vff4el$1bvkt$5@solani.org>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
<vfbn44$28lpf$5@dont-email.me> <lntj44Fr91vU3@mid.individual.net>
<vfd8kn$2jhev$3@dont-email.me>
<pan$bfee9$82c2403d$60351f9c$b967e98f@linux.rocks>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 25 Oct 2024 03:48:37 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1441437"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:nOBokT6Zb6SPgFM/+iF5R4YQOhE=
X-User-ID: eJwNyskNADEIBMGUhmU4HA7GJv8Q1p+WSmpTF++gm9PGRvNl7QAeKZfuU9kQ4p1tRyoXgR3D1ptzWlE7vxGpqvMDPCAVfA==
In-Reply-To: <pan$bfee9$82c2403d$60351f9c$b967e98f@linux.rocks>
Content-Language: en-US
View all headers

On 10/24/24 13:33, Farley Flud wrote:
> I really hate to burst your bubble, but walking, even walking a few miles,
> burns very little calories. (I won't go into the physics.)
>
> The only exception would be walking up a steep hill.

There's more to walking (or any exercise) than burning calories :)

But burning calories is such an American thing, cause people here are
all fat. So ..

Subject: Re: Enscript
From: CrudeSausage
Newsgroups: comp.os.linux.advocacy
Organization: usenet-news.net
Date: Fri, 25 Oct 2024 12:48 UTC
References: 1 2 3
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!news.quux.org!weretis.net!feeder9.news.weretis.net!newsfeed.hasname.com!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx10.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Betterbird (Windows)
Subject: Re: Enscript
Newsgroups: comp.os.linux.advocacy
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vff3i5$1bvkt$4@solani.org>
Content-Language: en-US
From: crude@sausa.ge (CrudeSausage)
In-Reply-To: <vff3i5$1bvkt$4@solani.org>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 72
Message-ID: <ksMSO.201808$WtV9.157501@fx10.iad>
X-Complaints-To: abuse@usenet-news.net
NNTP-Posting-Date: Fri, 25 Oct 2024 12:48:16 UTC
Organization: usenet-news.net
Date: Fri, 25 Oct 2024 08:48:08 -0400
X-Received-Bytes: 3725
View all headers

On 2024-10-24 11:33 p.m., Physfitfreak wrote:
> On 10/23/24 09:15, Farley Flud wrote:
>> On Wed, 23 Oct 2024 08:54:11 -0400, Chris Ahlstrom wrote:
>>
>>> I haven't used enscript for quite awhile. I used it all the time at
>>> work to
>>> print code without having to use a text editor to do it. Here's part
>>> of a
>>> script to convert a text file to PDF, with line numbers and a narrow
>>> font
>>> suitable to printing. Blank lines and some info output removed.
>>>
>>> #!/bin/bash
>>> FONT="Monospace8"
>>> OPTIONS="q -B -C -G -T3"
>>>
>>
>> You must write very short lines.
>>
>> The default page for enscript is A4 and that is very near to
>> Letter size of 8.5" x 11".
>>
>> Most code, if we include the indents, has long lines of far more
>> than 80 characters that even with a size 8 font will exceed the
>> bounds of an A4 page.  Enscript will wrap them by default and the
>> result is sort of ugly.
>>
>> One could specify "landscape" orientation but that may not solve
>> the problem entirely.
>>
>> The only other possibility would be to specify an A1 page size.
>>
>> My philosophy is just to keep it in text format.
>>
>> Enscript, and equivalents such as aps, paps, etc., are certainly
>> very capable programs, but who the fuck actually PRINTS nowadays?
>>
>> Printing is, or should be, dead.  Like facsimile (fax) it is kept
>> alive by throwback idiots that cannot adapt to change.
>>
>>
>>
>
>
> Like most of U.S. government agencies. Especially social security admin.
>
> You're still young. Wait a few more years and you'll see how you fall
> back on printing and regular mail. They give you no other choice because
> those offices are all run by semi-literate old fat Black women.

I can confirm that black women are incompetent. By the way, because they
are unimportant, the adjective black when referring to people of black
skin should not be capitalized.

For me, it is easy to test how incompetent black people are: you just
have to order food from the same type of restaurant in different areas
of town. For example, if you go to the Tim Horton's here in
Rivière-des-Prairies, most of the employees are black. Therefore, if you
go to the drive-through and order a medium coffee with two milks and two
sugars, you're likely to get a cappuccino. Go a little bit farther and
order from the same restaurant in Anjou, and you'll get exactly what you
ordered because the employees are White. Similarly, if you order from
McDonald's and select the one where the black employees are, something
will be missing or you'll end up with an entirely different order. Make
the same order from the one in Anjou, and you'll get everything you
asked for and it'll taste better because you won't have to fear that you
might be contaminated by the parasite that makes black people unable to
speak English properly and causes them to walk like apes.

--
CrudeSausage
Paleoconservative, Catholic, Christ is king.

Subject: Re: Enscript
From: Stéphane CARPENTIER
Newsgroups: comp.os.linux.advocacy
Organization: Mulots' Killer
Date: Fri, 25 Oct 2024 19:43 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!2.eu.feeder.erje.net!3.eu.feeder.erje.net!feeder.erje.net!proxad.net!feeder1-2.proxad.net!cleanfeed4-a.proxad.net!nnrp3-1.free.fr!not-for-mail
Newsgroups: comp.os.linux.advocacy
From: sc@fiat-linux.fr (Stéphane CARPENTIER)
Subject: Re: Enscript
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vfbe4c$2518h$1@dont-email.me>
<pan$6f8d9$abe457c3$85e0006b$f14e2a5d@linux.rocks>
Organization: Mulots' Killer
User-Agent: slrn/pre1.0.4-9 (Linux)
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Date: 25 Oct 2024 19:43:44 GMT
Lines: 12
Message-ID: <671bf4f0$0$28498$426a74cc@news.free.fr>
NNTP-Posting-Date: 25 Oct 2024 21:43:44 CEST
NNTP-Posting-Host: 78.201.248.7
X-Trace: 1729885424 news-3.free.fr 28498 78.201.248.7:46546
X-Complaints-To: abuse@proxad.net
View all headers

Le 23-10-2024, Farley Flud <ff@linux.rocks> a écrit :
>
> In my opinion, there should NEVER be a need to rise up from ones chair
> to peruse a ridiculous print.

And then, not so long ago, you were the one trying to use something else
than cups to print. Why that if you don't have a need to print? Just to
the purpose of contradicting yourself once again?

--
Si vous avez du temps à perdre :
https://scarpet42.gitlab.io

Subject: Re: Enscript
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Fri, 25 Oct 2024 21:43 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: 25 Oct 2024 21:43:26 GMT
Lines: 11
Message-ID: <lo2hntFk15rU3@mid.individual.net>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vff3i5$1bvkt$4@solani.org> <ksMSO.201808$WtV9.157501@fx10.iad>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net nM5r3lntJgQA2IDupHzXJAa6+hZu7kJfTeNTfSMmDAU4mQHXnu
Cancel-Lock: sha1:NelAeHrMYhXh/ewu5uq1P7djFZc= sha256:DOd+OnpUyvZaLnEmDvZbvGUvGmrYG9sBnGUV68yKqxI=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Fri, 25 Oct 2024 08:48:08 -0400, CrudeSausage wrote:

> For me, it is easy to test how incompetent black people are: you just
> have to order food from the same type of restaurant in different areas
> of town.

What flavor of black? While setting up a molding system in Mississauga I
worked with a black Jamaican millwright. It would be hard for him to pass
at a KKK meeting but his view of US blacks was similar.

Subject: Re: Enscript
From: Diego Garcia
Newsgroups: comp.os.linux.advocacy
Organization: UsenetExpress - www.usenetexpress.com
Date: Fri, 25 Oct 2024 22:07 UTC
References: 1 2 3 4 5
From: dg@linux.rocks (Diego Garcia)
Subject: Re: Enscript
Newsgroups: comp.os.linux.advocacy
References: <vfarm9$21oij$1@dont-email.me> <pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks> <vff3i5$1bvkt$4@solani.org> <ksMSO.201808$WtV9.157501@fx10.iad> <lo2hntFk15rU3@mid.individual.net>
Mime-Version: 1.0
Message-Id: <pan$eddb4$c8363af9$3a42849$7bcfab2d@linux.rocks>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 22
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!news.quux.org!weretis.net!feeder9.news.weretis.net!newsfeed.hasname.com!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Fri, 25 Oct 2024 22:07:02 +0000
Nntp-Posting-Date: Fri, 25 Oct 2024 22:07:02 +0000
X-Received-Bytes: 1242
X-Complaints-To: abuse@usenetexpress.com
Organization: UsenetExpress - www.usenetexpress.com
View all headers

On 25 Oct 2024 21:43:26 GMT, rbowman wrote:

>
> What flavor of black? While setting up a molding system in Mississauga I
> worked with a black Jamaican millwright. It would be hard for him to pass
> at a KKK meeting but his view of US blacks was similar.
>

Ha, ha, ha, ha, ha, ha, ha!

The stupid know-nothing know-it-all is at it again.

As I declared previously, all one has to do is mention a time
or a place and that Blowman asshole will jump on it with a
fabricated tale of his "experience."

What a fucking phony!

That dipshit could only fool idiots, and that's probably why
he posts to the lackeys of C.O.L.A.

Subject: Re: Enscript
From: CrudeSausage
Newsgroups: comp.os.linux.advocacy
Organization: usenet-news.net
Date: Sat, 26 Oct 2024 17:36 UTC
References: 1 2 3 4 5
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!weretis.net!feeder8.news.weretis.net!npeer.as286.net!npeer-ng0.as286.net!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx45.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Betterbird (Windows)
Subject: Re: Enscript
Newsgroups: comp.os.linux.advocacy
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vff3i5$1bvkt$4@solani.org> <ksMSO.201808$WtV9.157501@fx10.iad>
<lo2hntFk15rU3@mid.individual.net>
Content-Language: en-US
From: crude@sausa.ge (CrudeSausage)
In-Reply-To: <lo2hntFk15rU3@mid.individual.net>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 17
Message-ID: <5N9TO.104919$S9Vb.65962@fx45.iad>
X-Complaints-To: abuse@usenet-news.net
NNTP-Posting-Date: Sat, 26 Oct 2024 17:37:05 UTC
Organization: usenet-news.net
Date: Sat, 26 Oct 2024 13:36:55 -0400
X-Received-Bytes: 1508
View all headers

On 2024-10-25 5:43 p.m., rbowman wrote:
> On Fri, 25 Oct 2024 08:48:08 -0400, CrudeSausage wrote:
>
>> For me, it is easy to test how incompetent black people are: you just
>> have to order food from the same type of restaurant in different areas
>> of town.
>
> What flavor of black? While setting up a molding system in Mississauga I
> worked with a black Jamaican millwright. It would be hard for him to pass
> at a KKK meeting but his view of US blacks was similar.

Haitians, the absolute dumbest breed of black person. I actually like
Jamaicans.

--
CrudeSausage
Paleoconservative, Catholic, Christ is king.

Subject: Re: Enscript
From: Physfitfreak
Newsgroups: comp.os.linux.advocacy
Organization: Modern Human
Date: Mon, 28 Oct 2024 01:01 UTC
References: 1 2 3 4 5 6
Path: eternal-september.org!news.eternal-september.org!feeder2.eternal-september.org!2.eu.feeder.erje.net!3.eu.feeder.erje.net!feeder.erje.net!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Enscript
Date: Sun, 27 Oct 2024 20:01:09 -0500
Organization: Modern Human
Message-ID: <vfmnol$1gae1$2@solani.org>
References: <vfarm9$21oij$1@dont-email.me>
<pan$123ce$b55cb55c$c4582e9e$302f6741@linux.rocks>
<vff3i5$1bvkt$4@solani.org> <ksMSO.201808$WtV9.157501@fx10.iad>
<lo2hntFk15rU3@mid.individual.net>
<pan$eddb4$c8363af9$3a42849$7bcfab2d@linux.rocks>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Mon, 28 Oct 2024 01:01:09 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1583553"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:nlCdKOmkz/2XsQq44oRL8cakj+o=
Content-Language: en-US
X-User-ID: eJwNy8kBwCAMA7CVCLYTOg7Nsf8Irf4S3DyDLqdGs6VA5xy7hD3rZshQpC/fwZonDWxbcQuVIjb+hq6Dmn4/L0QVKw==
In-Reply-To: <pan$eddb4$c8363af9$3a42849$7bcfab2d@linux.rocks>
View all headers

On 10/25/24 17:07, Diego Garcia wrote:
> On 25 Oct 2024 21:43:26 GMT, rbowman wrote:
>
>>
>> What flavor of black? While setting up a molding system in Mississauga I
>> worked with a black Jamaican millwright. It would be hard for him to pass
>> at a KKK meeting but his view of US blacks was similar.
>>
>
> Ha, ha, ha, ha, ha, ha, ha!
>
> The stupid know-nothing know-it-all is at it again.
>
> As I declared previously, all one has to do is mention a time
> or a place and that Blowman asshole will jump on it with a
> fabricated tale of his "experience."
>
> What a fucking phony!
>
> That dipshit could only fool idiots, and that's probably why
> he posts to the lackeys of C.O.L.A.
>
>

Hehe :)

He enjoys his groupies. I don't enjoy my groupies. I kill file them.

Hey whatever happened to your videos you were uploading. Did you upload
a few more than those first three?

1

rocksolid light 0.9.8
clearnet tor