00:10:13 | | lunik1 quits [Quit: :x] |
00:10:43 | | lunik1 joins |
00:38:23 | | Blueacid quits [Ping timeout: 260 seconds] |
00:50:38 | | Island joins |
01:01:48 | | devkev (devkev) joins |
01:06:23 | | devkev quits [Ping timeout: 260 seconds] |
01:23:34 | | Rno joins |
01:31:27 | | devkev (devkev) joins |
01:47:05 | <Rno> | Hi! What does the --dumpxmlrevisions option in the dumpgenerator script do exactly? Is it necessary for a full backup? |
01:50:05 | <@JAA> | Rno: I'd recommend asking in #wikiteam instead. |
01:50:21 | <Rno> | Ok, thanks |
01:51:39 | | Rno leaves |
02:11:45 | | Lord_Nightmare quits [Quit: ZNC - http://znc.in] |
02:12:35 | | BlueMaxima quits [Write error: Connection reset by peer] |
02:13:36 | <devkev> | asked in #unclesamsarchive, but maybe a more generic question. Does the warrior support archiving an FTP server? If so, would a list of every recursive file path to be backed up be enough? |
02:13:55 | | BlueMaxima joins |
02:15:21 | | Lord_Nightmare (Lord_Nightmare) joins |
02:35:51 | | BlueMaxima quits [Read error: Connection reset by peer] |
02:36:03 | | BlueMaxima joins |
02:57:03 | | notarobot19 joins |
02:58:39 | | emcapi joins |
02:58:58 | | notarobot1 quits [Ping timeout: 260 seconds] |
02:58:59 | | notarobot19 is now known as notarobot1 |
02:59:40 | | _emcapi quits [Ping timeout: 250 seconds] |
03:00:10 | | _emcapi joins |
03:03:08 | | emcapi quits [Ping timeout: 250 seconds] |
03:04:43 | | emcapi joins |
03:05:18 | | _emcapi quits [Ping timeout: 250 seconds] |
03:06:28 | | _emcapi joins |
03:06:56 | | Larsenv quits [Quit: The Lounge - https://thelounge.chat] |
03:07:13 | | Larsenv (Larsenv) joins |
03:08:09 | | notarobot11 joins |
03:09:28 | | emcapi quits [Ping timeout: 260 seconds] |
03:10:37 | | emcapi joins |
03:11:13 | | notarobot1 quits [Ping timeout: 260 seconds] |
03:11:14 | | notarobot11 is now known as notarobot1 |
03:11:48 | | _emcapi quits [Ping timeout: 260 seconds] |
03:23:23 | | gust quits [Read error: Connection reset by peer] |
04:02:51 | | etnguyen03 quits [Remote host closed the connection] |
04:37:25 | | devkev quits [Remote host closed the connection] |
04:38:00 | | devkev (devkev) joins |
04:43:40 | | devkev quits [Ping timeout: 250 seconds] |
04:50:51 | | Wohlstand quits [Remote host closed the connection] |
04:55:09 | | devkev (devkev) joins |
05:05:50 | <tzt> | https://nitter.net/SeedTechTV/status/1889477679054819765 |
05:07:14 | <tzt> | google maps removing reviews for general education schools on 2025-02-18 |
05:13:09 | | YooperKirks joins |
05:24:21 | <pabs> | this deepfake on Instagram is likely to get removed, do we have any way to archive it? https://www.instagram.com/p/DF8IKiLIfXD/ |
05:24:27 | <pabs> | (works in yt-dlp) |
05:25:38 | <pabs> | https://people.com/scarlett-johansson-artificial-intelligence-limited-ai-video-goes-viral-11305926 |
05:25:46 | | @imer quits [Killed (NickServ (GHOST command used by imer6))] |
05:25:57 | | imer (imer) joins |
05:25:58 | | @ChanServ sets mode: +o imer |
05:50:03 | | benjins2 quits [Read error: Connection reset by peer] |
05:51:27 | <@JAA> | pabs: Looks like I can get through to Instagram with grab-site, but the actual video URL isn't even in a script block or anything but retrieved via a GraphQL query (i.e. POST) these days... |
05:59:48 | | pabs quits [Ping timeout: 260 seconds] |
06:02:43 | | devkev quits [Ping timeout: 260 seconds] |
06:04:46 | | devkev (devkev) joins |
06:15:58 | | devkev quits [Ping timeout: 250 seconds] |
06:16:08 | | lennier2 quits [Ping timeout: 260 seconds] |
06:16:45 | | lennier2 joins |
06:19:29 | | devkev (devkev) joins |
06:24:18 | | devkev quits [Ping timeout: 260 seconds] |
06:31:21 | | BornOn420 quits [Remote host closed the connection] |
06:31:34 | <monoxane> | JAA graphql queries are still a GET, its just a super convoluted json body with some cursed url parameters, its only mutations that are POST |
06:31:52 | | BornOn420 (BornOn420) joins |
06:33:41 | <@JAA> | monoxane: In theory, that should be how it works, sure. In practice, that's normally not how it's implemented. The GraphQL query in question on Instagram is POST. |
06:34:15 | | devkev (devkev) joins |
06:34:40 | <monoxane> | well thats extra cursed then |
06:35:13 | | PotatoProton01 joins |
06:35:13 | <@JAA> | One part of it is that the query is usually sent in the request body, and while that's not forbidden by the HTTP spec, it's recommended against. |
06:35:24 | <@JAA> | forbidden on GET requests, I mean. |
06:35:27 | <pokechu22> | I've mostly seen graphql done via posts, yeah |
06:35:40 | <pokechu22> | Wasn't there a new HTTP verb for "get but with http body"? QUERY, I think? |
06:35:58 | <@JAA> | The only cases where I've seen GETs were with a query identifier, not a full query. |
06:36:20 | <pokechu22> | https://httpwg.org/http-extensions/draft-ietf-httpbis-safe-method-w-body.html / https://www.ietf.org/archive/id/draft-ietf-httpbis-safe-method-w-body-02.html I think |
06:36:38 | <@JAA> | Huh |
06:36:39 | | pabs (pabs) joins |
06:38:01 | <@JAA> | More precisely, the HTTP spec says that the body SHOULD be ignored on GET. |
06:38:30 | | devkev quits [Ping timeout: 250 seconds] |
06:39:14 | | devkev (devkev) joins |
06:39:42 | <@JAA> | Oh, looks like that was removed in the 723x RFCs. |
06:39:46 | | PotatoProton01 quits [Remote host closed the connection] |
06:40:03 | | PotatoProton01 joins |
06:41:03 | <@JAA> | The wording in 7231 isn't particularly useful either though. Anyhow, yeah, almost all implementations use POST. |
06:43:33 | | Snivy quits [Ping timeout: 260 seconds] |
06:43:42 | | devkev quits [Ping timeout: 250 seconds] |
06:51:19 | | Snivy (Snivy) joins |
06:57:31 | | PotatoProton01 quits [Client Quit] |
06:57:50 | | PotatoProton01 joins |
07:02:12 | | PotatoProton01 quits [Remote host closed the connection] |
07:02:24 | | PotatoProton01 joins |
07:02:46 | | PotatoProton01 quits [Remote host closed the connection] |
07:02:58 | | PotatoProton01 joins |
07:03:05 | | PotatoProton01 quits [Client Quit] |
07:11:29 | | pixel (pixel) joins |
07:19:21 | | BlueMaxima quits [Read error: Connection reset by peer] |
07:50:54 | | Radzig quits [Quit: ZNC 1.9.1 - https://znc.in] |
07:52:26 | | Radzig joins |
07:56:15 | | devkev (devkev) joins |
08:01:08 | | devkev quits [Ping timeout: 260 seconds] |
08:11:37 | | devkev (devkev) joins |
08:16:00 | | devkev quits [Ping timeout: 250 seconds] |
08:21:22 | | devkev (devkev) joins |
08:26:13 | | devkev quits [Ping timeout: 260 seconds] |
08:45:38 | | loug8318142 joins |
08:55:43 | | khaoohs quits [Read error: Connection reset by peer] |
08:55:53 | | Island quits [Read error: Connection reset by peer] |
08:56:01 | | khaoohs joins |
08:56:01 | | katocala quits [Read error: Connection reset by peer] |
08:56:12 | | Island joins |
08:56:38 | | katocala joins |
08:56:51 | | Bleo18260072271962345 quits [Quit: Ping timeout (120 seconds)] |
08:57:00 | | makeworld quits [Quit: Ping timeout (120 seconds)] |
08:57:05 | | Bleo18260072271962345 joins |
08:58:29 | | devkev (devkev) joins |
09:05:53 | | devkev quits [Ping timeout: 260 seconds] |
09:17:09 | | devkev (devkev) joins |
09:21:26 | | devkev quits [Ping timeout: 250 seconds] |
09:26:21 | <Stagnant> | Agricola (Finnish humanities network site) is migrating to a new platform tomorrow (friday). It has a phpbb based discussion forum with 20 years worth of discussion. They closed the forum for new messages at the end of 2024 and the announcement about the new platform doesnt mention anything about the forum so would be nice to get an archivebot job for this. The URL for the |
09:26:23 | <Stagnant> | forum is https://agricolaverkko.fi/keskustelu/ |
09:26:54 | | devkev (devkev) joins |
09:31:33 | | devkev quits [Ping timeout: 260 seconds] |
09:35:16 | <@JAA> | Stagnant: Thanks! I've started ArchiveBot jobs for both the forums and the site. |
09:36:39 | | devkev (devkev) joins |
09:42:14 | | devkev quits [Ping timeout: 250 seconds] |
09:45:47 | | devkev (devkev) joins |
09:51:23 | | devkev quits [Ping timeout: 260 seconds] |
09:54:52 | | devkev (devkev) joins |
09:59:08 | | devkev quits [Ping timeout: 250 seconds] |
10:10:02 | | devkev (devkev) joins |
10:14:43 | | devkev quits [Ping timeout: 260 seconds] |
10:19:47 | | devkev (devkev) joins |
10:20:23 | <AK> | Some of the default Azure firewall rules will forbid GET with body. So until QUERY comes out I do use POST when I just want a GET but with a body 🤷 |
10:24:16 | | devkev quits [Ping timeout: 250 seconds] |
10:37:50 | | devkev (devkev) joins |
10:42:28 | | devkev quits [Ping timeout: 250 seconds] |
10:47:35 | | devkev (devkev) joins |
10:56:43 | | devkev quits [Ping timeout: 260 seconds] |
11:01:49 | | devkev (devkev) joins |
11:06:38 | | devkev quits [Ping timeout: 260 seconds] |
11:10:37 | | devkev (devkev) joins |
11:10:40 | | pixel leaves [Error from remote client] |
11:10:44 | | pixel (pixel) joins |
11:14:58 | | devkev quits [Ping timeout: 250 seconds] |
11:20:22 | | devkev (devkev) joins |
11:23:45 | | lunax quits [Read error: Connection reset by peer] |
11:24:43 | | devkev quits [Ping timeout: 260 seconds] |
11:24:52 | | pabs quits [Read error: Connection reset by peer] |
11:26:42 | | pabs (pabs) joins |
11:29:09 | | devkev (devkev) joins |
11:34:03 | | devkev quits [Ping timeout: 260 seconds] |
11:36:16 | | Island quits [Read error: Connection reset by peer] |
11:38:54 | | devkev (devkev) joins |
11:43:08 | | devkev quits [Ping timeout: 250 seconds] |
11:47:41 | | devkev (devkev) joins |
11:54:28 | | devkev quits [Ping timeout: 260 seconds] |
11:57:30 | | devkev (devkev) joins |
12:00:01 | | Bleo18260072271962345 quits [Quit: The Lounge - https://thelounge.chat] |
12:01:46 | | devkev quits [Ping timeout: 250 seconds] |
12:02:49 | | Bleo18260072271962345 joins |
12:15:33 | | devkev (devkev) joins |
12:20:08 | | devkev quits [Ping timeout: 260 seconds] |
12:25:18 | | devkev (devkev) joins |
12:29:28 | | Wohlstand (Wohlstand) joins |
12:30:03 | | devkev quits [Ping timeout: 260 seconds] |
12:31:28 | | Wohlstand quits [Client Quit] |
12:35:33 | | SkilledAlpaca418962 quits [Quit: SkilledAlpaca418962] |
12:36:06 | | SkilledAlpaca418962 joins |
12:38:30 | | Wohlstand (Wohlstand) joins |
12:43:21 | | devkev (devkev) joins |
12:47:42 | | devkev quits [Ping timeout: 250 seconds] |
12:52:52 | | devkev (devkev) joins |
12:59:13 | | devkev quits [Ping timeout: 260 seconds] |
13:01:11 | | devkev (devkev) joins |
13:02:08 | | gust joins |
13:05:28 | | devkev quits [Ping timeout: 250 seconds] |
13:10:45 | | devkev (devkev) joins |
13:15:33 | | devkev quits [Ping timeout: 260 seconds] |
13:19:28 | | devkev (devkev) joins |
13:19:37 | | SootBector quits [Remote host closed the connection] |
13:19:55 | | SootBector (SootBector) joins |
13:24:06 | | devkev quits [Ping timeout: 250 seconds] |
13:26:03 | | pabs quits [Ping timeout: 260 seconds] |
13:27:30 | | benjins2 joins |
13:29:01 | | Webuser630981 joins |
13:29:30 | | Webuser630981 quits [Client Quit] |
13:29:43 | | devkev (devkev) joins |
13:34:13 | | devkev quits [Ping timeout: 260 seconds] |
13:38:09 | | devkev (devkev) joins |
13:41:54 | | pabs (pabs) joins |
13:42:44 | | devkev quits [Ping timeout: 250 seconds] |
13:45:22 | | Megame (Megame) joins |
14:00:36 | | Megame quits [Read error: Connection reset by peer] |
14:01:04 | | Megame (Megame) joins |
14:02:22 | | nulldata6 (nulldata) joins |
14:04:33 | | nulldata quits [Ping timeout: 260 seconds] |
14:04:34 | | nulldata6 is now known as nulldata |
14:38:29 | | Megame quits [Remote host closed the connection] |
14:38:49 | | Megame (Megame) joins |
14:50:21 | | devkev (devkev) joins |
14:55:18 | | devkev quits [Ping timeout: 260 seconds] |
14:58:27 | | devkev (devkev) joins |
15:02:53 | | devkev quits [Ping timeout: 260 seconds] |
15:03:21 | | devkev (devkev) joins |
15:09:24 | | devkev quits [Ping timeout: 250 seconds] |
15:23:25 | | katocala quits [Remote host closed the connection] |
15:24:13 | <h2ibot> | Nazaypato edited Talk:Deathwatch (+176, /* Pooh's Adventures Wiki is shutting down */…): https://wiki.archiveteam.org/?diff=54415&oldid=52621 |
15:24:14 | <h2ibot> | Mgoshawk edited Deathwatch (+213, /* 2025 */): https://wiki.archiveteam.org/?diff=54416&oldid=54413 |
15:26:34 | | angenieux2 quits [Quit: The Lounge - https://thelounge.chat] |
15:26:55 | | angenieux2 (angenieux) joins |
15:36:08 | | lennier2 quits [Ping timeout: 260 seconds] |
15:36:43 | | khaoohs quits [Ping timeout: 260 seconds] |
15:48:41 | | katocala joins |
15:56:12 | | khaoohs joins |
15:57:49 | | Radzig quits [Quit: ZNC 1.9.1 - https://znc.in] |
16:04:39 | | Radzig joins |
16:20:02 | | dvb quits [Ping timeout: 250 seconds] |
16:20:43 | | us3rrr joins |
16:22:21 | | dvb (dvb) joins |
16:23:58 | | onetruth quits [Ping timeout: 260 seconds] |
16:35:31 | | utulien joins |
16:41:07 | | lennier1 (lennier1) joins |
16:57:54 | | Webuser172691 joins |
16:58:33 | <Webuser172691> | Is it normal for Warrior to only be able to upload at 2kB/s? |
16:59:01 | <@imer> | Webuser172691: not usually, no. what project are you running? |
16:59:05 | <Webuser172691> | US gov atm |
16:59:26 | <myself> | Are you actually getting jobs, or are you seeing the bandwidth consumed by occasionally pinging the tracker? |
16:59:58 | <Webuser172691> | wow I think I'm an idiot |
16:59:58 | <@imer> | ^ ah yes, if you're watching the overall stats you might just be idle |
17:00:00 | <Webuser172691> | "Starting CheckIP for Item |
17:00:00 | <Webuser172691> | Finished CheckIP for Item |
17:00:00 | <Webuser172691> | Starting CheckRequirements for Item |
17:00:00 | <Webuser172691> | Finished CheckRequirements for Item |
17:00:00 | <Webuser172691> | Starting GetItemFromTracker for Item |
17:00:00 | <Webuser172691> | Tracker rate limiting is active. We don't want to overload the site we're archiving, so we've limited the number of downloads per minute. Retrying after 60 seconds... |
17:00:00 | <Webuser172691> | Tracker rate limiting is active. We don't want to overload the site we're archiving, so we've limited the number of downloads per minute. Retrying after 80 seconds... |
17:00:01 | <Webuser172691> | Tracker rate limiting is active. We don't want to overload the site we're archiving, so we've limited the number of downloads per minute. Retrying after 100 seconds... |
17:00:01 | <Webuser172691> | Tracker rate limiting is active. We don't want to overload the site we're archiving, so we've limited the number of downloads per minute. Retrying after 120 seconds... |
17:00:02 | <Webuser172691> | " |
17:00:26 | <myself> | pasting that just confirmed it 😂 but at least that was an easy answer |
17:00:42 | <Webuser172691> | Welp, sorry for the bother, thanks for what you do folks! |
17:01:45 | | Webuser172691 quits [Client Quit] |
17:04:44 | | lunax (lunax) joins |
17:11:48 | | utulien quits [Ping timeout: 260 seconds] |
17:43:00 | | katocala is now authenticated as katocala |
18:25:33 | | utulien joins |
18:45:38 | | utulien quits [Ping timeout: 250 seconds] |
19:00:48 | | Megame quits [Ping timeout: 250 seconds] |
19:11:54 | | HP_Archivist (HP_Archivist) joins |
19:26:02 | | Naruyoko5 quits [Read error: Connection reset by peer] |
19:33:22 | | HP_Archivist quits [Client Quit] |
19:58:35 | | Webuser384859 joins |
19:58:43 | | Webuser384859 quits [Client Quit] |
20:01:21 | | Webuser171314 joins |
20:09:41 | | lennier2 joins |
20:12:18 | | lennier1 quits [Ping timeout: 250 seconds] |
20:14:07 | | Naruyoko joins |
20:28:58 | | katocala quits [Ping timeout: 260 seconds] |
20:29:26 | | katocala joins |
20:50:58 | | BlueMaxima joins |
21:01:33 | | Megame (Megame) joins |
21:11:33 | | katocala quits [Ping timeout: 260 seconds] |
21:11:53 | | katocala joins |
21:20:36 | | Wohlstand quits [Quit: Wohlstand] |
21:22:04 | | BlueMaxima quits [Client Quit] |
21:40:09 | | Island joins |
22:11:22 | | BornOn420 quits [Ping timeout: 276 seconds] |
22:12:48 | | etnguyen03 (etnguyen03) joins |
22:21:22 | | skyrocket quits [Quit: ZNC 1.8.2+deb2build5 - https://znc.in] |
22:24:23 | | BornOn420 (BornOn420) joins |
22:43:06 | | Megame quits [Client Quit] |
23:08:01 | | HP_Archivist (HP_Archivist) joins |
23:31:34 | | etnguyen03 quits [Remote host closed the connection] |
23:33:43 | | etnguyen03 (etnguyen03) joins |
23:39:05 | | _emcapi joins |
23:41:36 | | emcapi quits [Ping timeout: 250 seconds] |
23:54:46 | | sec^nd quits [Remote host closed the connection] |
23:55:14 | | sec^nd (second) joins |