Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread Albretch Mueller
> Archive.org has a well-documented API at > https://archive.org/developers/. There's even a command-line tool > (assuming one doesn't want to use, say, the python library). I had given a somewhat thorough reading to their API some time ago, but didn’t find anything that interesting and I was

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread Greg Wooledge
On Sat, Mar 23, 2024 at 02:05:06PM -0500, Albretch Mueller wrote: > Actually, in order to deX-Y it in case anyone can offer any help, it > is more like "I want an index of all the books which have ever been > written/published" in order to read all of them ;-) First of all, you will not achieve

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread Albretch Mueller
Greg Wooledge via lists.debian.org >Furthermore, whatever method you are using to *create* this HAR file >is questionable, since apparently you aren't even getting a properly >formatted file in the end. >So, putting these together, it looks like you are taking a file that >was intended to

Re: How does the 64bits time_t transition work?

2024-03-23 Thread Jeffrey Walton
On Wed, Mar 20, 2024 at 4:23 AM Brad Rogers wrote: > > On Wed, 20 Mar 2024 08:22:16 +0100 > Detlef Vollmann wrote: > > >Is there a description anywhere how the 64bit time transition works? > > I'm far from an expert, but from what I've read, this transition is > *huge*. Possibly the largest

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread Darac Marjal
On 23/03/2024 16:34, Greg Wooledge wrote: On Sat, Mar 23, 2024 at 11:55:04AM -0400, Greg Wooledge wrote: On Sat, Mar 23, 2024 at 09:54:05AM -0500, Albretch Mueller wrote: 1) That HAR file is not properly formatted. Instead of "attribute":value pairs in the standard way, they have used front

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread Greg Wooledge
On Sat, Mar 23, 2024 at 11:55:04AM -0400, Greg Wooledge wrote: > On Sat, Mar 23, 2024 at 09:54:05AM -0500, Albretch Mueller wrote: > > 1) That HAR file is not properly formatted. Instead of > > "attribute":value pairs in the standard way, they have used front > > slash + quote pairs (instead of

Re: Ré-installation Debian sur disque chiffré

2024-03-23 Thread Michel Verdier
Le 23 mars 2024 David BERCOT a écrit : > Si je lance l'installateur Debian, au moment du partitionnement des disques, > je n'arrive pas à trouver une option qui me dise (en résumé) : "reprise d'un > disque préalablement chiffré" [au moins la partition /home] -> et saisie de la > passphrase ad

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread Greg Wooledge
On Sat, Mar 23, 2024 at 09:54:05AM -0500, Albretch Mueller wrote: > a) using a chromium-derived browser, which can be used to dump the > HAR file log of the network back and forth, go, e. g.: > https://en.wikipedia.org/wiki/Anaxagoras > b) click on the link that says: "Works by or about

alsa en veille ?

2024-03-23 Thread le père Léon
Bonjour, Sous debian 10, j'ai un problème avec alsa, qui semble par moment indisponible. Je suspecte qu'une ressource se mette en veille, mais je ne sais pas quoi explorer. Voici ma situation.. J'ai un crontab utilisateur qui lance la lecture d'un flux audio, 3 fois par jour (8h/12h/17h)

Ré-installation Debian sur disque chiffré

2024-03-23 Thread David BERCOT
Bonjour, C'est un problème récurrent que j'ai et pour lequel, jusqu'à présent, je n'ai pas trouvé de réponse. Je serai très surpris d'être le seul dans ce cas mais bon, je me trompe peut-être... Bref, j'ai un système Debian installé (en SID mais peu importe) et, pour une raison quelconque,

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread Albretch Mueller
>On Sat, Mar 23, 2024 at 1:44 AM wrote: >> On Sat, Mar 23, 2024 at 12:53:24AM -0500, Albretch Mueller wrote: >> out of a HAR file containing lots of obfuscating js cr@p and all kinds of >> nonsense I was able to extract line looking like: >It's not "js cr@p", It is called JSON. And there's a

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread David Christensen
On 3/22/24 22:53, Albretch Mueller wrote: out of a HAR file containing lots of obfuscating js cr@p and all kinds of nonsense I was able to extract line looking like: var00='{\"index\":\"prod-h-006\",\"fields\":{\"identifier\":\"bub_gb_O2EAMAAJ\",\"title\":\"Die Wissenschaft vom subjectiven

Re: Root password strength

2024-03-23 Thread Michael Kjörling
On 22 Mar 2024 20:01 -0400, from ler...@gmail.com (Lee): > The IPv4 address space is only 32 bits long. Scanning 2^32 = about > 4,000,000,000 addresses for an open port is easily doable. > The IPv6 address space is a bit harder... Let's just say that 7/8th > of the IPv6 address space is

Re: Root password strength

2024-03-23 Thread Michael Kjörling
On 22 Mar 2024 17:26 +0500, from avbe...@gmail.com (Alexander V. Makartsev): >     This is because of how IPv4 network address translation (NAT) works, to > allow multiple LAN hosts to connect to Internet with single IP address > assigned by Internet Service Provider (ISP). A NAT router might

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread mgr...@grant.org
Here's a hint at a start of what you need to do, it should be pretty easy to extend this, if it's unclear, let me know: for starters, run your "gunk" into jq like this: $ echo {\"index\":\"prod-h-006\",\"fields\":{\"identifier\":\"bub_gb_O2EAMAAJ\",\"title\":\"Die Wissenschaft vom

Re: trying to parse lines from an awkwardly formatted HAR file ...

2024-03-23 Thread tomas
On Sat, Mar 23, 2024 at 12:53:24AM -0500, Albretch Mueller wrote: > out of a HAR file containing lots of obfuscating js cr@p and all kinds of > nonsense I was able to extract line looking like: It's not "js cr@p", It is called JSON. And there's a spec for it. [...] > I have tried substring