00:10:15 How to download raw git objects (the object that it is a hash of) from a remote git service over HTTP(S) (without using the git program)? 00:24:10 Question for lambda-calculus/SKI folks (including ais523 and tromp): I want to define "compiler". Suppose I say: a compiler from languages L to M is an assignment of programs in M to programs in L, such that... 00:25:00 (1) For every pair of total computable functions in L, compiling that pair to M and then composing them is equivalent to composing them in L and then compiling them. 00:26:06 (2) For every program in L which can be written as an expression of S and K combinators (i.e. all of them), the compiler sends that program to an equivalent expression in M. 00:26:28 Is (2) implied by (1)? Is (2) alone sufficient? Is there a massive gaping hole in behavior? 00:26:47 (For bonus points: Is such a compiler always invertible; does it establish a bijection between L and M?) 00:29:54 [[S3C (sssc)]] M https://esolangs.org/w/index.php?diff=99734&oldid=85693 * Boinggg * (-3) Not meant to be a header 00:31:27 Oh, I didn't define equivalence. Equivalence in both L and M is observational/extensional equivalence; the idea is that neither L nor M can tell when the compiler is substituting one equivalent term for another. 00:33:04 I read just that last part without trying to understand your definition, and now I'm imagining that someone takes two unrelated turing-complete languages, enumerates programs in each of them, writes a compiler forward and a compiler backwards, and then runs both of those an exponential number of times to Schröder-Bernstein a bijective compiler from them. of course the exponential would make it so slow 00:33:10 that you'd never run it on a real computer on real programs, but you could still make a theoretical implementation. 00:34:15 I can certainly motivate my definition; I'm working with a formalism which explains Turing-completeness in terms of partial combinatory algebras (PCAs), and a PCA can be characterized in terms of SKI combinators (for reasons I admit I don't fully grok). 00:36:09 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99735&oldid=99733 * PixelatedStarfish * (+304) /* Overloading */ 00:36:34 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99736&oldid=99735 * PixelatedStarfish * (+0) /* Returning */ 00:40:27 that said, I think you could make a somewhat more practical bijective compiler. it would still require both a forwards and backwards compiler, but instead of Schröder-Bersteining, you'd embed the original program as a comment into the translated program, recognize when there's such a comment and verify that the program is exactly the compilation of the program in the comment and return the original if 00:40:33 that's the case, plus some more extra nonsense to make it all work out 00:41:01 and by "practical" I just mean it doesn't take an exponential amount of time to run; it would still be an esoteric and mostly useless thing to actually make it strictly bijective 00:42:00 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99737&oldid=99736 * PixelatedStarfish * (+1) /* Proof by Translation to bf */ 00:42:00 Sure. I don't really *want* the bijection, but there's category-theoretic reasons to expect it to be possible/normal. 00:43:58 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99738&oldid=99737 * PixelatedStarfish * (+192) /* Identifiers */ 00:44:48 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99739&oldid=99738 * PixelatedStarfish * (+4) /* Notes */ 00:44:50 I think to make it work out, I'd need to count how many layers of correctly compiling nested comments there are (which is fast because there's overhead at each layer), and then only trust the comment if there's an odd number of them 00:46:49 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99740&oldid=99739 * PixelatedStarfish * (+80) /* Identifiers */ 00:47:13 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99741&oldid=99740 * PixelatedStarfish * (+2) /* Identifiers */ 01:05:21 [[Double]] https://esolangs.org/w/index.php?diff=99742&oldid=99727 * Lim95 * (+269) 01:24:56 [[Braingrate]] M https://esolangs.org/w/index.php?diff=99743&oldid=99731 * PythonshellDebugwindow * (+49) /* Example Programs */ Categories 01:25:23 [[Braingrate]] M https://esolangs.org/w/index.php?diff=99744&oldid=99743 * PythonshellDebugwindow * (-18) unpipe 01:37:09 -!- Hoolootwo has quit (Quit: ZNC 1.7.5+deb4 - https://znc.in). 01:37:34 -!- Hooloovoo has joined. 01:44:01 [[Special:Log/newusers]] create * Inktest * New user account 01:48:06 -!- ais523 has joined. 01:48:30 Corbin: I'm not sure whether composition is enough for 1, you might need both composition and application 01:49:13 there are languages like Underload which blur the boundaries, but I don't think you can write Underload just with compositions of S and K combinators, you need applications too (I might be wrong on this though!) 01:50:01 it also has trouble with nondeterministic languages, as "equivalence" is too vague a word for that 01:50:38 normally computer scientists use may-equivalence of halting (i.e. either both programs are capable of halting, or neither program is capable of halting), but I'm not sure of the reason for that choice 01:51:43 Ooh, non-deterministic execution's a good point. I don't know how to handle that. 02:24:21 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99745&oldid=99741 * PixelatedStarfish * (-19) /* Commands */ 02:36:28 [[Splaytime]] M https://esolangs.org/w/index.php?diff=99746&oldid=99607 * Ukeharu * (+239) /* Sample Programs */ add new hello world and infinite loop 02:43:15 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99747&oldid=99745 * PixelatedStarfish * (+139) /* Commands */ 02:43:39 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99748&oldid=99747 * PixelatedStarfish * (+7) /* Commands */ 02:46:06 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99749&oldid=99748 * PixelatedStarfish * (+18) /* Notes */ 02:47:02 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99750&oldid=99749 * PixelatedStarfish * (+0) /* FizzBuzz */ 02:47:43 [[FizzBuzz]] https://esolangs.org/w/index.php?diff=99751&oldid=99719 * PixelatedStarfish * (+0) /* BunnyBell */ 02:48:06 [[Double]] https://esolangs.org/w/index.php?diff=99752&oldid=99742 * Lim95 * (+125) 02:48:18 [[FizzBuzz]] https://esolangs.org/w/index.php?diff=99753&oldid=99751 * PixelatedStarfish * (+0) /* BunnyBell */ 02:48:32 [[Double]] https://esolangs.org/w/index.php?diff=99754&oldid=99752 * Lim95 * (-134) 02:48:50 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99755&oldid=99750 * PixelatedStarfish * (+0) /* FizzBuzz */ 02:50:03 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99756&oldid=99755 * PixelatedStarfish * (+16) /* Commands */ 02:52:55 [[Double]] https://esolangs.org/w/index.php?diff=99757&oldid=99754 * Lim95 * (+197) 03:00:04 [[Double]] https://esolangs.org/w/index.php?diff=99758&oldid=99757 * Lim95 * (+41) 03:00:23 [[Double]] https://esolangs.org/w/index.php?diff=99759&oldid=99758 * Lim95 * (+0) 03:01:09 [[User:Lim95]] https://esolangs.org/w/index.php?diff=99760&oldid=99609 * Lim95 * (+24) 03:03:07 [[Double]] https://esolangs.org/w/index.php?diff=99761&oldid=99759 * Lim95 * (+118) 03:03:14 [[Double]] https://esolangs.org/w/index.php?diff=99762&oldid=99761 * Lim95 * (-2) 03:18:51 [[Double]] https://esolangs.org/w/index.php?diff=99763&oldid=99762 * Lim95 * (+1328) 03:19:10 [[Double]] https://esolangs.org/w/index.php?diff=99764&oldid=99763 * Lim95 * (+1) 03:27:11 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99765&oldid=99756 * PixelatedStarfish * (+184) /* Commands */ 03:27:54 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99766&oldid=99765 * PixelatedStarfish * (+2) /* Commands */ 03:28:29 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99767&oldid=99766 * PixelatedStarfish * (+34) /* Notes */ 03:59:24 -!- ais523 has quit (Quit: quit). 06:37:53 I figured out how to download git objects but it sends files that I had not requested. How to download only the ones I requested and exclude all other files? 06:39:24 -!- ManDeJan has quit (Read error: Connection reset by peer). 06:40:04 -!- ManDeJan has joined. 07:10:34 -!- Bowserinator has quit (Ping timeout: 272 seconds). 07:11:18 -!- moony has quit (Ping timeout: 276 seconds). 07:11:50 -!- iovoid has quit (Ping timeout: 272 seconds). 07:29:54 [[C-INTERCAL]] M https://esolangs.org/w/index.php?diff=99768&oldid=98552 * Oshaboy * (+47) fixed hyperlink 07:36:20 -!- Sgeo_ has quit (Read error: Connection reset by peer). 07:42:01 -!- integral has quit (Read error: Connection reset by peer). 07:42:12 -!- integral has joined. 08:22:04 [[List of ideas]] https://esolangs.org/w/index.php?diff=99769&oldid=98944 * Aadenboy * (+161) /* Joke/Silly Ideas */ 08:26:15 -!- __monty__ has joined. 08:50:36 -!- iovoid has joined. 08:51:29 -!- Bowserinator has joined. 08:51:41 -!- moony has joined. 09:08:52 -!- better_sleeping[ has joined. 09:23:21 -!- better_sleeping[ has left. 09:28:05 -!- Trieste has quit (Quit: Be well!). 09:28:48 -!- Trieste has joined. 09:31:06 -!- tech_exorcist has joined. 09:42:16 -!- SGautam has joined. 10:59:12 -!- wib_jonas has joined. 10:59:29 -!- oriansj has left (ERC (IRC client for Emacs 27.1)). 11:00:29 zzo38: you might not be able to, because git usually stores multiple objects compressed together, so it will serve those together. you'll just have to accept the extra objects, or recompress everything discarding what you don't want after you downloaded everything you need 11:01:02 that said, I don't understand why you want to do this without git software. doesn't git already have a subcommand to download objects for you? 11:36:49 -!- definitelya has joined. 11:51:20 [[User:Yes]] https://esolangs.org/w/index.php?diff=99770&oldid=99721 * Yes * (+5) 11:51:49 -!- SGautam has quit (Quit: Connection closed for inactivity). 12:30:34 [[AddJump]] N https://esolangs.org/w/index.php?oldid=99771 * ChuckEsoteric08 * (+456) Created page with "{{Stub}} '''AddJump'''('''Add''' 1 and '''Jump''' to command) is an [[OISC]] by [[User:ChuckEsoteric08]] and inprised by [[FlipJump]]. ==Command== a;b; Increment variable [[Smaller]] N https://esolangs.org/w/index.php?oldid=99772 * ChuckEsoteric08 * (+405) Created page with "{{Stub}} '''Smaller''' is an OISC by [[User:ChuckEsoteric08]]. ==Command== a;b; Add value b to variable a and if result was zero back to the start o..." 12:47:16 [[Weeeeeeeeeeeeeeeeeeeeeeeeeeeeee]] https://esolangs.org/w/index.php?diff=99773&oldid=99599 * Yes * (+108) 12:49:38 [[Bitcoin]] https://esolangs.org/w/index.php?diff=99774&oldid=99498 * Yes * (+31) 12:49:43 -!- tromp has joined. 12:51:20 [[OISC]] https://esolangs.org/w/index.php?diff=99775&oldid=98280 * ChuckEsoteric08 * (+225) Added some of my languages 12:54:53 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99776&oldid=99767 * PixelatedStarfish * (+144) /* Libraries */ 13:01:01 [[Weeeeeeeeeeeeeeeeeeeeeeeeeeeeee with looping]] https://esolangs.org/w/index.php?diff=99777&oldid=99600 * Yes * (+61) 13:02:15 -!- __monty_1 has joined. 13:02:48 [[Weeeeeeeeeeeeeeeeeeeeeeeeeeeeee with looping]] https://esolangs.org/w/index.php?diff=99778&oldid=99777 * Yes * (-61) 13:04:18 -!- __monty__ has quit (Ping timeout: 264 seconds). 13:05:44 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 13:09:26 -!- tromp has joined. 13:10:36 -!- wib_jonas has quit (Quit: Client closed). 13:20:37 -!- chiselfuse has quit (Remote host closed the connection). 13:20:52 -!- chiselfuse has joined. 13:22:26 -!- wib_jonas has joined. 13:23:55 -!- chiselfuse has quit (Remote host closed the connection). 13:25:55 -!- chiselfuse has joined. 13:26:04 -!- chiselfuse has quit (Remote host closed the connection). 13:30:55 -!- chiselfuse has joined. 13:44:06 -!- tech_exorcist has quit (Quit: See you later). 13:56:31 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 13:56:40 [[Special:Log/newusers]] create * Mario0Fan * New user account 14:04:36 -!- __monty_1 has changed nick to __monty__. 14:07:43 -!- Sgeo has joined. 14:07:50 -!- wib_jonas has quit (Ping timeout: 252 seconds). 14:08:11 -!- wib_jonas has joined. 14:16:14 -!- tromp has joined. 14:23:51 -!- Trieste has quit (Ping timeout: 276 seconds). 14:30:34 -!- Trieste has joined. 14:54:34 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99779&oldid=99776 * PixelatedStarfish * (-147) /* File */ 14:59:14 [[Double]] M https://esolangs.org/w/index.php?diff=99780&oldid=99764 * PythonshellDebugwindow * (-157) Remove duplicate categories (they are already at the bottom) 14:59:17 -!- Trieste has quit (Read error: Connection reset by peer). 15:00:06 [[C-INTERCAL]] M https://esolangs.org/w/index.php?diff=99781&oldid=99768 * PythonshellDebugwindow * (-34) Wikipedia link 15:00:17 -!- Trieste has joined. 15:00:20 [[C-INTERCAL]] M https://esolangs.org/w/index.php?diff=99782&oldid=99781 * PythonshellDebugwindow * (+16) . 15:01:08 -!- tech_exorcist has joined. 15:03:25 [[Betterlang]] M https://esolangs.org/w/index.php?diff=99783&oldid=99674 * PythonshellDebugwindow * (+9) Stub 15:05:05 [[Lag Turing-completness proof]] M https://esolangs.org/w/index.php?diff=99784&oldid=99685 * PythonshellDebugwindow * (+8) Links 15:05:49 [[Lag]] M https://esolangs.org/w/index.php?diff=99785&oldid=99485 * PythonshellDebugwindow * (+25) /* External resources */ Category 15:06:44 [[Stakc]] M https://esolangs.org/w/index.php?diff=99786&oldid=99686 * PythonshellDebugwindow * (+25) /* Commands */ categories 15:08:03 [[Language list]] M https://esolangs.org/w/index.php?diff=99787&oldid=99705 * PythonshellDebugwindow * (+102) Add 15:09:30 -!- Corbin has quit (Quit: Corbin). 15:12:11 -!- Trieste has quit (Read error: Connection reset by peer). 15:12:30 -!- Trieste has joined. 15:16:13 [[Talk:The]] N https://esolangs.org/w/index.php?oldid=99788 * VilgotanL * (+161) turing completeness 15:17:39 -!- Trieste has quit (Read error: Connection reset by peer). 15:18:50 [[Talk:The]] M https://esolangs.org/w/index.php?diff=99789&oldid=99788 * VilgotanL * (+58) 15:19:39 -!- Trieste has joined. 15:39:56 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99790&oldid=99779 * PixelatedStarfish * (+362) /* Declaring Variables: The Refer Operator (&) */ 15:40:17 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99791&oldid=99790 * PixelatedStarfish * (+0) /* Casting */ 15:49:20 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99792&oldid=99791 * PixelatedStarfish * (+103) /* Commands */ 15:50:11 -!- tech_exorcist has quit (Remote host closed the connection). 15:51:36 -!- Trieste has quit (Ping timeout: 244 seconds). 15:55:34 -!- chiselfuse has quit (Read error: Connection reset by peer). 15:55:48 -!- chiselfuse has joined. 15:57:28 -!- tech_exorcist has joined. 15:59:17 [[UniCode]] M https://esolangs.org/w/index.php?diff=99793&oldid=72815 * PythonshellDebugwindow * (+43) Stub, confusion 15:59:40 [[Unicode]] M https://esolangs.org/w/index.php?diff=99794&oldid=76071 * PythonshellDebugwindow * (+34) Confusion 16:01:15 -!- wib_jonas has quit (Quit: Client closed). 16:03:21 [[***]] M https://esolangs.org/w/index.php?diff=99795&oldid=40759 * PythonshellDebugwindow * (+42) Categorise 16:15:15 [[Slander]] N https://esolangs.org/w/index.php?oldid=99796 * PixelatedStarfish * (+832) Created page with "Slander is a programming language in which you write programs in two dimensions. Programs take the form of a route that an autonomous craft must take to safely land on a plane..." 16:20:03 My opinion is that the file formats, protocols, commands, etc of fossil are much better; git is much more confusing. 16:22:24 -!- Trieste has joined. 16:24:28 but what about pijul? 16:27:54 What does "pijul" means? 16:29:19 -!- tech_exorcist has quit (Quit: See you later). 16:31:29 pijul is a version control system 16:32:59 It is not one that I have look at, so I cannot say about that one. 16:36:03 -!- Trieste has quit (Read error: Connection reset by peer). 16:36:40 [[User:Marsus16112]] https://esolangs.org/w/index.php?diff=99797&oldid=99611 * Marsus16112 * (-5) 16:38:22 -!- tech_exorcist has joined. 16:44:00 [[Slander]] https://esolangs.org/w/index.php?diff=99798&oldid=99796 * PixelatedStarfish * (+436) 16:44:14 [[Slander]] https://esolangs.org/w/index.php?diff=99799&oldid=99798 * PixelatedStarfish * (-48) /* Commands */ 16:44:28 [[Slander]] https://esolangs.org/w/index.php?diff=99800&oldid=99799 * PixelatedStarfish * (+47) 16:46:19 [[User:PixelatedStarfish]] https://esolangs.org/w/index.php?diff=99801&oldid=99437 * PixelatedStarfish * (+13) /* In Chronological Order */ 16:47:05 [[Slander]] https://esolangs.org/w/index.php?diff=99802&oldid=99800 * PixelatedStarfish * (-3) /* Commands */ 16:48:28 [[Slander]] https://esolangs.org/w/index.php?diff=99803&oldid=99802 * PixelatedStarfish * (+8) /* Commands */ 16:50:27 -!- Trieste has joined. 16:59:02 -!- Trieste has quit (Max SendQ exceeded). 17:01:26 -!- Trieste has joined. 17:07:33 -!- Thedarkb-Desktop has joined. 17:09:41 so, my copy of mindbug arrived and it has a weird giant box 17:09:45 not sure what to make of that 17:09:52 -!- chiselfuse has quit (Remote host closed the connection). 17:10:01 -!- chiselfuse has joined. 17:10:10 you need a box if you want to think outside of it 17:11:45 https://half-life.fandom.com/wiki/Headcrab <-- also a mindbug of sorts 17:15:45 [[Slander]] https://esolangs.org/w/index.php?diff=99804&oldid=99803 * PixelatedStarfish * (+146) /* Commands */ 17:16:13 [[Slander]] https://esolangs.org/w/index.php?diff=99805&oldid=99804 * PixelatedStarfish * (-12) /* Commands */ 17:16:51 [[Slander]] https://esolangs.org/w/index.php?diff=99806&oldid=99805 * PixelatedStarfish * (+8) 17:18:46 [[Slander]] https://esolangs.org/w/index.php?diff=99807&oldid=99806 * PixelatedStarfish * (+18) /* Commands */ 17:22:06 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 17:45:09 [[Slander]] https://esolangs.org/w/index.php?diff=99808&oldid=99807 * PixelatedStarfish * (+223) /* Commands */ 17:45:51 [[Slander]] https://esolangs.org/w/index.php?diff=99809&oldid=99808 * PixelatedStarfish * (+47) 17:56:08 [[Talk:+]] N https://esolangs.org/w/index.php?oldid=99810 * Otesunki * (+221) Created page with "i fail to see how it is equivalent to a push-down automaton, the proof seems to just state that + is either less or as powerful as a PDA. --~~~~" 17:56:13 [[Slander]] https://esolangs.org/w/index.php?diff=99811&oldid=99809 * PixelatedStarfish * (+15) 17:57:21 [[Slander]] https://esolangs.org/w/index.php?diff=99812&oldid=99811 * PixelatedStarfish * (-132) /* Commands */ 17:59:23 [[Slander]] https://esolangs.org/w/index.php?diff=99813&oldid=99812 * PixelatedStarfish * (-4) /* Piloting */ 18:01:16 [[Slander]] https://esolangs.org/w/index.php?diff=99814&oldid=99813 * PixelatedStarfish * (+55) /* Piloting */ 18:12:04 -!- Koen has joined. 18:19:38 so my new mobile phone has a stupid software bug. there are five sound profiles. one of them is hard-coded silent, but in the other four, you can customize the call ringtone and SMS receive notification tone to whatever audio file you want. however, they've indexed into some array wrong, so the message tone of profile k is always the same as the call tone of profile k-1. 18:20:22 and I think the message tone of profile 3 is stored somewhere that aliases some completely different memory variable, because I saw a corrupt value there. 18:20:43 so this goes without saying, ais523, if you ever make a mobile phone software, don't do this stupid mistake 18:21:28 other than this, there are lots of places where the UI is less convenient than on phones of older brands, requiring too many button presses than you should need for many functions. it seems like they didn't spend too much time testing. 18:21:44 I wonder if I should try to send them a bug report about the indexing 18:25:21 [[Slander]] https://esolangs.org/w/index.php?diff=99815&oldid=99814 * PixelatedStarfish * (+311) /* Commands */ 18:25:52 [[Slander]] https://esolangs.org/w/index.php?diff=99816&oldid=99815 * PixelatedStarfish * (-132) /* Looping */ 18:30:14 -!- tromp has joined. 18:30:21 [[List of ideas]] https://esolangs.org/w/index.php?diff=99817&oldid=99769 * Yes * (+452) /* General Ideas */ 18:31:39 [[Special:Log/newusers]] create * Cooper * New user account 18:32:00 [[List of ideas]] https://esolangs.org/w/index.php?diff=99818&oldid=99817 * Yes * (+163) /* General Ideas */ 18:33:06 [[Double]] https://esolangs.org/w/index.php?diff=99819&oldid=99780 * Lim95 * (+269) 18:33:23 [[Double]] https://esolangs.org/w/index.php?diff=99820&oldid=99819 * Lim95 * (+3) 18:33:44 [[List of ideas]] https://esolangs.org/w/index.php?diff=99821&oldid=99818 * Yes * (+31) /* General Ideas */ 18:40:12 [[Esolang:Introduce yourself]] M https://esolangs.org/w/index.php?diff=99822&oldid=99702 * Cooper * (+221) /* Introductions */ 18:42:11 [[Slander]] https://esolangs.org/w/index.php?diff=99823&oldid=99816 * PixelatedStarfish * (+41) /* Exchanging */ 19:07:00 [[Double]] https://esolangs.org/w/index.php?diff=99824&oldid=99820 * Lim95 * (+131) 19:11:37 [[Gbbprosk!]] https://esolangs.org/w/index.php?diff=99825&oldid=99624 * Someone668 * (+175) 19:24:33 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 19:41:58 -!- Everything has joined. 19:44:24 `? ant 19:44:28 Ants are great architects. They are famous for their highways. 19:44:28 `? ent 19:44:30 Ents are very useful creatures for the puzzle of writing town names in Hungary as the catenation of six or more Hungarian words. Bal-a-s-s-a-gyarmat Bal-a-ton-{s-zár-szó,{rend,szem}-e-s} Egy-ház-a-s-holló-s Fel-s-ősz-ent-már-ton Jász-ár-ok-száll-á-s Ki-s-kun-{fél-egy-ház-a,hal-a-s} Rá-basz-ent-mik-ló-s Vér-te-s-sző-lő-s. 19:44:31 `? ence 19:44:33 ence? ¯\(°​_o)/¯ 19:44:34 `? ance 19:44:36 Spelling of -ance/-ence words: advance, science, conference, experience, finance, insurance, licence, performance, reference, assistance, balance, defence, difference, distance, evidence, acceptance, appliance, audience, compliance, importance, influence, instance, intelligence, maintenance, preference, presence, sentence, sequence, substance, violence, absence, accordance, alliance, appearance, assurance, attendance, circumstance, clearance, confidence, c 19:45:08 `1 ? ance 19:45:11 1/1:Traceback (most recent call last): \ File "", line 1, in \ NameError: name 'ance' is not defined 19:45:20 huh 19:45:39 `` ? ance | fold -sw200 19:45:40 Traceback (most recent call last): \ File "", line 1, in \ NameError: name 'ance' is not defined 19:45:44 `1 \? ance 19:45:47 1/2:Spelling of -ance/-ence words: advance, science, conference, experience, finance, insurance, licence, performance, reference, assistance, balance, defence, difference, distance, evidence, acceptance, appliance, audience, compliance, importance, influence, instance, intelligence, maintenance, preference, presence, sentence, sequence, substance, violence, absence, accordance, alliance, appearance, assurance, attendance, circumstance, clearan 19:45:51 thx 19:45:53 `n 19:45:54 2/2:ce, confidence, consequence, entrance, excellence, existence, fragrance, governance, guidance, independence, offence, refinance, residence, resistance, romance. 19:45:58 hmm 19:46:06 I need descendant vs descendent 19:46:08 -!- Everything has left. 19:46:12 it's not on the list 19:46:28 -!- tromp has joined. 19:46:29 fungot, which one is the correct spelling? descendant or descendent 19:47:11 fungot? 19:50:46 isn't one a noun and the other an adjective 19:51:18 @seen fungot 19:51:18 I saw fungot leaving #esolangs 3d 15h 25m 5s ago. 19:52:30 "one a noun and the other an adjective" => that's very unlikely with an -ant/-ent or -ance/-ence pair. 19:52:33 -!- chiselfuse has quit (Remote host closed the connection). 19:54:45 well, if fungot is unavailable, I'll have to check the big Oxford dictionary on my shelf 19:56:24 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 19:56:27 heck. the dictionary confirms what you say 19:56:36 [[Double]] https://esolangs.org/w/index.php?diff=99826&oldid=99824 * Lim95 * (+79) 19:56:53 "descendant" is a noun that's the opposite of ancestor, meaning familiar relation or similar; 19:57:12 -!- chiselfuse has joined. 19:57:24 "descendent" is an adjective that I can probably forget about and just say "descending" instead 19:59:10 (or "anti-monotone" if I'm feeling fancy, though we usually reserve that when the domain and/or range is only partially ordered, not necessarily totally ordered) 20:00:09 [[Double]] https://esolangs.org/w/index.php?diff=99827&oldid=99826 * Lim95 * (+235) 20:04:45 [[Double]] https://esolangs.org/w/index.php?diff=99828&oldid=99827 * Lim95 * (-544) 20:05:05 [[Double]] https://esolangs.org/w/index.php?diff=99829&oldid=99828 * Lim95 * (+28) 20:08:35 -!- Koen has quit (Remote host closed the connection). 20:09:16 [[Double]] https://esolangs.org/w/index.php?diff=99830&oldid=99829 * Lim95 * (+0) 20:14:24 -!- tech_exorcist has quit (Quit: Disconnecting). 20:18:24 Hmm. 20:19:17 -!- fungot has joined. 20:19:24 fungot: Where were you? 20:19:25 fizzie: much /less/? ( syn+ack) 20:20:21 -!- tromp has joined. 20:22:56 hey fungot 20:22:57 b_jonas: i could write fairly brief input and output windows doesn't let you very clearly manipulate the environment. 20:26:40 does fungot send its own pings? (I suppose the bot wouldn't; is the wrapper more than just socat?) 20:26:40 int-e: i learned scheme in 2 hours? :p. ugh i need to what, eating cooked meat? might want to look into 20:27:27 (if not... this could be the usual semi-open TCP connection) 20:38:14 that reminds me, I wanted to ask something 20:40:35 If I want free open TCP echo (and possibly UDP echo) servers hosted in North America (and possibly ones hosted in Australia), where would I find them? I'd want this for when I develop software that should ideally work with real-time communication between server and client on separate continents through the internet, to test how usable it is with transatlantic latency and lag spikes, while I still have 20:40:41 the server and client on the same continent for the test, but use an echo service to simulate the variable lag. 20:41:12 I know there are more complex protocols that I could use for this, like tor, but if possible I'd like to avoid the additional complications and just use a plain echo. 20:41:42 Also if possible I don't want to tunnel my messages into ICMP pings, even though that's technically possible. 20:43:30 An open proxy would be simpler, but nobody likes to run those these days, however I think an echo service (which sends the data back in the same TCP connection or to the same UDP host-port where they came from) would be much harder to abuse. 20:46:53 This is mostly theoretical, making such software is very low priorities among my long todos. 20:52:14 [[User:Yes]] https://esolangs.org/w/index.php?diff=99831&oldid=99770 * Yes * (+71) 20:52:32 [[User:Yes]] https://esolangs.org/w/index.php?diff=99832&oldid=99831 * Yes * (+5) 20:56:37 -!- definitelya has quit (Quit: h). 21:00:03 -!- chiselfuse has quit (Write error: Connection reset by peer). 21:00:19 -!- chiselfuse has joined. 21:09:41 [[Trampolines]] N https://esolangs.org/w/index.php?oldid=99833 * Aadenboy * (+5989) Created page with "{{infobox proglang |name=Trampolines |paradigms=imperative |author=[[User:Aadenboy]] |year=[[:Category:2022|2022]] |memsys=[[:Category:Cell-based|Cell-based]] |dimensions=:C..." 21:15:23 [[Double]] https://esolangs.org/w/index.php?diff=99834&oldid=99830 * Lim95 * (+307) 21:16:37 [[Double]] https://esolangs.org/w/index.php?diff=99835&oldid=99834 * Lim95 * (+0) 21:17:11 [[Double]] https://esolangs.org/w/index.php?diff=99836&oldid=99835 * Lim95 * (+1439) 21:17:30 [[Double]] https://esolangs.org/w/index.php?diff=99837&oldid=99836 * Lim95 * (-1438) 21:17:55 [[Double]] https://esolangs.org/w/index.php?diff=99838&oldid=99837 * Lim95 * (+1429) 21:27:49 [[Trampolines]] https://esolangs.org/w/index.php?diff=99839&oldid=99833 * Aadenboy * (+36) /* Language Overview */ 21:43:12 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 21:46:35 -!- __monty__ has quit (Quit: leaving). 22:10:55 [[Double]] https://esolangs.org/w/index.php?diff=99840&oldid=99838 * Lim95 * (+84) 22:20:55 [[Slander]] https://esolangs.org/w/index.php?diff=99841&oldid=99823 * PixelatedStarfish * (-39) /* Commands */ 22:34:21 [[Slander]] https://esolangs.org/w/index.php?diff=99842&oldid=99841 * PixelatedStarfish * (-41) /* Exchanging */ 22:38:59 [[Slander]] https://esolangs.org/w/index.php?diff=99843&oldid=99842 * PixelatedStarfish * (-56) /* Piloting */ 22:50:26 [[Slander]] https://esolangs.org/w/index.php?diff=99844&oldid=99843 * PixelatedStarfish * (+154) /* Piloting */ 22:52:30 -!- Lord_of_Life has quit (Ping timeout: 240 seconds). 22:56:19 -!- Lord_of_Life has joined. 22:58:13 [[Slander]] https://esolangs.org/w/index.php?diff=99845&oldid=99844 * PixelatedStarfish * (-7) /* Commands */ 23:00:27 [[Slander]] https://esolangs.org/w/index.php?diff=99846&oldid=99845 * PixelatedStarfish * (-61) /* Piloting */ 23:02:53 [[Slander]] https://esolangs.org/w/index.php?diff=99847&oldid=99846 * PixelatedStarfish * (+148) /* Exchanging */ 23:05:34 [[Slander]] https://esolangs.org/w/index.php?diff=99848&oldid=99847 * PixelatedStarfish * (+72) /* Piloting */ 23:06:29 [[Slander]] https://esolangs.org/w/index.php?diff=99849&oldid=99848 * PixelatedStarfish * (-70) /* Exchanging */ 23:07:22 [[Slander]] https://esolangs.org/w/index.php?diff=99850&oldid=99849 * PixelatedStarfish * (+29) /* Exchanging */ 23:08:10 [[Slander]] https://esolangs.org/w/index.php?diff=99851&oldid=99850 * PixelatedStarfish * (+20) /* Commands */ 23:09:33 [[Slander]] https://esolangs.org/w/index.php?diff=99852&oldid=99851 * PixelatedStarfish * (+28) /* Commands */ 23:10:55 [[Slander]] https://esolangs.org/w/index.php?diff=99853&oldid=99852 * PixelatedStarfish * (-24) /* Commands */ 23:11:34 [[Slander]] https://esolangs.org/w/index.php?diff=99854&oldid=99853 * PixelatedStarfish * (+27) /* Piloting */ 23:14:53 [[Slander]] https://esolangs.org/w/index.php?diff=99855&oldid=99854 * PixelatedStarfish * (+6) /* Commands */ 23:30:06 [[BRUH]] https://esolangs.org/w/index.php?diff=99856&oldid=95796 * Kaveh Yousefi * (-62) Rectified the Adder example which, owing to a superfluous dextral pointer translation, hitherto would attempt to move beyond the rightmost accumulator. 23:31:23 [[BRUH]] https://esolangs.org/w/index.php?diff=99857&oldid=99856 * Kaveh Yousefi * (+168) Added a cat program as a further example. 23:32:42 [[BRUH]] https://esolangs.org/w/index.php?diff=99858&oldid=99857 * Kaveh Yousefi * (+4) Rectified the description of the URU command which, appropriated from brainfuck, should jump back if the accumulator is not zero. 23:32:48 -!- Lord_of_Life has quit (Ping timeout: 276 seconds). 23:33:25 [[BRUH]] https://esolangs.org/w/index.php?diff=99859&oldid=99858 * Kaveh Yousefi * (+158) Added a hyperlink to my implementation of the BRUH programming language on GitHub and changed the category tag Unimplemented to Implemented. 23:34:05 -!- Lord_of_Life has joined. 23:36:30 -!- perlbot has quit (Ping timeout: 240 seconds). 23:37:21 -!- simcop2387 has quit (Ping timeout: 276 seconds). 23:44:16 -!- joukahainen has joined. 23:46:09 -!- joukahainen has quit (Client Quit). 23:46:43 -!- t3 has joined. 23:58:49 -!- perlbot has joined. 23:59:21 -!- simcop2387 has joined.