Groups | Search | Server Info | Keyboard shortcuts | Login | Register


Groups > comp.misc > #26551

Re: Schneier, Data and Goliath: no hope for privacy

Path csiph.com!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!eternal-september.org!.POSTED!not-for-mail
From Salvador Mirzo <smirzo@example.com>
Newsgroups comp.misc
Subject Re: Schneier, Data and Goliath: no hope for privacy
Date Thu, 20 Feb 2025 22:21:52 -0300
Organization A noiseless patient Spider
Lines 123
Message-ID <87frk8drdb.fsf@example.com> (permalink)
References <67b21894$14$17$882e4bbb@reader.netnews.com> <RiKsP.173075$l629.51307@fx10.iad> <ae0c61cc-9814-04ab-75d4-f8d4cacdc9cd@example.net> <67b4fc88@news.ausics.net> <eli$2502181846@qaz.wtf> <67b659f8@news.ausics.net> <bf5148ef-af79-b5e5-0c95-3c3da83cbd67@example.net> <87mseggwo1.fsf@example.com> <a535e148-7649-7298-ff8d-7d3669852177@example.net>
MIME-Version 1.0
Content-Type text/plain
Injection-Date Fri, 21 Feb 2025 02:21:53 +0100 (CET)
Injection-Info dont-email.me; posting-host="0466f3d0c5e40b164175afc65c49539b"; logging-data="3244962"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19gAWTpt6goyZKaRwSzuOLUr3BJK9FJ4qs="
Cancel-Lock sha1:yNavmW54yWq/2ta9xc0Zh1kvqv0= sha1:sljMftX9MhVWVCGaKYZZZKkV+dU=
Xref csiph.com comp.misc:26551

Show key headers only | View raw


D <nospam@example.net> writes:

> On Thu, 20 Feb 2025, Salvador Mirzo wrote:
>
>> D <nospam@example.net> writes:
>>
>>> On Wed, 20 Feb 2025, Computer Nerd Kev wrote:
>>>
>>>> Eli the Bearded <*@eli.users.panix.com> wrote:
>>>>> In comp.misc, Computer Nerd Kev <not@telling.you.invalid> wrote:
>>>>>> Indeed, so long as you block all FB's scripts and images on
>>>>>> otherwise unrelated websites. Although I don't tend to make close
>>>>>> friends so I don't need to worry about controlling their FB usage.
>>>>>
>>>>> Doesn't stop people from posting about you on FB. (Or worse, posting
>>>>> photos of you on there.)
>>>>
>>>> What I don't tell, they can't post, and the same with what they
>>>> don't photograph. Although I guess that does leave a bit of an
>>>> information vacuum there which some nutcase could exploit to make
>>>> up missing personal info/photos on me if they so desired.
>>>>
>>>>>> Quite mysteriously, all sorts of otherwise respectable open-source
>>>>>> software developers are happy to use GitHub even though it's owned
>>>>>> by M$. So even having ditched their software long ago, M$ are now
>>>>>> very hard to avoid online if, ironically, you want to use, and
>>>>>> especially work on, open-source software. I find that truely
>>>>>> unfathomable, but others barely seem to see my problem with it.
>>>>>
>>>>> Many, I suspect, started using Github before Microsoft bought them in
>>>>> 2018.
>>>>
>>>> For software projects I use, many more seem to have moved to there
>>>> since 2018 than before. You'd think they like the M$ acquisition.
>>>> Occasionally I object and am ignored.
>>>
>>> You have been heard! I will not be hosting my stuff on github. On the
>>> other hand, I have nothing interesting to host, so perhaps a moot
>>> point. ;) My home made scripts and little utilities live on my laptop
>>> and sometimes on my server, and are shared upon request.
>>
>> I think most little scripts should be documented (with a manual) and put
>> online.  It will make it easier for others to use and it will certainly
>> encourage others to improve it and share the improvement.  So you could
>> see your little script turn into a nice polished program simply because
>> someone saw the idea and knew what to do to make it a lot better.  Could
>> be a good source of joy.
>
> You have a point! Sigh... so much one wants to do, so little time. =(
> Let met tell you about my little scripts. I have my old backup script
> utilizing rsync and replicating over tor, so it can go through
> firewalls, and uses a hidden service for a permanent global address,
> so it is not dependent on DNS or domain names. I once had delusions of
> grandeur and thought about rewriting a small part of tor to remove all
> hops since I do not need anonymity for that use case.
>
> I have my calendar sync scripts. They pull in ics from corporate
> calendar and converts it to remind format.
>
> Then I have a slightly rewritten leafnode that pulls down usenet
> articles and stores them in Maildir format so I can read and write
> offline news in my favourite email client alpine.
>
> I also have some custom rss2email scripts, and a script that allows me
> to take any url in an email, and fetch the page and email it to me.
>
> Now... do you seriously think anyone would ever be interested in that? ;)

LOL!  It turns out I'm *highly* interested in your leafnode.  Please,
can you put a package somewhere and let me look at it, try it out et
cetera?  I've been thinking about doing something like that myself.  I
can probably just live with your changes.  

I think I once packaged noffle (and not leafnode) for myself, but I
think I stopped using noffle for a news server, too.  I think I use
leafnode now, but I use it only as a local news server.  I'd like to
have an NNTP server that's simple to use, easily hosts local news server
and also easily peers with a USENET server for just a non-huge list of
groups.  I actually would like to write this server myself.

Let me share with you an upload script to https://0x0.st.  This is a no
nonsense temporary file uploader.  It works well as a paste bin, too.
The script below takes a series of files from the command line and
uploads each one to 0x0.st.  If you specify no file, then it will read
from the standard in.  The webserver at 0x0.st will print a URL for each
file uploaded, which is the address where you file is then stored.

--8<-------------------------------------------------------->8---
#!/bin/sh
args="$@"; test $# -lt 1 && args='-'

for f in $args; do
  curl --silent --show-error -X POST -F "file=@$f" https://0x0.st
done
--8<-------------------------------------------------------->8---

The next script uses upload to invoke scrot, which is a screen shot
taker.  It will take the URL printed by upload and store it in X's
primary selection area, which you can paste anywhere with your mouse or
with a keyboard shortcut.  (This is done by xsel.)

--8<-------------------------------------------------------->8---
#!/bin/sh
usage()
{
  printf 'usage: %s [options]\n' $(basename "$0")
}
test "$1" = '-h' && usage && exit 0
scrot --border -F- "$@" | upload | tr -d '\n' | xsel 
--8<-------------------------------------------------------->8---

So if you call this script as /screenshot/ then all you need to do is to
invoke it and wait a moment then press the mouse middle button to paste
the URL somewhere.  The bug in it is that you don't know when /upload/
finishes.  It would be nice if somehow we could get a sign somewhere
that the URL is already in X's primary selection.

For the upload script, I would also like to write a GNU EMACS procedure
that takes a region of text and feeds upload's standard input.  That's a
nice way to share a bit of code or output or something.  I'm sure these
things exist already somewhere.  But it's nice to do them and perhaps
it's easier to do then to actually find where they are and then learn to
use them.

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


Thread

Schneier, Data and Goliath: no hope for privacy Retrograde <fungus@amongus.com.invalid> - 2025-02-16 16:55 +0000
  Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-16 21:23 +0100
    Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-16 23:55 -0300
      Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-17 11:40 +0100
        Re: Schneier, Data and Goliath: no hope for privacy Dave Yeo <dave.r.yeo@gmail.com> - 2025-02-17 09:26 -0800
          Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-17 22:42 +0100
            Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-17 22:23 +0000
              Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-18 10:20 +0100
            Re: Schneier, Data and Goliath: no hope for privacy not@telling.you.invalid (Computer Nerd Kev) - 2025-02-19 07:32 +1000
              Re: Schneier, Data and Goliath: no hope for privacy Eli the Bearded <*@eli.users.panix.com> - 2025-02-18 23:47 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-19 09:42 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Ivan Shmakov <ivan@siamics.netREMOVE.invalid> - 2025-03-06 07:10 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-03-07 20:44 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-03-08 23:44 +0100
                Re: Schneier, Data and Goliath: no hope for privacy not@telling.you.invalid (Computer Nerd Kev) - 2025-02-20 08:23 +1000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 22:22 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 15:55 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 17:59 -0300
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 18:01 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 22:51 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 22:01 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 10:29 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-23 22:55 -0300
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-24 05:19 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-24 13:28 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 10:55 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-24 13:34 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 23:15 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-24 23:06 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-25 11:10 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-25 10:08 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-25 23:12 +0100
                OT: walking and exercising (Was: Re: Schneier, Data and Goliath: no hope for privacy) Salvador Mirzo <smirzo@example.com> - 2025-02-26 21:31 -0300
                Re: OT: walking and exercising (Was: Re: Schneier, Data and Goliath: no hope for privacy) D <nospam@example.net> - 2025-02-27 14:52 +0100
                Re: Schneier, Data and Goliath: no hope for privacy candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-02-27 21:40 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-03-01 11:48 +0100
                Re: Schneier, Data and Goliath: no hope for privacy candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-03-05 06:40 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-03-05 13:39 +0100
                Re: Schneier, Data and Goliath: no hope for privacy candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-03-05 20:00 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-03-05 22:12 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-24 17:54 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 23:41 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-24 23:19 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-25 11:16 +0100
                education Ivan Shmakov <ivan@siamics.netREMOVE.invalid> - 2025-03-06 07:55 +0000
                Re: education Salvador Mirzo <smirzo@example.com> - 2025-03-07 22:00 -0300
                Re: education Rich <rich@example.invalid> - 2025-03-08 03:47 +0000
                Re: education Salvador Mirzo <smirzo@example.com> - 2025-03-08 18:27 -0300
                Re: education Eli the Bearded <*@eli.users.panix.com> - 2025-03-09 02:08 +0000
                Re: education Salvador Mirzo <smirzo@example.com> - 2025-03-10 02:58 -0300
                Re: education Eli the Bearded <*@eli.users.panix.com> - 2025-03-10 18:38 +0000
                Re: education cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-10 19:13 +0000
                Re: education Ivan Shmakov <ivan@siamics.netREMOVE.invalid> - 2025-03-11 13:30 +0000
                Re: education Salvador Mirzo <smirzo@example.com> - 2025-03-14 11:17 -0300
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-25 19:12 -0500
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-26 02:08 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D Finnigan <dog_cow@macgui.com> - 2025-02-26 09:06 -0600
                Re: Schneier, Data and Goliath: no hope for privacy Mike Spencer <mds@bogus.nodomain.nowhere> - 2025-02-26 18:09 -0400
                the command line is language (Was: Re: Schneier, Data and Goliath: no hope for privacy) Salvador Mirzo <smirzo@example.com> - 2025-02-26 21:46 -0300
                Re: the command line is language (Was: Re: Schneier, Data and Goliath: no hope for privacy) Mike Spencer <mds@bogus.nodomain.nowhere> - 2025-02-27 03:31 -0400
                Re: the command line is language Salvador Mirzo <smirzo@example.com> - 2025-02-27 08:10 -0300
                Re: the command line is language D <nospam@example.net> - 2025-02-27 15:41 +0100
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-27 14:47 +0100
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-26 13:15 +0100
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-26 16:34 -0500
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-26 16:38 -0500
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-26 22:34 +0000
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-26 18:50 -0500
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-27 03:11 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-27 08:18 -0300
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-27 17:04 +0000
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-27 18:53 -0500
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-28 21:41 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-26 22:03 -0300
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-27 03:29 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-27 15:16 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-27 12:36 -0300
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-26 21:55 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-27 14:43 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-02-27 17:07 +0000
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-27 19:05 -0500
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-03-01 15:06 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-03-01 11:47 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-03-01 16:31 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-26 21:52 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-27 15:15 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Rich <rich@example.invalid> - 2025-03-01 16:51 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Mike Spencer <mds@bogus.nodomain.nowhere> - 2025-03-01 17:15 -0400
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-03-02 12:34 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Richmond <dnomhcir@gmx.com> - 2025-02-26 12:29 +0000
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-26 16:34 -0500
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-26 22:04 -0300
                Re: Schneier, Data and Goliath: no hope for privacy candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-03-05 20:00 +0000
                more on broken schools (Was: Re: Schneier, Data and Goliath: no hope for privacy) Salvador Mirzo <smirzo@example.com> - 2025-02-26 21:38 -0300
                Re: more on broken schools (Was: Re: Schneier, Data and Goliath: no hope for privacy) kludge@panix.com (Scott Dorsey) - 2025-02-26 19:47 -0500
                Re: more on broken schools Salvador Mirzo <smirzo@example.com> - 2025-02-27 08:55 -0300
                Re: more on broken schools kludge@panix.com (Scott Dorsey) - 2025-02-27 19:00 -0500
                OT: a personal note to Stefan Ram (Was: Re: more on broken schools) Salvador Mirzo <smirzo@example.com> - 2025-02-27 09:31 -0300
                Re: more on broken schools (Was: Re: Schneier, Data and Goliath: no hope for privacy) D <nospam@example.net> - 2025-02-27 15:03 +0100
                Re: more on broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-07 20:30 -0300
                Re: more on broken schools D <nospam@example.net> - 2025-03-08 23:43 +0100
                Re: more on broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-08 21:33 -0300
                Re: more on broken schools D <nospam@example.net> - 2025-03-09 13:30 +0100
                Re: more on broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-10 03:00 -0300
                Re: more on broken schools D <nospam@example.net> - 2025-03-10 10:50 +0100
                Re: more on broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-10 08:46 -0300
                Re: more on broken schools D <nospam@example.net> - 2025-03-11 23:05 +0100
                Re: more on broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-14 11:31 -0300
                Re: more on broken schools D <nospam@example.net> - 2025-03-14 23:46 +0100
                Re: more on broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-16 22:43 -0300
                Re: more on broken schools D <nospam@example.net> - 2025-03-17 23:44 +0100
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 22:50 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 22:21 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 17:06 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-23 23:28 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 11:12 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-24 14:08 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 23:32 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-24 22:22 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-25 11:34 +0100
                fdm, paredit and systemd (Was: Re: Schneier, Data and Goliath: no hope for privacy) Salvador Mirzo <smirzo@example.com> - 2025-02-25 13:18 -0300
                Re: fdm, paredit and systemd (Was: Re: Schneier, Data and Goliath: no hope for privacy) D <nospam@example.net> - 2025-02-26 13:53 +0100
                Re: fdm, paredit and systemd Salvador Mirzo <smirzo@example.com> - 2025-02-27 06:23 -0300
                Re: fdm, paredit and systemd D <nospam@example.net> - 2025-02-27 15:31 +0100
                Re: fdm, paredit and systemd Salvador Mirzo <smirzo@example.com> - 2025-03-07 21:10 -0300
                Re: fdm, paredit and systemd D <nospam@example.net> - 2025-03-09 00:09 +0100
                Re: fdm, paredit and systemd Salvador Mirzo <smirzo@example.com> - 2025-03-08 21:41 -0300
                Re: fdm, paredit and systemd D <nospam@example.net> - 2025-03-09 13:32 +0100
                UNIX systems (Was: Re: fdm, paredit and systemd) Salvador Mirzo <smirzo@example.com> - 2025-03-10 03:10 -0300
                Re: UNIX systems (Was: Re: fdm, paredit and systemd) D <nospam@example.net> - 2025-03-10 10:54 +0100
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-10 09:08 -0300
                Re: UNIX systems D <nospam@example.net> - 2025-03-11 23:09 +0100
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-13 18:17 -0300
                Re: UNIX systems D <nospam@example.net> - 2025-03-16 00:03 +0100
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-16 22:41 -0300
                Re: UNIX systems D <nospam@example.net> - 2025-03-18 10:50 +0100
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-21 16:26 -0300
                Re: UNIX systems Matto Fransen <mattof@sdf.org> - 2025-03-21 19:53 +0000
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-24 00:11 -0300
                Re: UNIX systems D <nospam@example.net> - 2025-03-21 23:37 +0100
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-24 00:34 -0300
                Re: UNIX systems D <nospam@example.net> - 2025-03-25 21:49 +0100
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-22 10:11 -0300
                Re: UNIX systems kludge@panix.com (Scott Dorsey) - 2025-03-25 17:40 -0400
                Re: UNIX systems D <nospam@example.net> - 2025-03-25 23:04 +0100
                Re: UNIX systems onion@anon.invalid (Mr Ön!on) - 2025-03-10 15:06 +0000
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-11 11:58 -0300
                Re: UNIX systems yeti <yeti@tilde.institute> - 2025-03-11 15:49 +0042
                Re: UNIX systems cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-11 15:25 +0000
                Re: UNIX systems onion@anon.invalid (Mr Ön!on) - 2025-03-11 16:24 +0000
                Re: UNIX systems cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-11 17:30 +0000
                Re: UNIX systems candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-03-12 22:30 +0000
                Re: UNIX systems yeti <yeti@tilde.institute> - 2025-03-12 23:23 +0042
                Re: UNIX systems candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-03-13 20:40 +0000
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-13 18:04 -0300
                Re: UNIX systems cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-13 21:26 +0000
                Re: UNIX systems Salvador Mirzo <smirzo@example.com> - 2025-03-14 12:23 -0300
                Re: UNIX systems cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-13 01:24 +0000
                Re: UNIX systems Mike Spencer <mds@bogus.nodomain.nowhere> - 2025-03-12 01:38 -0300
                Re: UNIX systems snipeco.2@gmail.com (Sn!pe) - 2025-03-12 14:03 +0000
                Re: UNIX systems D <nospam@example.net> - 2025-03-12 22:19 +0100
                Re: UNIX systems kludge@panix.com (Scott Dorsey) - 2025-03-11 19:09 -0400
                Re: Schneier, Data and Goliath: no hope for privacy Eli the Bearded <*@eli.users.panix.com> - 2025-03-04 02:44 +0000
                Re: Schneier, Data and Goliath: no hope for privacy scott@alfter.diespammersdie.us (Scott Alfter) - 2025-03-04 17:50 +0000
              Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-19 09:40 +0100
                Re: Schneier, Data and Goliath: no hope for privacy not@telling.you.invalid (Computer Nerd Kev) - 2025-02-20 08:29 +1000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 15:56 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 21:45 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 16:01 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 18:22 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 23:02 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 22:44 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 10:43 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-23 23:04 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 11:01 +0100
                broken schools (Was: Re: Schneier, Data and Goliath: no hope for privacy) Salvador Mirzo <smirzo@example.com> - 2025-02-24 13:46 -0300
                Re: broken schools (Was: Re: Schneier, Data and Goliath: no hope for privacy) D <nospam@example.net> - 2025-02-24 23:18 +0100
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-02-24 22:34 -0300
                Re: broken schools D <nospam@example.net> - 2025-02-25 11:38 +0100
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-02-25 15:45 -0300
                Re: broken schools D <nospam@example.net> - 2025-02-26 14:05 +0100
                Re: broken schools Rich <rich@example.invalid> - 2025-02-26 13:15 +0000
                Re: broken schools D <nospam@example.net> - 2025-02-26 23:10 +0100
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-02-27 06:49 -0300
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-02-27 07:41 -0300
                Re: broken schools D <nospam@example.net> - 2025-02-27 19:52 +0100
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-07 21:41 -0300
                Re: broken schools yeti <yeti@tilde.institute> - 2025-03-08 02:59 +0042
                Re: broken schools D <nospam@example.net> - 2025-03-09 00:14 +0100
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-08 22:26 -0300
                Re: broken schools D <nospam@example.net> - 2025-03-09 22:52 +0100
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-10 08:39 -0300
                Re: broken schools D <nospam@example.net> - 2025-03-11 22:59 +0100
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-14 12:10 -0300
                Re: broken schools D <nospam@example.net> - 2025-03-15 23:58 +0100
                Re: broken schools Salvador Mirzo <smirzo@example.com> - 2025-03-17 00:02 -0300
                Re: broken schools Rich <rich@example.invalid> - 2025-03-18 03:00 +0000
                Re: broken schools Eva Lu <evalu@tor.soy> - 2025-03-18 21:20 -0300
                Re: broken schools D <nospam@example.net> - 2025-03-18 11:17 +0100
                OT: totally off-topic (Was: Re: broken schools) Salvador Mirzo <smirzo@example.com> - 2025-03-19 13:51 -0300
                Re: OT: totally off-topic (Was: Re: broken schools) D <nospam@example.net> - 2025-03-19 23:20 +0100
                Re: OT: totally off-topic Salvador Mirzo <smirzo@example.com> - 2025-03-21 11:52 -0300
                Re: OT: totally off-topic D <nospam@example.net> - 2025-03-23 00:31 +0100
                lifestyles Ivan Shmakov <ivan@siamics.netREMOVE.invalid> - 2025-03-11 20:20 +0000
              Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 21:40 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 15:57 +0100
        Re: Schneier, Data and Goliath: no hope for privacy Adrian <bulleid@ku.gro.lioff> - 2025-02-17 18:30 +0000
          Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-17 22:44 +0100
            Re: Schneier, Data and Goliath: no hope for privacy Adrian <bulleid@ku.gro.lioff> - 2025-02-18 00:08 +0000
              Re: Schneier, Data and Goliath: no hope for privacy snipeco.2@gmail.com (Sn!pe) - 2025-02-18 00:30 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-18 10:23 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 21:52 -0300
                Re: Schneier, Data and Goliath: no hope for privacy snipeco.2@gmail.com (Sn!pe) - 2025-02-20 01:09 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 22:27 -0300
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-20 21:51 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 23:22 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 10:23 +0100
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 16:07 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 18:35 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 23:31 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 23:06 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 11:01 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Adrian <bulleid@ku.gro.lioff> - 2025-02-18 13:48 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 21:56 -0300
              Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-18 10:22 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Adrian <bulleid@ku.gro.lioff> - 2025-02-18 14:05 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 22:03 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 16:14 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 18:47 -0300
                Re: Schneier, Data and Goliath: no hope for privacy snipeco.2@gmail.com (Sn!pe) - 2025-02-20 22:12 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 23:15 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 11:04 +0100
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 10:21 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-23 22:46 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 10:43 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Anton Shepelev <anton.txt@gmail.moc> - 2025-02-25 14:20 +0300
                small communities, nntp server (Was: Re: Schneier, Data and Goliath: no hope for privacy) Salvador Mirzo <smirzo@example.com> - 2025-02-25 15:20 -0300
                Re: small communities, nntp server (Was: Re: Schneier, Data and Goliath: no hope for privacy) D <nospam@example.net> - 2025-02-26 13:57 +0100
                Re: small communities, nntp server Salvador Mirzo <smirzo@example.com> - 2025-02-26 21:20 -0300
                Re: small communities, nntp server D <nospam@example.net> - 2025-02-27 14:49 +0100
                Re: small communities, nntp server yeti <yeti@tilde.institute> - 2025-02-26 13:50 +0042
                Re: small communities, nntp server D <nospam@example.net> - 2025-02-26 23:08 +0100
                Re: small communities, nntp server D <nospam@example.net> - 2025-02-26 23:08 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 21:59 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 16:13 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 18:41 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 23:33 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 23:12 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 11:03 +0100
              Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 21:51 -0300
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-20 21:49 +0000
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 23:21 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 10:22 +0100
                Re: Schneier, Data and Goliath: no hope for privacy kludge@panix.com (Scott Dorsey) - 2025-02-22 17:09 +0000
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-23 00:23 +0100
            Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-19 21:49 -0300
              Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 16:05 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 18:24 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-20 23:05 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-20 22:56 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-21 10:51 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-23 23:21 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 11:10 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-24 14:04 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-24 23:28 +0100
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-24 21:58 -0300
                Re: Schneier, Data and Goliath: no hope for privacy D <nospam@example.net> - 2025-02-25 11:26 +0100
                OT: personal stories (Was: Re: Schneier, Data and Goliath: no hope for privacy) Salvador Mirzo <smirzo@example.com> - 2025-02-25 11:58 -0300
                Re: OT: personal stories (Was: Re: Schneier, Data and Goliath: no hope for privacy) D <nospam@example.net> - 2025-02-26 13:21 +0100
                Re: OT: personal stories Salvador Mirzo <smirzo@example.com> - 2025-02-27 06:04 -0300
                Re: OT: personal stories D <nospam@example.net> - 2025-02-27 15:21 +0100
                Re: OT: personal stories Salvador Mirzo <smirzo@example.com> - 2025-03-07 20:49 -0300
                Re: OT: personal stories yeti <yeti@tilde.institute> - 2025-03-08 00:43 +0042
                Re: OT: personal stories D <nospam@example.net> - 2025-03-08 23:46 +0100
                Re: OT: personal stories D <nospam@example.net> - 2025-03-08 23:45 +0100
                Re: OT: personal stories Salvador Mirzo <smirzo@example.com> - 2025-03-08 21:37 -0300
                Re: OT: personal stories D <nospam@example.net> - 2025-03-09 13:30 +0100
                Re: Schneier, Data and Goliath: no hope for privacy D Finnigan <dog_cow@macgui.com> - 2025-02-25 13:17 -0600
                Re: Schneier, Data and Goliath: no hope for privacy Salvador Mirzo <smirzo@example.com> - 2025-02-26 21:21 -0300

csiph-web