00:00:49Xesxen quits [Max SendQ exceeded]
00:00:54Xesxen (Xesxen) joins
00:06:14Ruthalas59 (Ruthalas) joins
00:28:52DopefishJustin quits [Read error: Connection reset by peer]
01:11:50kiryu joins
01:11:50kiryu quits [Changing host]
01:11:50kiryu (kiryu) joins
01:18:15superkuh joins
01:32:47Arcorann quits [Remote host closed the connection]
01:38:52Arcorann (Arcorann) joins
01:43:22sloop_ quits [Quit: ZNC 1.8.2 - https://znc.in]
01:46:06sloop joins
01:46:47BearFortress quits [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
01:48:17sloop quits [Client Quit]
01:54:54qwertyasdfuiopghjkl (qwertyasdfuiopghjkl) joins
02:03:30DopefishJustin joins
02:18:52RealPerson joins
02:27:27BearFortress joins
02:27:28BearFortress quits [Max SendQ exceeded]
02:27:37BearFortress joins
02:50:16RealPerson leaves
03:39:33Carnildo quits [Remote host closed the connection]
03:54:21<Pedrosso>What's the best way to compress a large list of URLs using zstd? Like for highest compression ratio with a reasonable amount of RAM (~16 GB)?
04:15:39ScenarioPlanet (ScenarioPlanet) joins
04:35:03rasterofmandomness joins
04:35:55<rasterofmandomness>hello
04:38:28<rasterofmandomness>i need help with something
04:41:05ScenarioPlanet quits [Client Quit]
04:43:55<fireonlive>don’t ask to ask, just ask
04:46:03<rasterofmandomness>does anyone have "eene edited parody - the ed touchables" saved because its on the internet archive but with a notice saying that it "has been archived but cannot be played"
04:46:33<pabs>got a link?
04:48:12<rasterofmandomness>https://web.archive.org/web/20190215031325/https://www.youtube.com/watch?v=zOdesdNis3w
04:48:21rasterofmandomness quits [Remote host closed the connection]
04:48:32<fireonlive>… 🪦
04:49:17<pabs>bah, I was just looking on https://findyoutubevideo.thetechrobo.ca/
04:50:23rasterofmandomness joins
04:51:00rasterofmandomness quits [Remote host closed the connection]
04:54:39<pabs>ugh subdomain.center is quite broken, API host no longer resolves
05:25:27<fireonlive>maybe we need an automated warning to webirc users that backgrounding the tab might disconnect them or something
05:56:37Carnildo joins
06:06:53Island quits [Read error: Connection reset by peer]
06:16:35jacksonchen666 quits [Remote host closed the connection]
06:17:21jacksonchen666 (jacksonchen666) joins
06:23:20tr92g20nv10s joins
06:26:00tr92g20nv10s leaves
06:28:15<Pedrosso>So, mineteria is a dead minecraft server with a unique enough name that it's basically the only thing that shows up on searches. I'm curious if there's any tool that could collect all / many of the URLs from search engine searches & YouTube searches?
06:31:39<pabs>the main problem with that is that search engines limit the amount of results returned. Google is like 300, Bing 2000
06:31:58<pabs>but anyway, JAA has bing-scrape, and I have a couple of hacky JS snippets you can run from browser consoles
06:32:18<pabs>bing-scrape is in https://gitea.arpa.li/JustAnotherArchivist/little-things
06:34:42<pabs>https://transfer.archivete.am/6WZGP/bing-domain-scraper.js
06:34:42<eggdrop>inline (for browser viewing): https://transfer.archivete.am/inline/6WZGP/bing-domain-scraper.js
06:34:46<pabs>https://transfer.archivete.am/11Enzl/google-domain-scraper.js
06:35:30<pabs>bing-domain-scraper.js you run it over and over again, then concatenate all the urls.txt files it downloads
06:36:11<pabs>google-domain-scraper.js you run it once (or more) with which=1, then change which=0 to save the URLs
06:44:38<Pedrosso>I see
06:54:00<Pedrosso>thanks
07:03:16BlueMaxima quits [Read error: Connection reset by peer]
07:10:41DogsRNice quits [Read error: Connection reset by peer]
08:15:04IKFKconnection joins
08:15:28IKFKconnection quits [Remote host closed the connection]
09:34:13Earendil7 quits [Ping timeout: 272 seconds]
09:43:40Earendil7 (Earendil7) joins
09:49:20Arcorann quits [Remote host closed the connection]
09:55:22Arcorann (Arcorann) joins
10:00:00Bleo18260 quits [Client Quit]
10:01:24Bleo18260 joins
10:21:36hitgrr8 joins
11:30:29eroc1990 quits [Read error: Connection reset by peer]
11:32:26eroc1990 (eroc1990) joins
12:18:15kiryu quits [Ping timeout: 272 seconds]
12:24:17kiryu joins
12:24:17kiryu quits [Changing host]
12:24:17kiryu (kiryu) joins
12:43:55mgrytbak joins
12:44:05ThreeHM (ThreeHeadedMonkey) joins
13:07:01kiryu quits [Ping timeout: 272 seconds]
13:09:07kiryu joins
13:09:07kiryu quits [Changing host]
13:09:07kiryu (kiryu) joins
13:13:59kiryu quits [Ping timeout: 272 seconds]
13:17:47kiryu joins
13:17:47kiryu quits [Changing host]
13:17:47kiryu (kiryu) joins
13:38:03kiryu quits [Ping timeout: 272 seconds]
13:38:20Arcorann quits [Ping timeout: 240 seconds]
13:45:13<@JAA>Pedrosso: Re zstd, I don't think I've seen it use more than a few GB unless you use multi-threaded mode. To maximise the compression ratio, you'll want to use single-threaded anyway. So `zstd --ultra -22 --long=31` would be the highest compression ratio. You'll pay for it in CPU cycles.
14:36:06<Terbium>probably also pre-sort the URLs for better ratio and faster compression
14:38:11<@JAA>That can help, yeah, although simple sorting might not be optimal. It'd be neat if there was a 'rearrange the lines to maximise compression ratio'-type option/tool. :-)
14:39:51RealPerson joins
14:43:27<Terbium>If you have enough RAM, you can crank up --long to fit the entire file in the window
14:44:18<Terbium>Won't help too much if everything is already properly sorted, but can eek out a small % in ratio
14:49:29<@JAA>--long=31 as above is the maximum I believe (and only on 64-bit machines).
14:50:36<@JAA>That's a 2 GiB window.
14:55:44M--mlv|m quits [*.net *.split]
14:55:47that_lurker|m quits [*.net *.split]
14:55:47hillow596|m quits [*.net *.split]
14:55:47EvanBoehs|m quits [*.net *.split]
14:55:47username675f|m quits [*.net *.split]
14:55:47AntoninDelFabbro|m quits [*.net *.split]
14:55:47Peetz0r|m quits [*.net *.split]
14:55:47kaz__|m quits [*.net *.split]
14:55:47Maakuth|m quits [*.net *.split]
14:55:47jevinskie quits [*.net *.split]
14:55:47yetanotherarchiver|m quits [*.net *.split]
14:55:47superusercode quits [*.net *.split]
14:55:48nyuuzyou quits [*.net *.split]
14:55:48JC|m quits [*.net *.split]
14:55:48pannekoek11|m quits [*.net *.split]
14:55:48jwoglom|m quits [*.net *.split]
14:55:49hlgs|m quits [*.net *.split]
14:55:49Ruk8 quits [*.net *.split]
14:55:49vexr quits [*.net *.split]
14:55:49Video quits [*.net *.split]
14:55:50saouroun|m quits [*.net *.split]
14:55:50bogsen quits [*.net *.split]
14:55:50supermariofan67|m quits [*.net *.split]
14:55:50marius851000 quits [*.net *.split]
14:55:50Nulo|m quits [*.net *.split]
14:55:50iCesenberk|m quits [*.net *.split]
14:55:50sonst-was|m quits [*.net *.split]
14:55:50qyxojzh|m quits [*.net *.split]
14:55:50qq44|m quits [*.net *.split]
14:55:50alexshpilkin quits [*.net *.split]
14:55:50coro quits [*.net *.split]
14:55:50gungagungagunga|m quits [*.net *.split]
14:55:50Misty|m quits [*.net *.split]
14:55:50Roki_100|m quits [*.net *.split]
14:55:50Cydog|m quits [*.net *.split]
14:55:50trumad|m quits [*.net *.split]
14:55:50nosamu|m quits [*.net *.split]
14:55:50noobirc|m quits [*.net *.split]
14:55:50wrangle|m quits [*.net *.split]
14:55:50moe-a-m|m quits [*.net *.split]
14:55:50will|m quits [*.net *.split]
14:55:50mikolaj|m quits [*.net *.split]
14:55:50voltagex|m quits [*.net *.split]
14:55:50gwetchen|m quits [*.net *.split]
14:55:50GRBaset quits [*.net *.split]
14:55:50lasdkfj|m quits [*.net *.split]
14:55:50finalti|m quits [*.net *.split]
14:55:50akaibu|m quits [*.net *.split]
14:55:50masterx244|m quits [*.net *.split]
14:55:50octylFractal|m quits [*.net *.split]
14:55:50NickS|m quits [*.net *.split]
14:55:50jackt1365|m quits [*.net *.split]
14:55:50schwarzkatz|m quits [*.net *.split]
14:55:50tech234a|m quits [*.net *.split]
14:55:50t3chler|m quits [*.net *.split]
14:55:50EmeraldSnorlax|m quits [*.net *.split]
14:55:50haha-whered-it-go|m quits [*.net *.split]
14:55:50madpro|m quits [*.net *.split]
14:55:50thermospheric quits [*.net *.split]
14:55:50noxious quits [*.net *.split]
14:55:50ram|m quits [*.net *.split]
14:55:50joepie91|m quits [*.net *.split]
14:55:50Passiing|m quits [*.net *.split]
14:55:50MaxG quits [*.net *.split]
14:55:50Minkafighter|m quits [*.net *.split]
14:55:50yzqzss quits [*.net *.split]
14:55:50x9fff00 quits [*.net *.split]
14:55:50Exorcism quits [*.net *.split]
14:55:50phaeton quits [*.net *.split]
14:55:50Froxcey|m quits [*.net *.split]
14:55:50Tom|m1 quits [*.net *.split]
14:55:50manu|m quits [*.net *.split]
14:55:50s-crypt|m|m quits [*.net *.split]
14:55:50CrispyAlice2 quits [*.net *.split]
14:55:51Fletcher quits [*.net *.split]
14:55:51flashfire42|m quits [*.net *.split]
14:55:51MinePlayersPEMyNey|m quits [*.net *.split]
14:55:51ragu|m quits [*.net *.split]
14:55:51Thibaultmol quits [*.net *.split]
14:55:51nstrom|m quits [*.net *.split]
14:55:51Hans5958 quits [*.net *.split]
14:55:51theblazehen|m quits [*.net *.split]
14:55:51mpeter|m quits [*.net *.split]
14:55:51tomodachi94 quits [*.net *.split]
14:55:51Vokun quits [*.net *.split]
14:55:51audrooku|m quits [*.net *.split]
14:55:51britmob|m quits [*.net *.split]
14:55:51xxia|m quits [*.net *.split]
14:55:51cmostracker|m quits [*.net *.split]
14:55:51andrewvieyra|m quits [*.net *.split]
14:55:51mind_combatant quits [*.net *.split]
14:55:51DigitalDragon quits [*.net *.split]
14:55:51@Sanqui|m quits [*.net *.split]
14:55:51igneousx quits [*.net *.split]
14:55:51Ajay quits [*.net *.split]
14:55:51rewby|m quits [*.net *.split]
14:56:53<Terbium>you're right, odd, I was reading the format spec as well which stated: The maximum `Window_Size` is `(1<<41) + 7*(1<<38)` bytes, which is 3.75 TB.
14:57:22<Terbium>I guess 2 GiB is the real world limit for 64 bit, just that the spec goes higher
14:59:26qwertyasdfuiopghjkl quits [Ping timeout: 265 seconds]
15:01:29RealPerson leaves
15:01:51<@JAA>Huh
15:03:16rewby|m joins
15:04:37qwertyasdfuiopghjkl (qwertyasdfuiopghjkl) joins
15:08:10Passiing|m joins
15:08:10joepie91|m joins
15:08:10ram|m joins
15:08:10pannekoek11|m joins
15:08:10tech234a|m joins
15:08:10MinePlayersPEMyNey|m joins
15:08:10Ruk8 (Ruk8) joins
15:08:10noxious joins
15:08:10mikolaj|m joins
15:08:10thermospheric (Thermospheric) joins
15:08:10Sanqui|m (Sanqui) joins
15:08:10hlgs|m joins
15:08:10mpeter|m joins
15:08:10xxia|m joins
15:08:10@ChanServ sets mode: +o Sanqui|m
15:08:10andrewvieyra|m joins
15:08:10theblazehen|m joins
15:08:10mind_combatant joins
15:08:10nstrom|m joins
15:08:10saouroun|m joins
15:08:10EmeraldSnorlax|m joins
15:08:10haha-whered-it-go|m joins
15:08:11schwarzkatz|m joins
15:08:11t3chler|m joins
15:08:11jackt1365|m joins
15:08:11x9fff00 (x9fff00) joins
15:08:11madpro|m joins
15:08:11Maakuth|m joins
15:08:12DigitalDragon (DigitalDragon) joins
15:08:12ragu|m joins
15:08:12britmob|m joins
15:08:12audrooku|m joins
15:08:12Ajay joins
15:08:12Froxcey|m joins
15:08:12igneousx (igneousx) joins
15:08:12NickS|m joins
15:08:12akaibu|m joins
15:08:12masterx244|m joins
15:08:12GRBaset (GRBaset) joins
15:08:12lasdkfj|m joins
15:08:12Minkafighter|m joins
15:08:12tomodachi94 (tomodachi94) joins
15:08:12finalti|m joins
15:08:12Thibaultmol joins
15:08:12manu|m joins
15:08:12Fletcher (Fletcher) joins
15:08:12voltagex|m joins
15:08:12yzqzss (yzqzss) joins
15:08:13CrispyAlice2 (CrispyAlice2) joins
15:08:13gwetchen|m joins
15:08:13MaxG joins
15:08:13jevinskie (jevinskie) joins
15:08:13will|m joins
15:08:13Hans5958 (Hans5958) joins
15:08:13moe-a-m|m joins
15:08:13wrangle|m joins
15:08:13vexr joins
15:08:13nyuuzyou (nyuuzyou) joins
15:08:13superusercode (superusercode) joins
15:08:13jwoglom|m joins
15:08:13Cydog|m joins
15:08:13nosamu|m joins
15:08:13Roki_100|m joins
15:08:13trumad|m joins
15:08:13Tom|m1 joins
15:08:13gungagungagunga|m joins
15:08:13cmostracker|m joins
15:08:13noobirc|m joins
15:08:13Misty|m joins
15:08:13Video joins
15:08:13yetanotherarchiver|m joins
15:08:13Vokun (Vokun) joins
15:08:13qq44|m joins
15:08:13phaeton (phaeton) joins
15:08:14coro joins
15:08:14alexshpilkin joins
15:08:14EvanBoehs|m joins
15:08:14flashfire42|m (flashfire42) joins
15:08:14iCesenberk|m joins
15:08:14qyxojzh|m joins
15:08:14octylFractal|m joins
15:08:14sonst-was|m joins
15:08:14s-crypt|m|m joins
15:08:14Nulo|m joins
15:08:14JC|m joins
15:08:15Exorcism (exorcism) joins
15:08:15marius851000 joins
15:08:15bogsen (bogsen) joins
15:08:15supermariofan67|m joins
15:08:21kaz__|m joins
15:08:21Peetz0r|m joins
15:08:24AntoninDelFabbro|m joins
15:08:24username675f|m joins
15:08:25hillow596|m joins
15:08:25that_lurker|m joins
15:11:47systwi quits [Ping timeout: 272 seconds]
15:15:43ScenarioPlanet (ScenarioPlanet) joins
15:27:23systwi (systwi) joins
15:33:42ScenarioPlanet quits [Read error: Connection reset by peer]
15:38:23systwi quits [Ping timeout: 272 seconds]
15:51:35magmaus3 quits [Client Quit]
15:53:31magmaus3 (magmaus3) joins
15:54:35kiryu joins
15:54:35kiryu quits [Changing host]
15:54:35kiryu (kiryu) joins
16:10:21RealPerson joins
16:28:43systwi (systwi) joins
16:48:19kiryu quits [Remote host closed the connection]
16:54:14kiryu joins
16:54:14kiryu quits [Changing host]
16:54:14kiryu (kiryu) joins
16:54:22RealPerson leaves
17:28:35systwi quits [Ping timeout: 272 seconds]
17:29:43Verta joins
17:30:07<Verta>Hello there, I had some questions regarding archiving and url fetching and was redirected here
17:30:10M--mlv|m joins
17:30:28<Terbium>Feel free you ask your questions here
17:32:01<Verta>Ok, so there are a few things. The first one is this: I was once a user of the Gothic-l Yahoo group, as everyone knows, the Yahoo group shut down, but I have exported my emails from that group and have all of them in a file. I don't know how to efficiently put them into a website format or remove everything around it which isn't part of the
17:32:02<Verta>messages, so that it's possible to get an archive of all the messages from that group. All the messages from before I was a member were archived on another website which still exists
17:34:01<Verta>The second one is this: I am working on a personal project where I am building a search engine for older websites (so that one can browse the old internet, more or less), a few of these exist but I do some things differently as I have a repository of urls in a database which I use. The problem is that I don't know what the most efficient way is to
17:34:01<Verta>do this, since I glued together some python scripts for url fetching with descriptions and titles and converting them to a csv file, but this would burden the server of the wayback machine too much, so I wonder if there is a more friendly way to do this with which I can efficiently fetch urls with their metadata from only older websites (not modern
17:34:02<Verta>ones since some websites didn't exist yet back around the 2000s)
17:35:44<Terbium>i presume the emails from Yahoo groups are probably in a standard format, you can try an Python script with an XML parser to extract the core contents of each email, then generate an HTML file from them
17:36:51<Terbium>Is your only source of old websites the WBM?
17:37:53<Verta>It is not the only source, some websites are not archived on there, so for some websites I also use Arquivo.pt or some other archive websites. The neopets website for example is almost entirely functionally preserved on a different archive website
17:38:48<Verta>Thank you for the suggestion on the emails, this is what the files look like: https://ibb.co/g4L1cBt
17:39:36<Verta>I don't know if any archive group is interested in getting them? They are not publicly available anymore since the only people having them now since the shutdown of yahoo groups are people which were subscribed and I am apparently the only one who exported them into a file format so that we have all the messages
17:41:44<Verta>https://listserv.linguistlist.org/pipermail/gothic-l/ This website has all the messages up to March 2015, I have everything from April 2015 until the shutdown on my hard drive exported from my emails.
17:44:45systwi (systwi) joins
17:56:09<Terbium>Assuming they are HTML based emails and not plaintext, should be simple to parse each email to obtain the important text
17:56:34<Terbium>Yahoo probably generates the emails in a standard format
17:57:43<Terbium>The description and title are unlikely to be available separately in a condensed format unfortunately. I don't think WBM exposes that information separately from the actual page body
17:58:26<Verta>Oh no, I used Mozilla Thunderbird to export all the emails from the Yahoo Mailing list
17:59:44<Verta>Well yes, what I got adviced was to export the wikipedia reference dump which is available for 2010. That works since my project is intended for websites from before around 2008, they seem to contain titles and websites in the reference list, but not the descriptions so if I'd want those that still needs to be fetched
18:00:23<Verta>I looked into beautifulsoup and did some tests with it, but don't immediately know how to let it fetch multiple urls in one get, instead of going through an array loop and doing one url each get which burdens a web server
18:01:14<Verta>(The emails are exported as .eml format, so it's basically displaying the emails as a file, I guess there should be some python script to convert eml files to an xml format or something similar
18:09:34<Terbium>might be useful https://pypi.org/project/eml-parser/
18:09:45systwi quits [Ping timeout: 272 seconds]
18:10:22<Terbium>you'll probably need lxml (or html parser) once you extract the email body using the eml parser
18:10:50<Verta>Ah thank you, that should be useful
18:16:44alemi joins
18:23:51ul joins
18:29:43kiska quits [Quit: The Lounge - https://thelounge.chat]
18:29:55kiska (kiska) joins
18:30:56alemi quits [Remote host closed the connection]
18:32:48systwi (systwi) joins
18:43:34ctag (ctag) joins
18:43:49ul quits [Remote host closed the connection]
18:55:02Island joins
19:13:11Verta quits [Ping timeout: 265 seconds]
19:45:12vics|m joins
19:51:21qwertyasdfuiopghjkl is now known as qwertyasdfuiopghjkl_
19:51:39qwertyasdfuiopghjkl (qwertyasdfuiopghjkl) joins
19:57:05qwertyasdfuiopghjkl_ quits [Client Quit]
20:09:12vics|m quits [*.net *.split]
20:09:14M--mlv|m quits [*.net *.split]
20:09:15that_lurker|m quits [*.net *.split]
20:09:15hillow596|m quits [*.net *.split]
20:09:15username675f|m quits [*.net *.split]
20:09:15AntoninDelFabbro|m quits [*.net *.split]
20:09:15Peetz0r|m quits [*.net *.split]
20:09:15kaz__|m quits [*.net *.split]
20:09:16yetanotherarchiver|m quits [*.net *.split]
20:09:16superusercode quits [*.net *.split]
20:09:17JC|m quits [*.net *.split]
20:09:17pannekoek11|m quits [*.net *.split]
20:09:17jwoglom|m quits [*.net *.split]
20:09:19EvanBoehs|m quits [*.net *.split]
20:09:19Maakuth|m quits [*.net *.split]
20:09:19hlgs|m quits [*.net *.split]
20:09:19Video quits [*.net *.split]
20:09:19nyuuzyou quits [*.net *.split]
20:09:20vexr quits [*.net *.split]
20:09:20jevinskie quits [*.net *.split]
20:09:20Ruk8 quits [*.net *.split]
20:09:20saouroun|m quits [*.net *.split]
20:09:22marius851000 quits [*.net *.split]
20:09:22Nulo|m quits [*.net *.split]
20:09:22supermariofan67|m quits [*.net *.split]
20:09:22bogsen quits [*.net *.split]
20:09:22iCesenberk|m quits [*.net *.split]
20:09:22sonst-was|m quits [*.net *.split]
20:09:22qyxojzh|m quits [*.net *.split]
20:09:22qq44|m quits [*.net *.split]
20:09:22alexshpilkin quits [*.net *.split]
20:09:22coro quits [*.net *.split]
20:09:22Misty|m quits [*.net *.split]
20:09:22Roki_100|m quits [*.net *.split]
20:09:22gungagungagunga|m quits [*.net *.split]
20:09:22trumad|m quits [*.net *.split]
20:09:22nosamu|m quits [*.net *.split]
20:09:22Cydog|m quits [*.net *.split]
20:09:22noobirc|m quits [*.net *.split]
20:09:22wrangle|m quits [*.net *.split]
20:09:22moe-a-m|m quits [*.net *.split]
20:09:22gwetchen|m quits [*.net *.split]
20:09:22will|m quits [*.net *.split]
20:09:22voltagex|m quits [*.net *.split]
20:09:22lasdkfj|m quits [*.net *.split]
20:09:22finalti|m quits [*.net *.split]
20:09:22GRBaset quits [*.net *.split]
20:09:22masterx244|m quits [*.net *.split]
20:09:22akaibu|m quits [*.net *.split]
20:09:22tech234a|m quits [*.net *.split]
20:09:22octylFractal|m quits [*.net *.split]
20:09:22NickS|m quits [*.net *.split]
20:09:22schwarzkatz|m quits [*.net *.split]
20:09:22jackt1365|m quits [*.net *.split]
20:09:22t3chler|m quits [*.net *.split]
20:09:22EmeraldSnorlax|m quits [*.net *.split]
20:09:22haha-whered-it-go|m quits [*.net *.split]
20:09:22madpro|m quits [*.net *.split]
20:09:22thermospheric quits [*.net *.split]
20:09:22noxious quits [*.net *.split]
20:09:22ram|m quits [*.net *.split]
20:09:22joepie91|m quits [*.net *.split]
20:09:22Passiing|m quits [*.net *.split]
20:09:22MaxG quits [*.net *.split]
20:09:22Minkafighter|m quits [*.net *.split]
20:09:22yzqzss quits [*.net *.split]
20:09:22x9fff00 quits [*.net *.split]
20:09:22Exorcism quits [*.net *.split]
20:09:22phaeton quits [*.net *.split]
20:09:22Froxcey|m quits [*.net *.split]
20:09:22Tom|m1 quits [*.net *.split]
20:09:22mikolaj|m quits [*.net *.split]
20:09:22manu|m quits [*.net *.split]
20:09:22CrispyAlice2 quits [*.net *.split]
20:09:22s-crypt|m|m quits [*.net *.split]
20:09:22Fletcher quits [*.net *.split]
20:09:22flashfire42|m quits [*.net *.split]
20:09:22MinePlayersPEMyNey|m quits [*.net *.split]
20:09:22ragu|m quits [*.net *.split]
20:09:22Thibaultmol quits [*.net *.split]
20:09:22nstrom|m quits [*.net *.split]
20:09:22Hans5958 quits [*.net *.split]
20:09:22theblazehen|m quits [*.net *.split]
20:09:22mpeter|m quits [*.net *.split]
20:09:22tomodachi94 quits [*.net *.split]
20:09:22Vokun quits [*.net *.split]
20:09:22audrooku|m quits [*.net *.split]
20:09:22xxia|m quits [*.net *.split]
20:09:22cmostracker|m quits [*.net *.split]
20:09:22britmob|m quits [*.net *.split]
20:09:23andrewvieyra|m quits [*.net *.split]
20:09:23DigitalDragon quits [*.net *.split]
20:09:23mind_combatant quits [*.net *.split]
20:09:23@Sanqui|m quits [*.net *.split]
20:09:23igneousx quits [*.net *.split]
20:09:23Ajay quits [*.net *.split]
20:09:23rewby|m quits [*.net *.split]
20:13:36qwertyasdfuiopghjkl quits [Ping timeout: 265 seconds]
20:16:04qwertyasdfuiopghjkl (qwertyasdfuiopghjkl) joins
20:20:05rewby|m joins
20:22:20Ruthalas59 quits [Ping timeout: 240 seconds]
20:23:16adia quits [Quit: The Lounge - https://thelounge.chat]
20:23:50Ruthalas59 (Ruthalas) joins
20:25:16Passiing|m joins
20:25:16joepie91|m joins
20:25:16ram|m joins
20:25:16pannekoek11|m joins
20:25:16tech234a|m joins
20:25:16MinePlayersPEMyNey|m joins
20:25:16Ruk8 (Ruk8) joins
20:25:16noxious joins
20:25:16mpeter|m joins
20:25:16Sanqui|m (Sanqui) joins
20:25:16@ChanServ sets mode: +o Sanqui|m
20:25:16hlgs|m joins
20:25:16andrewvieyra|m joins
20:25:16saouroun|m joins
20:25:16EmeraldSnorlax|m joins
20:25:16theblazehen|m joins
20:25:16t3chler|m joins
20:25:16thermospheric (Thermospheric) joins
20:25:16nstrom|m joins
20:25:16mikolaj|m joins
20:25:16haha-whered-it-go|m joins
20:25:16xxia|m joins
20:25:16mind_combatant joins
20:25:17jackt1365|m joins
20:25:17x9fff00 (x9fff00) joins
20:25:17madpro|m joins
20:25:17Ajay joins
20:25:17Maakuth|m joins
20:25:17ragu|m joins
20:25:17britmob|m joins
20:25:17audrooku|m joins
20:25:17NickS|m joins
20:25:17igneousx (igneousx) joins
20:25:17akaibu|m joins
20:25:17DigitalDragon (DigitalDragon) joins
20:25:17masterx244|m joins
20:25:17Froxcey|m joins
20:25:17GRBaset (GRBaset) joins
20:25:17lasdkfj|m joins
20:25:17schwarzkatz|m joins
20:25:17finalti|m joins
20:25:17Thibaultmol joins
20:25:17tomodachi94 (tomodachi94) joins
20:25:17Fletcher (Fletcher) joins
20:25:17voltagex|m joins
20:25:17yzqzss (yzqzss) joins
20:25:17Minkafighter|m joins
20:25:17jevinskie (jevinskie) joins
20:25:17gwetchen|m joins
20:25:17will|m joins
20:25:17manu|m joins
20:25:17CrispyAlice2 (CrispyAlice2) joins
20:25:17Hans5958 (Hans5958) joins
20:25:17moe-a-m|m joins
20:25:17wrangle|m joins
20:25:17vexr joins
20:25:17nyuuzyou (nyuuzyou) joins
20:25:17superusercode (superusercode) joins
20:25:17MaxG joins
20:25:17jwoglom|m joins
20:25:17Cydog|m joins
20:25:18nosamu|m joins
20:25:18Roki_100|m joins
20:25:18gungagungagunga|m joins
20:25:18trumad|m joins
20:25:18Tom|m1 joins
20:25:18cmostracker|m joins
20:25:18Misty|m joins
20:25:18noobirc|m joins
20:25:18yetanotherarchiver|m joins
20:25:18Video joins
20:25:18Vokun (Vokun) joins
20:25:18phaeton (phaeton) joins
20:25:18coro joins
20:25:18EvanBoehs|m joins
20:25:18alexshpilkin joins
20:25:18qq44|m joins
20:25:18octylFractal|m joins
20:25:18flashfire42|m (flashfire42) joins
20:25:18qyxojzh|m joins
20:25:18iCesenberk|m joins
20:25:18sonst-was|m joins
20:25:18s-crypt|m|m joins
20:25:18Nulo|m joins
20:25:18JC|m joins
20:25:18Exorcism (exorcism) joins
20:25:18marius851000 joins
20:25:18supermariofan67|m joins
20:25:18bogsen (bogsen) joins
20:25:18vics joins
20:25:57kaz__|m joins
20:25:58Peetz0r|m joins
20:25:59AntoninDelFabbro|m joins
20:26:00username675f|m joins
20:26:02that_lurker|m joins
20:26:02hillow596|m joins
20:32:53Ruthalas59 quits [Ping timeout: 272 seconds]
20:37:08DogsRNice joins
20:37:38qwertyasdfuiopghjkl quits [Client Quit]
21:07:03Ruthalas59 (Ruthalas) joins
21:07:19Ruthalas59 quits [Client Quit]
21:09:09Ruthalas59 (Ruthalas) joins
21:09:54Ruthalas59 quits [Client Quit]
21:18:39Ruthalas59 (Ruthalas) joins
21:30:51BlueMaxima joins
21:43:44RealPerson joins
21:59:21RealPerson leaves
22:04:56RealPerson joins
22:06:42hitgrr8 quits [Client Quit]
22:22:16jacksonchen666 is now known as RJHacker55394
22:22:19jacksonchen666 (jacksonchen666) joins
22:22:24jacksonchen666 quits [Client Quit]
22:24:03RJHacker55394 quits [Remote host closed the connection]
22:37:59Arcorann (Arcorann) joins
22:38:44RealPerson leaves
23:05:27jacksonchen666 (jacksonchen666) joins
23:12:42Matthww1194 joins
23:15:01Matthww119 quits [Ping timeout: 272 seconds]
23:15:01Matthww1194 is now known as Matthww119
23:29:52nothere quits [Quit: Leaving]
23:30:20systwi_ joins
23:30:26systwi_ quits [Client Quit]
23:57:50Lord_Nightmare quits [Quit: ZNC - http://znc.in]