00:02:32 -!- Thelie has quit (Ping timeout: 268 seconds). 00:04:17 -!- Soni has quit (Ping timeout: 255 seconds). 00:52:19 -!- Soni has joined. 02:31:25 -!- ecs has quit (Remote host closed the connection). 02:31:33 -!- ecs has joined. 03:58:09 -!- chiselfuse has quit (Remote host closed the connection). 03:58:24 -!- chiselfuse has joined. 04:20:30 How much money will it cost to hire a ship (including the captain) to go across the water for eight hours, in the Middle Ages? 05:02:03 -!- Riviera has quit (*.net *.split). 05:02:04 -!- dnm has quit (*.net *.split). 05:02:04 -!- V has quit (*.net *.split). 05:02:14 -!- Riviera has joined. 05:02:21 -!- dnm has joined. 05:02:34 -!- V has joined. 05:07:22 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102160&oldid=102157 * PixelatedStarfish * (+199) /* Data Types */ 05:08:09 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102161&oldid=102160 * PixelatedStarfish * (+21) /* Token Order */ 05:18:36 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102162&oldid=102161 * PixelatedStarfish * (+271) /* Files */ 05:39:51 -!- Noisytoot has quit (Ping timeout: 268 seconds). 05:40:34 -!- Noisytoot has joined. 07:01:40 -!- tromp has joined. 07:17:17 -!- ccx has quit (Ping timeout: 268 seconds). 07:43:57 -!- Sgeo has quit (Read error: Connection reset by peer). 07:46:00 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 08:56:16 -!- tromp has joined. 09:05:59 -!- wib_jonas has joined. 09:07:01 `icfplist https://icfpcontest2022.github.io/ "ICFP Contest 2022 will take place between 2nd and 5th of September!" 09:07:03 icfplist? No such file or directory 09:07:11 the conference homepage doesn't seem to link there 09:22:35 fungot: Where are you today? 09:22:41 `? fun 09:22:43 fun? ¯\(°​_o)/¯ 09:24:25 Oh, no fun. Got. 09:25:25 -!- fungot has joined. 09:25:38 fungot: Where were you? 09:25:39 fizzie: s/ gg/ go/ your assertion 09:53:01 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 10:04:49 -!- tromp has joined. 10:21:11 -!- monoxane has quit (Quit: Ping timeout (120 seconds)). 10:21:41 -!- monoxane has joined. 10:26:56 [[Uyjhmn n]] https://esolangs.org/w/index.php?diff=102163&oldid=98362 * HungKhanh0106 * (+13) 11:34:54 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 11:48:19 -!- razetime has joined. 12:17:59 -!- tromp has joined. 12:24:18 [[Deadfish "self-interpreter"]] https://esolangs.org/w/index.php?diff=102164&oldid=79486 * HungKhanh0106 * (-128) /* Simple Python Interpreter */ 13:11:26 [[Esolang:Introduce yourself]] M https://esolangs.org/w/index.php?diff=102165&oldid=102092 * Huh * (+130) 13:16:44 -!- razetime has quit (Ping timeout: 268 seconds). 13:27:14 -!- razetime has joined. 13:28:48 -!- Sgeo has joined. 13:36:15 -!- wib_jonas has quit (Quit: Client closed). 13:38:10 -!- Sgeo has quit (Read error: Connection reset by peer). 13:40:45 https://bcat112a.itch.io/squishcraft 13:57:11 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 14:17:12 -!- tromp has joined. 14:20:26 [[FurASM]] M https://esolangs.org/w/index.php?diff=102166&oldid=84545 * Bot4ol * (+66) 14:21:08 [[FurASM]] M https://esolangs.org/w/index.php?diff=102167&oldid=102166 * Bot4ol * (+24) 14:36:48 -!- Thelie has joined. 14:45:40 [[Dot's]] https://esolangs.org/w/index.php?diff=102168&oldid=102060 * Ilikecreepers * (+22) /* the complcated stuff */ 14:46:04 [[Dot's]] https://esolangs.org/w/index.php?diff=102169&oldid=102168 * Ilikecreepers * (+1) /* the hold on to your stuff it's going to get more complcated stuff/multi operation */ 14:46:27 [[Addo]] N https://esolangs.org/w/index.php?oldid=102170 * ChuckEsoteric08 * (+356) Created page with "{{Stub}} '''Addo'''('''Add''' and jump if '''o'''dd) is an [[OISC]] by [[User:ChuckEsoteric08]] ==Description== a b c Add memory addresses a and b s..." 15:11:10 -!- razetime has quit (Ping timeout: 256 seconds). 15:13:30 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102171&oldid=102162 * PixelatedStarfish * (+77) /* Concurrency; Functions Part Two: Electric Boogaloo */ 15:22:21 -!- razetime has joined. 15:23:30 -!- tech_exorcist has joined. 15:33:46 -!- razetime has quit (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.). 15:38:41 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 15:39:12 Hmmmm C++ code: int foo = []() { return 42; }(); 15:53:03 Feels kinda JavaScript-esque. 15:53:20 Don't they have a special name for that even? 15:53:44 Right: "An IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined." 15:55:23 The actual use I have of this is initializing const arrays: const std::array = []() { ... }(); 15:55:29 s/of/for/ 15:55:49 and it's missing an identifier for the array 15:56:31 and yes, it did remind me of JS 16:12:11 -!- Thelie has quit (Ping timeout: 255 seconds). 16:12:23 -!- tromp has joined. 16:25:48 [[Special:Log/newusers]] create * MENAMEME * New user account 16:26:29 -!- chiselfuse has quit (Remote host closed the connection). 16:27:28 -!- chiselfuse has joined. 16:27:41 fungot: Ohhihowareyoutoday 16:27:41 int-e: can't you guess? 16:27:53 fungot: WouldIaskifIcould? 16:27:54 int-e: if you call 20 years old. for real. hmm, i actually made a mzperl thing... let's where wa it. 16:30:18 I suspect const in C++ is kind of a scam. 16:31:22 but you say that about basically anything 16:32:24 I thought most things were a "scow" rather than a "scam". 16:33:10 There can be extreme cases like discussed in https://gist.github.com/pervognsen/a99c9b2e2712deeb5f174553b4dc0c88 16:33:38 But even in very regular C++ things I see so much code duplication. 16:58:21 -!- tech_exorcist has quit (Remote host closed the connection). 16:58:53 -!- tech_exorcist has joined. 17:04:46 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 17:19:46 -!- tech_exorcist has quit (Quit: unstable connection). 17:24:42 -!- tromp has joined. 17:48:53 -!- tech_exorcist has joined. 17:49:36 -!- tech_exorcist has quit (Remote host closed the connection). 17:50:05 -!- tech_exorcist has joined. 18:05:53 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 18:06:45 -!- tromp has joined. 18:13:25 -!- Lord_of_Life_ has joined. 18:13:58 -!- Lord_of_Life has quit (Ping timeout: 268 seconds). 18:16:11 -!- Lord_of_Life_ has changed nick to Lord_of_Life. 18:16:47 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 18:30:54 Well, that's interesting, esolangs.org has been receiving a lot more search clicks lately. https://zem.fi/tmp/esoclick.png 18:30:58 I mean, we're talking about 0-9/day → 25-75/day so it's not exactly one of the world's leading websites yet. But still. 18:31:44 The most common search terms (for clicks) being "esolang", "esolangs", "esoteric programming languages" and "esolang wiki", so maybe it's all just one person who's bad at remembering URLs and uses Google as their navigational aid. 18:33:19 'yet', I like your optimism. :-) 18:43:04 -!- SGautam has joined. 18:58:24 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102172&oldid=102171 * PixelatedStarfish * (-348) /* Concurrency; Functions Part Two: Electric Boogaloo */ 18:58:55 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102173&oldid=102172 * PixelatedStarfish * (+348) /* Structs: Defining a Data Type */ 19:08:19 -!- tromp has joined. 19:15:39 -!- tech_exorcist has quit (Remote host closed the connection). 19:16:57 -!- tech_exorcist has joined. 19:20:15 -!- tech_exorcist has quit (Read error: Connection reset by peer). 19:20:53 -!- tech_exorcist has joined. 19:29:38 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 19:32:24 -!- tromp has joined. 19:55:44 -!- Phantom_Hoover has joined. 20:01:44 important question 20:01:53 did the matrix of solidity come with us from freenode 20:03:29 -!- tech_exorcist has quit (Remote host closed the connection). 20:04:04 -!- tech_exorcist has joined. 20:04:29 `' matrix 20:04:31 237) enjoy being locked in your matrix of solidity 20:09:58 but are we still locked in it or was it specific to the old channel 20:17:07 -!- tech_exorcist has quit (Remote host closed the connection). 20:17:36 -!- tech_exorcist has joined. 20:20:44 -!- tech_exorcist has quit (Remote host closed the connection). 20:22:25 -!- tech_exorcist has joined. 20:26:51 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102174&oldid=102173 * PixelatedStarfish * (+448) /* Concurrency; Functions Part Two: Electric Boogaloo */ 20:27:35 I guess it has something to do with the Matrix bridge maybe? 20:30:48 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102175&oldid=102174 * PixelatedStarfish * (+36) /* Functions Part Two: Electric Boogaloo */ 20:36:20 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102176&oldid=102175 * PixelatedStarfish * (+32) /* Functions Part Two: Electric Boogaloo */ 20:39:21 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102177&oldid=102176 * PixelatedStarfish * (+222) /* Concurrency */ 20:41:34 Phantom_Hoover: Yes. 20:49:15 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 20:55:32 -!- tech_exorcist has quit (Ping timeout: 268 seconds). 20:57:08 -!- tech_exorcist has joined. 21:23:33 -!- tech_exorcist has quit (Remote host closed the connection). 21:24:22 -!- tech_exorcist has joined. 21:25:52 -!- tech_exorcist has quit (Remote host closed the connection). 21:53:33 -!- tromp has joined. 22:22:34 -!- SGautam has quit (Quit: Connection closed for inactivity). 22:28:30 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102178&oldid=102177 * PixelatedStarfish * (-102) /* Data Types */ 22:30:34 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102179&oldid=102178 * PixelatedStarfish * (-98) /* Functions Part Two: Electric Boogaloo */ 22:37:00 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 22:39:52 [[BunnyBell]] https://esolangs.org/w/index.php?diff=102180&oldid=102179 * PixelatedStarfish * (-68) /* Notes */ 22:58:05 -!- Sgeo has joined.