Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.os.linux.advocacy > #355230
| From | owl <owl@rooftop.invalid> |
|---|---|
| Newsgroups | comp.os.linux.advocacy |
| Subject | Re: World heading for disaster moving from pro-OS to hobbyware... |
| Date | 2016-05-14 03:36 +0000 |
| Organization | O.W.L. |
| Message-ID | <ghjdue792g.kaid@rooftop.invalid> (permalink) |
| References | (5 earlier) <Nu6dnZIz7_7Um6zKnZ2dnUU7-S-dnZ2d@giganews.com> <sandman-4d2cfc52ef6e7a13789b42340e2c6c61@individual.net> <kcGdnTmK7offy6vKnZ2dnUU7-eXNnZ2d@giganews.com> <ghjcu03af.kg9@rooftop.invalid> <JeidnTS5pN_nBavKnZ2dnUU7-QOdnZ2d@giganews.com> |
Marek Novotny <marek.novotny@marspolar.com> wrote:
> On 2016-05-14, owl <owl@rooftop.invalid> wrote:
>> Marek Novotny <marek.novotny@marspolar.com> wrote:
>>> On 2016-05-13, Sandman <mr@sandman.net> wrote:
>>>> In article <Nu6dnZIz7_7Um6zKnZ2dnUU7-S-dnZ2d@giganews.com>, Marek Novotny
>>>> wrote:
>>>>
>>>>> > Snit:
>>>>> > He has gone so far as to say he has written his own Usenet client
>>>>> > and scripts
>>>>>
>>>>> I'd be interested in the scripts...
>>>>
>>>> What sort of scripts, specifically?
>>>
>>> Oh it was speculation. See above. If you had scripts that were being
>>> used to interact with usenet I would of course be interested in seeing
>>> the code.
>>>
>>
>> You can talk to the server over telnet and get a feel for writing
>> whatever thingie you want to build. See RFC 3977 and friends.
>>
>> This alerts you of new message in a group (run as ./poll.py <newsgroup>):
>>
>> ++++++++++++++++++++++++++++++++++++++++++++++
>> anon@lowtide:~$ cat poll.py
>> #!/usr/bin/python
>>
>> import socket
>> import time
>> import sys
>> import datetime
>> import Tkinter
>> import tkMessageBox
>>
>> server='localhost'
>> port='119'
>> username='gohde'
>> password='PUTZ'
>> if len(sys.argv) < 2 :
>> print "feed me a group"
>> sys.exit()
>> if len(sys.argv) > 2 :
>> print "feed me a group and nothing else!"
>> sys.exit()
>> group=sys.argv[1]
>> s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
>> s.connect(("localhost",int(port)))
>> print s.recv(256)
>> s.send("authinfo user " + username + "\n")
>> print s.recv(256)
>> s.send("authinfo pass " + password + "\n")
>> print s.recv(256)
>> saved_y="0"
>> while (1):
>> print "loop"
>> s.send("group " + group + "\n")
>> x=s.recv(8192)
>> y=x.split(" ")[3]
>> if int(y)<=int(saved_y):
>> time.sleep(3)
>> continue
>> else:
>> z="xpat from " + y + "- *\n"
>> s.send(z)
>> x=s.recv(256)
>> x=s.recv(256)
>> window=Tkinter.Tk()
>> window.wm_withdraw()
>> message="new post:\n " + x
>> tkMessageBox.showinfo(title="wake up, tard!", message=message)
>> window.destroy()
>> saved_y=y
>> time.sleep(3)
>> s.close()
>>
>> anon@lowtide:~$
>> ++++++++++++++++++++++++++++++++++++++++++++++
>
> Thanks. I like your window title. :)
>
I was thinking "where is John Gohde? Is he asleep again?" when I
wrote it. Looks like I left localhost hard-coded in the connect.
You'll want to change that to "server" (without quotes).
Back to comp.os.linux.advocacy | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-03 12:58 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Fabian Russell <fb@zen.info> - 2016-05-04 08:35 +0000
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-08 11:07 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-08 08:11 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Steve Carroll <fretwizzer@gmail.com> - 2016-05-08 08:39 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-08 09:05 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Snit <usenet@gallopinginsanity.com> - 2016-05-08 09:13 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Steve Carroll <fretwizzer@gmail.com> - 2016-05-08 10:24 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-08 10:38 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Steve Carroll <fretwizzer@gmail.com> - 2016-05-08 11:00 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-08 17:36 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Steve Carroll <fretwizzer@gmail.com> - 2016-05-08 14:41 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% tmelmosfire <tmelmosfire@gmail.com> - 2016-05-08 14:43 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-08 17:45 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Steve Carroll <fretwizzer@gmail.com> - 2016-05-08 15:13 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Snit <usenet@gallopinginsanity.com> - 2016-05-08 09:16 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% GreyCloud <mist@cumulus.com> - 2016-05-08 12:18 -0600
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-08 11:34 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% JEDIDIAH <jedi@nomad.mishnet> - 2016-05-08 14:32 -0500
World heading for disaster moving from pro-OS to hobbyware... Takuya Saitoh <taka0038@gmail.com> - 2016-05-08 17:14 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Melzzzzz <mel@zzzzz.com> - 2016-05-09 03:55 +0200
Re: World heading for disaster moving from pro-OS to hobbyware... Takuya Saitoh <taka0038@gmail.com> - 2016-05-08 19:02 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... JEDIDIAH <jedi@nomad.mishnet> - 2016-05-09 09:33 -0500
Re: World heading for disaster moving from pro-OS to hobbyware... chrisv <chrisv@nospam.invalid> - 2016-05-09 10:27 -0500
Re: World heading for disaster moving from pro-OS to hobbyware... William Poaster <wp@dev.null> - 2016-05-09 16:44 +0100
Re: World heading for disaster moving from pro-OS to hobbyware... DFS <nospam@dfs.com> - 2016-05-09 13:13 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-09 10:22 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-05-09 15:28 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 12:38 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-09 12:59 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 13:12 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Tattoo Vampire <sitting@this.computer> - 2016-05-09 16:46 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... tmelmosfire <tmelmosfire@gmail.com> - 2016-05-09 14:03 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-09 14:18 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Tattoo Vampire <sitting@this.computer> - 2016-05-09 17:23 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-09 14:25 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 14:46 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-09 14:51 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 17:36 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... tmelmosfire <tmelmosfire@gmail.com> - 2016-05-13 14:31 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-13 15:33 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Sandman <mr@sandman.net> - 2016-05-13 23:23 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... DFS <nospam@dfs.com> - 2016-05-13 20:51 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-14 03:52 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Sandman <mr@sandman.net> - 2016-05-14 07:53 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... -hh <recscuba_google@huntzinger.com> - 2016-05-13 17:56 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Sandman <mr@sandman.net> - 2016-05-14 07:56 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-13 18:12 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Sandman <mr@sandman.net> - 2016-05-14 07:57 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... DFS <nospam@dfs.com> - 2016-05-13 19:59 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-13 18:15 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-14 01:44 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-14 02:23 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Melzzzzz <mel@zzzzz.com> - 2016-05-14 04:26 +0200
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-14 03:33 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... DFS <nospam@dfs.com> - 2016-05-13 23:21 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-14 03:37 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-14 03:10 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-13 20:16 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-14 03:36 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Tattoo Vampire <sitting@this.computer> - 2016-05-14 07:59 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... Peter Köhlmann <peter-koehlmann@t-online.de> - 2016-05-10 00:21 +0200
Re: World heading for disaster moving from pro-OS to hobbyware... meat <meat.stretcher@linuxmail.org> - 2016-05-09 21:46 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Peter Köhlmann <peter-koehlmann@t-online.de> - 2016-05-10 00:28 +0200
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-09 22:55 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Peter Köhlmann <peter-koehlmann@t-online.de> - 2016-05-10 01:01 +0200
Re: World heading for disaster moving from pro-OS to hobbyware... owl <owl@rooftop.invalid> - 2016-05-10 00:10 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... vallor <vallor@cultnix.org> - 2016-05-10 15:10 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 17:41 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 17:41 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 17:40 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Peter Köhlmann <peter-koehlmann@t-online.de> - 2016-05-10 14:19 +0200
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-10 08:50 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Steve Carroll <fretwizzer@gmail.com> - 2016-05-10 08:59 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... tmelmosfire <tmelmosfire@gmail.com> - 2016-05-10 18:02 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Tattoo Vampire <sitting@this.computer> - 2016-05-09 17:59 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-09 15:13 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... ronb <ronb02NOSPAM@gmail.com> - 2016-05-09 22:14 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 14:32 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... ronb <ronb02NOSPAM@gmail.com> - 2016-05-09 22:13 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Marek Novotny <marek.novotny@marspolar.com> - 2016-05-09 15:29 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... ronb <ronb02NOSPAM@gmail.com> - 2016-05-10 13:54 +0000
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-10 08:47 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 17:38 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Steve Carroll <fretwizzer@gmail.com> - 2016-05-09 19:04 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... tmelmosfire <tmelmosfire@gmail.com> - 2016-05-09 19:36 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-09 21:25 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... tmelmosfire <tmelmosfire@gmail.com> - 2016-05-10 18:02 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... chrisv <chrisv@nospam.invalid> - 2016-05-10 06:51 -0500
Re: World heading for disaster moving from pro-OS to hobbyware... Tattoo Vampire <sitting@this.computer> - 2016-05-10 08:11 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... chrisv <chrisv@nospam.invalid> - 2016-05-10 07:33 -0500
Re: World heading for disaster moving from pro-OS to hobbyware... Snit <usenet@gallopinginsanity.com> - 2016-05-10 08:50 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... DFS <nospam@dfs.com> - 2016-05-09 20:54 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... William Poaster <wp@dev.null> - 2016-05-09 23:11 +0100
Re: World heading for disaster moving from pro-OS to hobbyware... DFS <nospam@dfs.com> - 2016-05-09 20:58 -0400
Re: World heading for disaster moving from pro-OS to hobbyware... sbd <sbd.pambu@safe-mail.net> - 2016-05-12 08:52 -0300
Re: World heading for disaster moving from pro-OS to hobbyware... Takuya Saitoh <taka0038@gmail.com> - 2016-05-12 06:00 -0700
Re: World heading for disaster moving from pro-OS to hobbyware... GreyCloud <mist@cumulus.com> - 2016-05-09 12:04 -0600
Re: World heading for disaster moving from pro-OS to hobbyware... JEDIDIAH <jedi@nomad.mishnet> - 2016-05-11 14:22 -0500
Re: World heading for disaster moving from pro-OS to hobbyware... GreyCloud <mist@cumulus.com> - 2016-05-12 19:37 -0600
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% chrisv <chrisv@nospam.invalid> - 2016-05-09 09:13 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% GreyCloud <mist@cumulus.com> - 2016-05-09 12:07 -0600
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% JEDIDIAH <jedi@nomad.mishnet> - 2016-05-11 14:16 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% GreyCloud <mist@cumulus.com> - 2016-05-12 19:41 -0600
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-12 13:30 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-12 10:34 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-12 13:51 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-12 11:49 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-12 23:25 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% sbd <sbd.pambu@safe-mail.net> - 2016-05-12 21:56 -0300
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-12 21:52 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% sbd <sbd.pambu@safe-mail.net> - 2016-05-12 23:06 -0300
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-13 09:46 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% sbd <sbd.pambu@safe-mail.net> - 2016-05-14 08:50 -0300
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% chrisv <chrisv@nospam.invalid> - 2016-05-12 12:59 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-12 11:52 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% ronb <ronb02NOSPAM@gmail.com> - 2016-05-12 19:16 +0000
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% JEDIDIAH <jedi@nomad.mishnet> - 2016-05-12 18:01 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% ronb <ronb02NOSPAM@gmail.com> - 2016-05-13 00:25 +0000
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-05-12 20:41 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% GreyCloud <mist@cumulus.com> - 2016-05-12 19:47 -0600
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% JEDIDIAH <jedi@nomad.mishnet> - 2016-05-14 16:54 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% GreyCloud <mist@cumulus.com> - 2016-05-16 19:25 -0600
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% JEDIDIAH <jedi@nomad.mishnet> - 2016-06-01 21:58 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Dan S <dans1988decade@tenny.org> - 2016-06-02 03:12 +0000
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Snit <usenet@gallopinginsanity.com> - 2016-06-01 21:27 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% ronb <ronb02NOSPAM@gmail.com> - 2016-06-02 17:56 +0000
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% chrisv <chrisv@nospam.invalid> - 2016-05-13 06:52 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% ronb <ronb02NOSPAM@gmail.com> - 2016-05-12 19:15 +0000
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-12 12:52 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% GreyCloud <mist@cumulus.com> - 2016-05-12 19:44 -0600
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% JEDIDIAH <jedi@nomad.mishnet> - 2016-05-14 16:59 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% chrisv <chrisv@nospam.invalid> - 2016-05-16 07:28 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-18 09:08 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% GreyCloud <mist@cumulus.com> - 2016-05-16 19:29 -0600
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% JEDIDIAH <jedi@nomad.mishnet> - 2016-06-01 21:54 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% sbd <sbd.pambu@safe-mail.net> - 2016-05-12 22:02 -0300
DFS craphead just won't shut up Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-05-13 07:45 -0400
Re: DFS craphead just won't shut up chrisv <chrisv@nospam.invalid> - 2016-05-13 07:23 -0500
Re: DFS craphead just won't shut up William Poaster <wp@dev.null> - 2016-05-13 13:27 +0100
Re: DFS craphead just won't shut up DFS <nospam@dfs.com> - 2016-05-13 10:02 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-13 10:03 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-13 09:57 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% sbd <sbd.pambu@safe-mail.net> - 2016-05-14 08:58 -0300
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-14 22:37 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Takuya Saitoh <taka0038@gmail.com> - 2016-05-08 09:53 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Melzzzzz <mel@zzzzz.com> - 2016-05-08 19:03 +0200
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Melzzzzz <mel@zzzzz.com> - 2016-05-08 19:05 +0200
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Marek Novotny <marek.novotny@marspolar.com> - 2016-05-08 10:24 -0700
CPUs should withstand 80oC Takuya Saitoh <taka0038@gmail.com> - 2016-05-12 03:45 -0700
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% William Poaster <wp@dev.null> - 2016-05-08 22:40 +0100
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% ronb <ronb02NOSPAM@gmail.com> - 2016-05-08 22:05 +0000
Re: DumbFor$ure William Poaster <wp@dev.null> - 2016-05-08 23:12 +0100
Re: DumbFor$ure chrisv <chrisv@nospam.invalid> - 2016-05-09 07:36 -0500
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% DFS <nospam@dfs.com> - 2016-05-09 08:47 -0400
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Snit <usenet@gallopinginsanity.com> - 2016-05-09 09:44 -0700
Snit digest 230 / 2016-05-09 Sandman <mr@sandman.net> - 2016-05-09 17:22 +0000
Re: LibreOffice+gtk crapware causes Linux victims laptops to overheat and CPU usage to blast up to 60% Melzzzzz <mel@zzzzz.com> - 2016-05-08 19:06 +0200
csiph-web