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


Groups > comp.os.linux.misc > #87706

Re: The boring Linux habit that saves machines

From rbowman <bowman@montana.com>
Newsgroups comp.os.linux.misc
Subject Re: The boring Linux habit that saves machines
Date 2026-06-09 01:30 +0000
Message-ID <n8p8kqF8q2vU4@mid.individual.net> (permalink)
References (14 earlier) <ov2gfmxj3k.ln2@Telcontar.valinor> <IGkVR.19873$AR2.1465@fx38.iad> <SCudnXWn6J_Srbv3nZ2dnZfqn_ednZ2d@giganews.com> <n8o0u2FqrflU7@mid.individual.net> <dyDVR.24697$Mm3.14474@fx33.iad>

Show all headers | View raw


On Mon, 08 Jun 2026 18:08:09 GMT, Charlie Gibbs wrote:

> On 2026-06-08, rbowman <bowman@montana.com> wrote:
> 
>> On Sun, 7 Jun 2026 23:00:22 -0400, c186282 wrote:
>>
>>>    Long nasty narrative filenames with lots of punctuation became our
>>>    norm and nobody would stop doing it. A 'human nature' issue alas.
>>
>> Like many human activities a happy balance is rare. We had one
>> programmer who thought anything beyond 3 characters was a waste. After
>> a while you learned 'ary' was going to be an array of something. otoh
>> my dislike for Gtk was in part from the excessively long snake case
>> function names.
>>
>> I started reading a Python book I got in a humble bundle. It's the
>> third edition and in the preface the author says he prefers camel case
>> and used it in the previous edition but decided to use snake case to
>> demonstrate the true Pythonista style.
> 
> OK, I bite.  What's snake case, and how does it differ from camel case?

camelCase   snake_case.

https://peps.python.org/pep-0008/#naming-conventions

"Function names should be lowercase, with words separated by underscores 
as necessary to improve readability.

Variable names follow the same convention as function names.

mixedCase is allowed only in contexts where that’s already the prevailing 
style (e.g. threading.py), to retain backwards compatibility."


It's the last paragraph that's the kicker. PySide6 and PyQt6 are Python 
bindings for the Qt libraries, which use camel case like

self.setCentralWidget(central_widget)

Supposedly you can add

from __feature__ import snake_case, true_property

and use self.set_central_widget(). It works some of the time. I'm not 
enough of a Python purist to wonder if it works for this particular 
function so I stick to camel case. Besides I prefer it but in Rome... Much 
of the legacy code I worked on was snake case so if I was modifying it I 
would stick to the style of the original.

What I do take exception to is Hungarian notation.

https://en.wikipedia.org/wiki/Hungarian_notation

Microsoft should have sent Simonyi back to Hungary in a box. Note: I've 
liked the Hungarians I've worked with but not this particular one. 

Back to comp.os.linux.misc | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-05-30 22:28 +0000
  Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-05-30 23:51 -0400
    Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-05-31 04:23 +0000
      Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-05-31 02:26 -0400
        Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-05-31 06:41 +0000
          Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-05-31 03:37 -0400
            Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-05-31 07:46 +0000
              Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-06 08:55 +0000
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-06 12:07 +0200
                Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-06 10:14 +0000
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-06 13:06 +0200
                Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-06 11:12 +0000
                Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-07 02:45 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 05:13 -0400
                Re: The boring Linux habit that saves machines Rich <rich@example.invalid> - 2026-06-06 18:30 +0000
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-06 20:49 +0200
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 02:00 -0400
          Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-06 09:07 +0000
            Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 02:11 -0400
          Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-06 09:10 +0000
            Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 02:15 -0400
      Re: The boring Linux habit that saves machines Anssi Saari <anssi.saari@usenet.mail.kapsi.fi> - 2026-06-01 12:20 +0300
        Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-01 09:38 +0000
          Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-02 02:20 -0400
            Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-02 11:08 +0000
              Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-02 23:58 -0400
                Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-04 11:47 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-04 11:57 -0400
                Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-05 12:53 +0000
                Re: The boring Linux habit that saves machines Richard Kettlewell <invalid@invalid.invalid> - 2026-06-05 17:35 +0100
                Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-05 16:42 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-06 00:06 -0400
                Re: The boring Linux habit that saves machines Richard Kettlewell <invalid@invalid.invalid> - 2026-06-06 10:35 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 03:35 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-07 13:39 +0100
                Re: The boring Linux habit that saves machines Richard Kettlewell <invalid@invalid.invalid> - 2026-06-07 14:41 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-08 00:04 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-08 09:34 +0100
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-08 18:08 +0000
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-08 21:24 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-09 01:46 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-09 03:09 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-09 11:17 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-10 01:33 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-10 11:53 +0100
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-10 18:52 +0200
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-10 21:47 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 02:58 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-11 01:36 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-11 11:46 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 17:15 +0000
                Re: The boring Linux habit that saves machines Richard Kettlewell <invalid@invalid.invalid> - 2026-06-11 07:52 +0100
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-11 11:52 +0100
                Re: The boring Linux habit that saves machines Marc Haber <mh+usenetspam2616@zugschl.us> - 2026-06-11 18:47 +0200
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-12 12:00 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 16:59 +0000
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-12 12:02 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-12 18:21 +0000
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-13 13:58 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-13 19:29 +0000
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-13 20:36 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-14 00:53 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-13 23:43 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 16:55 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-11 01:16 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 06:28 +0000
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-11 11:42 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 16:41 +0000
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-11 11:40 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 17:35 +0000
                [OT] TINA applied to political opponents (was: Re: The boring Linux habit that saves machines) Nuno Silva <nunojsilva@invalid.invalid> - 2026-06-12 09:35 +0100
                Re: [OT] TINA applied to political opponents The Natural Philosopher <tnp@invalid.invalid> - 2026-06-12 12:07 +0100
                Re: [OT] TINA applied to political opponents Rich <rich@example.invalid> - 2026-06-12 14:18 +0000
                Re: [OT] TINA applied to political opponents The Natural Philosopher <tnp@invalid.invalid> - 2026-06-12 16:46 +0100
                Re: [OT] TINA applied to political opponents rbowman <bowman@montana.com> - 2026-06-12 19:02 +0000
                Re: [OT] TINA applied to political opponents The Natural Philosopher <tnp@invalid.invalid> - 2026-06-13 14:00 +0100
                Re: [OT] TINA applied to political opponents rbowman <bowman@montana.com> - 2026-06-13 19:39 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-12 02:52 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-12 12:20 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-12 18:16 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-13 03:52 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-13 13:56 +0100
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-13 13:53 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-13 01:46 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-13 06:20 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-13 03:54 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-13 14:06 +0100
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-13 19:21 +0000
                Re: The boring Linux habit that saves machines "Carlos E. R." <robin_listas@es.invalid> - 2026-06-14 14:41 +0200
                [OT] Percetion of the USA abroad (was: Re: The boring Linux habit that saves machines) Nuno Silva <nunojsilva@invalid.invalid> - 2026-06-11 09:06 +0100
                Re: [OT] Percetion of the USA abroad The Natural Philosopher <tnp@invalid.invalid> - 2026-06-11 12:03 +0100
                Re: [OT] Percetion of the USA abroad rbowman <bowman@montana.com> - 2026-06-11 17:44 +0000
                Re: [OT] Percetion of the USA abroad "Carlos E.R." <robin_listas@es.invalid> - 2026-06-11 21:18 +0200
                Re: [OT] Percetion of the USA abroad The Natural Philosopher <tnp@invalid.invalid> - 2026-06-12 12:12 +0100
                Re: [OT] Percetion of the USA abroad c186282 <c186282@nnada.net> - 2026-06-13 01:27 -0400
                Re: [OT] Percetion of the USA abroad rbowman <bowman@montana.com> - 2026-06-13 06:23 +0000
                Re: [OT] Percetion of the USA abroad c186282 <c186282@nnada.net> - 2026-06-13 04:01 -0400
                Re: [OT] Percetion of the USA abroad (was: Re: The boring Linux habit that saves machines) rbowman <bowman@montana.com> - 2026-06-11 17:40 +0000
                Re: [OT] Percetion of the USA abroad The Natural Philosopher <tnp@invalid.invalid> - 2026-06-12 12:07 +0100
                Re: [OT] Percetion of the USA abroad rbowman <bowman@montana.com> - 2026-06-12 19:17 +0000
                Re: [OT] Percetion of the USA abroad The Natural Philosopher <tnp@invalid.invalid> - 2026-06-13 14:03 +0100
                Re: [OT] Percetion of the USA abroad rbowman <bowman@montana.com> - 2026-06-13 20:06 +0000
                Re: [OT] Percetion of the USA abroad c186282 <c186282@nnada.net> - 2026-06-13 00:58 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-10 19:22 +0000
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-10 21:48 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-11 00:57 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 06:27 +0000
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-09 18:28 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-09 02:54 -0400
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-09 01:27 -0400
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-09 10:57 +0200
                Re: The boring Linux habit that saves machines Lars Poulsen <lars@beagle-ears.com> - 2026-06-07 08:00 -0700
                Re: The boring Linux habit that saves machines Richard Kettlewell <invalid@invalid.invalid> - 2026-06-07 16:35 +0100
                Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-07 23:48 +0000
                Re: The boring Linux habit that saves machines Nuno Silva <nunojsilva@invalid.invalid> - 2026-06-08 00:53 +0100
                Re: The boring Linux habit that saves machines Richard Kettlewell <invalid@invalid.invalid> - 2026-06-08 08:26 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-08 23:06 -0400
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-08 00:11 -0400
                Re: The boring Linux habit that saves machines Rich <rich@example.invalid> - 2026-06-09 17:42 +0000
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-06 10:39 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 03:44 -0400
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-05 23:55 -0400
                Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-06 09:40 +0000
                Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-07 02:47 +0000
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-07 13:58 +0200
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-07 20:40 +0000
                Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-07 23:39 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 23:00 -0400
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-08 04:36 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-08 02:30 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-08 09:19 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-08 23:53 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-08 14:23 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-09 02:28 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-09 18:24 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-10 02:40 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-10 19:17 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-11 00:56 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 06:24 +0000
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-08 18:08 +0000
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-08 22:42 +0200
                Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-09 00:45 +0000
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-09 01:44 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-09 03:08 -0400
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-09 11:07 +0200
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-10 01:03 -0400
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-10 10:43 +0200
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-10 10:52 +0200
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-11 00:33 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 06:03 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-11 02:42 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-11 17:26 +0000
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-11 11:31 +0200
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-12 02:37 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-12 18:13 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-13 03:46 -0400
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-09 18:31 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-10 03:16 -0400
                Re: The boring Linux habit that saves machines Nuno Silva <nunojsilva@invalid.invalid> - 2026-06-08 09:54 +0100
                Re: The boring Linux habit that saves machines Eric Pozharski <apple.universe@posteo.net> - 2026-06-08 21:46 +0000
                Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-09 04:50 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-09 03:16 -0400
                Re: The boring Linux habit that saves machines Richard Kettlewell <invalid@invalid.invalid> - 2026-06-09 08:49 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-09 01:48 -0400
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-09 11:11 +0200
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-10 01:32 -0400
                Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-10 05:38 +0000
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-10 10:49 +0200
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-10 11:08 +0000
                Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-11 00:31 +0000
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-11 03:31 +0000
                Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-11 04:36 +0000
                Re: The boring Linux habit that saves machines Nuno Silva <nunojsilva@invalid.invalid> - 2026-06-11 08:37 +0100
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-11 19:02 +0000
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-09 18:31 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-10 02:54 -0400
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-08 14:12 +0000
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-08 18:08 +0000
                Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-09 01:30 +0000
                Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-09 11:15 +0200
                Re: The boring Linux habit that saves machines Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2026-06-09 18:31 +0000
                Re: The boring Linux habit that saves machines Richard Kettlewell <invalid@invalid.invalid> - 2026-06-07 14:30 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 23:38 -0400
                Re: The boring Linux habit that saves machines The Natural Philosopher <tnp@invalid.invalid> - 2026-06-08 09:22 +0100
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-09 00:28 -0400
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 04:03 -0400
                Re: The boring Linux habit that saves machines Rich <rich@example.invalid> - 2026-06-06 18:42 +0000
              Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-06 08:53 +0000
                Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 01:53 -0400
          Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-06 08:52 +0000
            Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 01:41 -0400
      Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-06 06:41 +0000
        Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-06 03:07 -0400
          Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-06 13:28 +0200
          Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-06 19:16 +0000
            Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 05:18 -0400
              Re: The boring Linux habit that saves machines rbowman <bowman@montana.com> - 2026-06-07 18:59 +0000
        Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-06 09:40 +0000
          Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-07 02:51 +0000
          Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 04:56 -0400
  Re: The boring Linux habit that saves machines "Mr. Man-wai Chang" <toylet.toylet@gmail.com> - 2026-05-31 16:43 +0800
    Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-05-31 08:48 +0000
    Re: The boring Linux habit that saves machines Stéphane CARPENTIER <sc@fiat-linux.fr> - 2026-05-31 10:16 +0000
      Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-05-31 10:22 +0000
  Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-06 06:38 +0000
    Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-06 03:04 -0400
      Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-06 13:32 +0200
        Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-06 11:34 +0000
          Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-06 14:01 +0200
            Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-09 20:29 +0000
              Re: The boring Linux habit that saves machines "Carlos E.R." <robin_listas@es.invalid> - 2026-06-09 22:52 +0200
              Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-10 04:36 -0400
                Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-10 08:48 +0000
    Re: The boring Linux habit that saves machines Nuno Silva <nunojsilva@invalid.invalid> - 2026-06-06 09:17 +0100
      Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-06 09:40 +0000
        Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-07 02:57 +0000
          Re: The boring Linux habit that saves machines Nuno Silva <nunojsilva@invalid.invalid> - 2026-06-07 16:11 +0100
          Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-09 20:30 +0000
            Re: The boring Linux habit that saves machines Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-06-10 00:19 +0000
              Re: The boring Linux habit that saves machines TheLastSysop <thelastsysop@dev.null> - 2026-06-10 00:22 +0000
        Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 04:18 -0400
      Re: The boring Linux habit that saves machines c186282 <c186282@nnada.net> - 2026-06-07 01:33 -0400

csiph-web