00:09:25 [[Special:Log/newusers]] create * Helo211 * New user account 00:14:33 [[Esolang:Introduce yourself]] M https://esolangs.org/w/index.php?diff=93675&oldid=93659 * Helo211 * (+148) 00:42:31 -!- SGautam has joined. 01:02:07 [[GER]] N https://esolangs.org/w/index.php?oldid=93676 * Helo211 * (+410) Created page with "Ger only stores one value at a time of which it is a string. # Instructions Ger has 4 instructions: ger: Outputs the next line of code GER: gets input and stores it Ger: Out..." 01:02:33 [[GER]] M https://esolangs.org/w/index.php?diff=93677&oldid=93676 * Helo211 * (-1) 01:02:48 [[GER]] https://esolangs.org/w/index.php?diff=93678&oldid=93677 * Helo211 * (-2) 01:04:17 [[GER]] https://esolangs.org/w/index.php?diff=93679&oldid=93678 * Helo211 * (-25) 01:05:50 [[GER]] M https://esolangs.org/w/index.php?diff=93680&oldid=93679 * Helo211 * (+19) add header 01:06:13 [[GER]] https://esolangs.org/w/index.php?diff=93681&oldid=93680 * Helo211 * (+3) 01:06:36 [[GER]] https://esolangs.org/w/index.php?diff=93682&oldid=93681 * Helo211 * (-8) nvm 01:40:02 fungot, how many legs do Star Wars quadducks have? 01:40:02 b_jonas: what do you use? :) ( i.e., what stuff got loaded? then, welcome 01:50:33 [[GER]] https://esolangs.org/w/index.php?diff=93683&oldid=93682 * Helo211 * (+35) 01:51:16 [[GER]] M https://esolangs.org/w/index.php?diff=93684&oldid=93683 * Helo211 * (+36) 01:53:41 [[GER]] https://esolangs.org/w/index.php?diff=93685&oldid=93684 * Helo211 * (-6) 01:56:19 [[GER]] https://esolangs.org/w/index.php?diff=93686&oldid=93685 * Helo211 * (+33) 01:57:37 [[GER]] https://esolangs.org/w/index.php?diff=93687&oldid=93686 * Helo211 * (+14) 02:02:23 [[Special:Log/move]] move * Helo211 * moved [[GER]] to [[Ger]]: misspelled 02:22:16 -!- razetime has joined. 02:47:06 [[Ger]] https://esolangs.org/w/index.php?diff=93690&oldid=93688 * Helo211 * (+25) 02:52:48 Features I want in a spreadsheet program include: You can write extensions in C, and that the file consists of pages where each page has row zones and column zones, each zone containing a row or column of cells, and you can assign formulas/formats to an entire row or column within a zone if wanted, and both numbered and named references, and does not use HTML and Unicode. 02:53:14 Is there such a FOSS program for Linux? I have not been able to find any; I suppose I will have to write my own if there isn't any? 03:00:49 I'm afraid that sounds so specific that if you want it you'll have to write it yourself 03:02:21 don't take that the wrong way, the same is true for some software that I want 03:07:47 Some other programs support extensions in Python, Ruby, JavaScript, etc, but not in C. I don't know if others have zones like I described, either. (What did you want?) 03:16:18 zzo38: well, one of the things I'd like is a text editor. I want it to do exactly what I want and not much more. one difficult part is that I mustn't overcomplicate it, because then my mistakes would cause unpredictable bugs. however, 03:16:43 I do want a full undo history, and that does require some amount of complications. 03:17:59 also one feature that I'd like is a built-in table mode which can lay out a tab-separated csv with the columns aligned. 03:31:50 -!- SGautam has quit (Quit: Connection closed for inactivity). 03:47:44 -!- razetime has quit (Read error: Connection reset by peer). 03:58:11 Use of SQLite will probably solve many things (although it uses Unicode, but the functions can be overridden if I need non-ASCII text, anyways), such as the file format, extension loading, and expression parser. However, there are still some complications in such a case. 04:00:14 -!- wierzbowski has joined. 04:11:28 -!- razetime has joined. 04:41:15 -!- wierzbowski has quit (Ping timeout: 252 seconds). 04:58:09 [[Rulesystem]] M https://esolangs.org/w/index.php?diff=93691&oldid=93674 * Dorcelessness * (-3) Example Programs -> Code Examples 05:11:54 -!- wierzbowski has joined. 06:39:15 -!- Sgeo has quit (Read error: Connection reset by peer). 06:39:32 -!- Sgeo has joined. 06:43:44 -!- Sgeo_ has joined. 06:46:39 -!- Sgeo has quit (Ping timeout: 252 seconds). 07:23:39 -!- dyeplexer has joined. 07:38:59 -!- definitelya has joined. 07:39:11 [[FunctionsFTW/Hello world]] N https://esolangs.org/w/index.php?oldid=93692 * NutronStar45 * (+24) Created page with " print("Hello, world!");" 07:42:56 [[FunctionsFTW/Cat]] N https://esolangs.org/w/index.php?oldid=93693 * NutronStar45 * (+16) Created page with " print(input());" 07:43:30 [[FunctionsFTW/Truth-machine]] N https://esolangs.org/w/index.php?oldid=93694 * NutronStar45 * (+569) Created page with " setStr("input", input()); "Get input"; if(eqStr(getStr("input"), "0")), () { "If input is 0"; print("0"); "Print 0"; }, () {..." 07:44:21 [[FunctionsFTW/FizzBizz]] N https://esolangs.org/w/index.php?oldid=93695 * NutronStar45 * (+1312) Created page with " setNum("i", 1); "Initialize i"; label("l"); if(not(gt(getNum("i"), 100)), () { "If i isn't greater than 100"; if(eqNum(rem(getNum("i..." 07:44:55 [[Special:Log/move]] move * NutronStar45 * moved [[FunctionsFTW/FizzBizz]] to [[FunctionsFTW/FizzBuzz]] 07:45:20 [[FunctionsFTW/FizzBizz]] M https://esolangs.org/w/index.php?diff=93698&oldid=93697 * NutronStar45 * (-25) Removed redirect to [[FunctionsFTW/FizzBuzz]] 07:56:03 [[FunctionsFTW/FizzBizz]] M https://esolangs.org/w/index.php?diff=93699&oldid=93698 * NutronStar45 * (+21) 07:57:26 [[FunctionsFTW/Fibonacci]] N https://esolangs.org/w/index.php?oldid=93700 * NutronStar45 * (+733) Created page with " setNum("stl", 1); "Set stl(second to last) to 1"; setNum("last", 0); "Set last to 0"; label("..." 08:00:54 [[FunctionsFTW/Recursive Fibonacci]] N https://esolangs.org/w/index.php?oldid=93701 * NutronStar45 * (+895) Created page with "Incredibly long.
 def("fib", (num index) {   if(eqNum(getNum("index"), 0), () {     "F(0)";     returnNum(0);   }, () {   if(eqNum(getNum("index"), 0), (..."
08:01:19 -!- wierzbowski has quit (Ping timeout: 256 seconds).
08:03:18  [[FunctionsFTW/Factorial]] N https://esolangs.org/w/index.php?oldid=93702 * NutronStar45 * (+844) Created page with " setNum("input", strtoNum(input()));                           "Get number";  setNum("result", 1);                                          "The result";    label("l");  if(gt..."
08:04:27  [[FunctionsFTW/99 bottles of beer]] N https://esolangs.org/w/index.php?oldid=93703 * NutronStar45 * (+2083) Created page with " setNum("bottles", 99);                                   "Set bottles to 99";  setStr("form", " bottles");                              "Plural";    label("l");  if(gt(getNum..."
08:05:24  [[FunctionsFTW/Functions]] N https://esolangs.org/w/index.php?oldid=93704 * NutronStar45 * (+1644) Created page with " add(num n1, num n2) => num  and(bool b1, bool b2) => bool  boolInObj(obj object, str key) => bool  boolToNum(bool val) => num  call(str funcName, obj params)  callBool(str fu..."
08:05:58  [[FunctionsFTW/Functions]] M https://esolangs.org/w/index.php?diff=93705&oldid=93704 * NutronStar45 * (+38) 
08:07:42  [[FunctionsFTW]] N https://esolangs.org/w/index.php?oldid=93706 * NutronStar45 * (+18825) Created page with "{{infobox proglang |name=FunctionsFTW |paradigms=procedural, imperative |author=[[User:NutronStar45]] |year=[[:Category:2022|2022]] |typesys=strict |memsys=variable-based |dim..."
08:09:58  [[Esolang:Help]] M https://esolangs.org/w/index.php?diff=93707&oldid=62560 * NutronStar45 * (+0) 
08:12:20  [[FunctionsFTW]] M https://esolangs.org/w/index.php?diff=93708&oldid=93706 * NutronStar45 * (+0) 
08:22:31  [[Language list]] M https://esolangs.org/w/index.php?diff=93709&oldid=93671 * NutronStar45 * (+19) 
08:38:32  [[Joke language list]] M https://esolangs.org/w/index.php?diff=93710&oldid=93649 * NutronStar45 * (+88) 
08:59:07 -!- razetime has quit (Ping timeout: 256 seconds).
08:59:44 -!- razetime has joined.
09:11:41 -!- wierzbowski has joined.
09:30:47  [[LAIN]]  https://esolangs.org/w/index.php?diff=93711&oldid=93673 * Valtsu0 * (+129) 
09:50:24  [[LAIN]]  https://esolangs.org/w/index.php?diff=93712&oldid=93711 * Valtsu0 * (+236) /* Goto */
10:09:16  [[User:Ultlang]] N https://esolangs.org/w/index.php?oldid=93713 * Ultlang * (+7) Created page with "yeah"
10:13:49  [[ULSAL]] N https://esolangs.org/w/index.php?oldid=93714 * Ultlang * (+2273) article "created"
10:14:42  [[ULSAL]]  https://esolangs.org/w/index.php?diff=93715&oldid=93714 * Ultlang * (+3) 
10:15:43  [[ULSAL]]  https://esolangs.org/w/index.php?diff=93716&oldid=93715 * Ultlang * (+9) 
10:25:19  [[Ger]] M https://esolangs.org/w/index.php?diff=93717&oldid=93690 * Helo211 * (+0) 
10:36:12 -!- Sgeo_ has quit (Read error: Connection reset by peer).
10:59:59 -!- definitelya has quit (Remote host closed the connection).
11:02:11 -!- definitelya has joined.
11:24:14 -!- definitelya has quit (Remote host closed the connection).
11:25:28 -!- definitelya has joined.
11:30:54 -!- definitelya has quit (Remote host closed the connection).
11:31:38 -!- definitelya has joined.
12:01:43 -!- __monty__ has joined.
12:15:40  [[Talk:Ger]] N https://esolangs.org/w/index.php?oldid=93718 * Helo211 * (+30) Created page with "Ger talk page discussion thing"
12:30:10 -!- razetime has quit (Ping timeout: 272 seconds).
12:37:07  [[LAIN]]  https://esolangs.org/w/index.php?diff=93719&oldid=93712 * Valtsu0 * (+73) /* Variables */
12:43:48 -!- definitelya_ has joined.
12:46:38 -!- definitelya has quit (Ping timeout: 272 seconds).
13:02:32  [[Special:Log/newusers]] create  * ZebraFinch *  New user account
13:05:08  [[Esolang:Introduce yourself]]  https://esolangs.org/w/index.php?diff=93720&oldid=93675 * ZebraFinch * (+112) /* Introductions */
13:06:25  [[Ger]] M https://esolangs.org/w/index.php?diff=93721&oldid=93717 * Helo211 * (-25) turn into stack based
13:09:33  [[Ger]] M https://esolangs.org/w/index.php?diff=93722&oldid=93721 * Helo211 * (+21) 
13:25:19 -!- definitelya__ has joined.
13:26:22 -!- __monty__ has quit (Quit: leaving).
13:28:09 -!- definitelya_ has quit (Ping timeout: 252 seconds).
13:28:24  [[Ger]] M https://esolangs.org/w/index.php?diff=93723&oldid=93722 * PythonshellDebugwindow * (+48) Add categories
13:28:25 -!- razetime has joined.
13:29:02  [[Language list]] M https://esolangs.org/w/index.php?diff=93724&oldid=93709 * PythonshellDebugwindow * (+10) /* G */ add
13:30:05 -!- definitelya__ has quit (Remote host closed the connection).
13:30:17 -!- definitelya__ has joined.
13:30:37  [[GetWhen]] M https://esolangs.org/w/index.php?diff=93725&oldid=65728 * PythonshellDebugwindow * (+63) Categories
13:30:53  [[GetWhen]] M https://esolangs.org/w/index.php?diff=93726&oldid=93725 * PythonshellDebugwindow * (+2) .
14:32:45  [[Ger]] M https://esolangs.org/w/index.php?diff=93727&oldid=93723 * Helo211 * (+18) 
14:34:01  [[Ger]]  https://esolangs.org/w/index.php?diff=93728&oldid=93727 * Helo211 * (+21) 
14:37:57  [[LAIN]] M https://esolangs.org/w/index.php?diff=93729&oldid=93719 * Valtsu0 * (+29) /* External resources */
15:04:00 -!- __monty__ has joined.
15:09:55 -!- fowl has quit (Quit: cya pals).
15:13:17 -!- __monty__ has quit (Quit: leaving).
15:13:17 -!- razetime has quit (Ping timeout: 240 seconds).
15:15:18 -!- __monty__ has joined.
15:17:58 -!- fowl has joined.
15:22:03 -!- razetime has joined.
15:43:55 -!- Everything has joined.
15:47:12 -!- wierzbowski has quit (Ping timeout: 250 seconds).
16:31:04 -!- b_jonas has set topic: Welcome to the definitive cult of esoteric programming language design, dry-cleaning, and DNA modification! | https://esolangs.org | logs: https://logs.esolangs.org/.
16:33:42  [[Ger]]  https://esolangs.org/w/index.php?diff=93730&oldid=93728 * Helo211 * (+62) 
16:37:54  [[Xjansk]]  https://esolangs.org/w/index.php?diff=93731&oldid=93595 * DanielE * (-6) /* Truth machine */
17:01:41  fungot, why does this channel have so few on-top conversations these days, do you contain chemicals known by the state of California to cause cancer or other birth defects, and do you even lift?
17:01:42  b_jonas: lovely typo :) that's another reason i didn't think they were made for normal programming," to make a fn that takes arbitrary args and that always puts the output in your buffer? or is it
17:02:06 -!- razetime has quit (Ping timeout: 252 seconds).
17:03:43  fungot: We get it, you vape Prop 65 chemicals.
17:03:43  Corbin: aww josh that's not true
17:05:47  fungot: be careful, even oxygen and nitrogen and carbon dioxide count these days. I'm not sure there's even any chemical not affected. unless maybe it's ones that kill you instantly.
17:05:47  b_jonas: guess you really are going to heaven for you because of your talk somewhere?: ( define ( fnord conn. fnord)
17:11:51  fungot, make that fn put its output in my buffer. uwu
17:11:51  definitelya__: there is more fragmentation between scheme systems, unfortunately)
17:12:09  sad
18:45:18 -!- dyeplexer has quit (Ping timeout: 250 seconds).
18:51:45  [[ULSAL]]  https://esolangs.org/w/index.php?diff=93732&oldid=93716 * Ultlang * (+446) /* commands */
18:59:05  [[ULSAL]]  https://esolangs.org/w/index.php?diff=93733&oldid=93732 * Ultlang * (+0) /* commands */
18:59:56 -!- Sgeo has joined.
19:31:07  [[ULSAL]]  https://esolangs.org/w/index.php?diff=93734&oldid=93733 * Ultlang * (+208) 
19:37:26 -!- Everything has quit (Quit: leaving).
19:52:05  [[Rockstar]] M https://esolangs.org/w/index.php?diff=93735&oldid=90450 * PythonshellDebugwindow * (+23) /* Media Coverage */ category
19:54:19  [[ULSAL]]  https://esolangs.org/w/index.php?diff=93736&oldid=93734 * Ultlang * (+561) /* commands */
19:59:32 -!- Lord_of_Life_ has joined.
20:00:12 -!- Lord_of_Life has quit (Ping timeout: 240 seconds).
20:00:48 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
20:06:24  [[ULSAL]]  https://esolangs.org/w/index.php?diff=93737&oldid=93736 * Ultlang * (+101) /* commands */
20:08:59  [[ULSAL]]  https://esolangs.org/w/index.php?diff=93738&oldid=93737 * Ultlang * (+96) /* commands */
20:35:44 -!- Cale has quit (Remote host closed the connection).
20:37:29 -!- Cale has joined.
21:46:11 -!- definitelya__ has quit (Quit: h).
22:17:13  `pbflist
22:17:16  pbflist: shachaf Sgeo quintopia ion b_jonas Cale
22:47:32  Looking at the list of shortcomings in the Wikipedia article about spreadsheets, it seems that my idea of zoned spreadsheets avoids some of these problems. For example, you can spread a formula across an entire zone, and the numbers of rows/columns can easily be changed, without having to adjust the rest of the file to compensate.
23:36:06  [[Special:Log/newusers]] create  * Trashoflevillage *  New user account
23:41:08 -!- __monty__ has quit (Quit: leaving).
23:43:05  [[Esolang:Introduce yourself]]  https://esolangs.org/w/index.php?diff=93739&oldid=93720 * Trashoflevillage * (+224) /* Introductions */
23:58:35  [[Tamerlane]]  https://esolangs.org/w/index.php?diff=93740&oldid=13315 * Squidmanescape * (+13) /* External resources */