< 1523146532 330721 :sleffy!~sleffy@c-24-7-67-0.hsd1.ca.comcast.net QUIT :Ping timeout: 265 seconds < 1523146554 65014 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Remote host closed the connection < 1523147986 322735 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1523150336 128223 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523150517 37859 :xkapastel!uid17782@gateway/web/irccloud.com/x-xuagkgfzponqhxmm QUIT :Quit: Connection closed for inactivity < 1523150626 190478 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 264 seconds < 1523152281 435106 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523152569 203829 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 264 seconds < 1523152885 978208 :augur_!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1523153089 335259 :augur!~augur@45.34.140.45 QUIT :Ping timeout: 256 seconds < 1523154946 479816 :oerjan!oerjan@hagbart.nvg.ntnu.no JOIN :#esoteric < 1523155885 823384 :Elronnd!elronnd@slashem.me JOIN :#esoteric > 1523156021 965743 PRIVMSG #esoteric :14[[07User:Elronnd/brainfcuk14]]4 10 02https://esolangs.org/w/index.php?diff=54737&oldid=53113 5* 03Elronnd 5* (+664) 10Clarify functions < 1523156157 556452 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :I implemented a rotation by three shears, but it doesn't quite work so well (it is almost good, though). It does reverse properly though. < 1523156797 386172 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523157088 361237 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 265 seconds < 1523157348 725438 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :If you add a border around it to ensure the rotated picture will fit, then a command such as ff-rotate X | ff-rotate -X for some angle X degrees will result in the same original except that the corner might be wrong in some cases (although this corner is part of the border and not part of the original picture anyways) < 1523157813 756129 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`? grace period < 1523157814 758481 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :The grace period was invented by Taneb to give him more time to invent the Oxford comma. < 1523157829 735044 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :there are indeed some edits missing. < 1523157846 201735 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`botsnack < 1523157846 938668 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​>:-D < 1523159282 533131 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :Hero Mesh doesn't have types of values; everything is a unsigned 32-bit integer (although many attributes are limited to 16-bits). I am doing Free Hero Mesh differently; each value stored in a variable or data stack includes the type (and whether a number is signed or unsigned depends on the context; there are separate instructions for signed arithmetic and for unsigned arithmetic). This avoids segfaults and many other problems. < 1523159289 986981 :variable!~variable@freebsd/developer/variable PRIVMSG #esoteric :\o/ < 1523159324 21713 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :I thought to use the following internal representation in Free Hero Mesh for a value: typedef struct { union { Sint32 s; Uint32 u; }; Uint32 t; } Value; < 1523159509 274119 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :If the value is a pointer to an object, then "u" is the index number of the object and "t" is the generation number (which is always at least 16). This way it won't segfault, and if an object is destroyed and the same index number is reused for a new object, it will be able to tell that it is invalid because the generation number doesn't match. < 1523159512 970632 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :Do you think this is good? < 1523159637 213467 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :(The types are: number, class, message, sound, string, object.) < 1523159986 15819 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :(Directions and key codes are just numbers.) < 1523160732 703102 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523160987 698169 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 240 seconds < 1523162268 894856 :hakatashi1!~hakatashi@104.131.49.125 QUIT :Read error: Connection reset by peer < 1523162273 438319 :hakatashi!~hakatashi@104.131.49.125 JOIN :#esoteric < 1523162521 351425 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523162803 866319 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :fizzie: unmute me from ##c < 1523162813 330470 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 256 seconds < 1523163312 796306 :hakatashi!~hakatashi@104.131.49.125 QUIT :Remote host closed the connection < 1523163324 202457 :hakatashi!~hakatashi@104.131.49.125 JOIN :#esoteric < 1523163842 224020 :zzo38!~zzo38@24-207-13-153.eastlink.ca PRIVMSG #esoteric :Berusky I could be ported to Free Hero Mesh probably < 1523165410 525971 :augur_!~augur@noisebridge130.static.monkeybrains.net QUIT :Remote host closed the connection < 1523165444 625225 :augur!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1523166329 799800 :Naergon!~Naergon@unaffiliated/naergon JOIN :#esoteric < 1523166646 428359 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523166905 403720 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 240 seconds < 1523168343 829405 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`ysaclist 74 < 1523168344 383216 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :ysaclist 74: boily shachaf < 1523168609 341195 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 JOIN :#esoteric < 1523168679 278631 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :`wisdom < 1523168679 915630 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/hackenv/bin/wisdom: line 1: warning: command substitution: ignored null byte in input \ wob_jonas//wob_jonas is b_jonas in disguise, so that he can do magic tricks. < 1523168694 175431 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :`wisdom < 1523168694 883037 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/hackenv/bin/wisdom: line 1: warning: command substitution: ignored null byte in input \ montreal//Montréal is a city in Canada that somehow is obsessed with Vietnamese cuisine. < 1523168727 84865 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Uh oh. < 1523168727 539922 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :fizzie: nice < 1523168732 993401 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`cat bin/wisdom < 1523168733 440210 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :f=$(find wisdom -ipath "wisdom/*$1*" -type f -print0 | shuf --random-source=/dev/urandom -z -n1); if [ -n "$f" ]; then echo -n "${f#wisdom/}//"; cat "$f"; else echo "That's not wise."; fi | rnooodl < 1523168768 173482 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523168881 230917 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` env | egrep esoteric < 1523168882 28219 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :No output. < 1523169062 161489 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 260 seconds < 1523170282 290333 :augur!~augur@noisebridge130.static.monkeybrains.net QUIT :Ping timeout: 264 seconds < 1523170498 64909 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` echo $SHELL < 1523170498 602413 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/bin/sh < 1523170515 628413 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` cat -v /bin/sh < 1523170516 217217 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​^?ELF^B^A^A^@^@^@^@^@^@^@^@^@^C^@>^@^A^@^@^@M- 7^@^@^@^@^@^@@^@^@^@^@^@^@^@^XM-C^A^@^@^@^@^@^@^@^@^@@^@8^@ ^@@^@^[^@^Z^@^F^@^@^@^E^@^@^@@^@^@^@^@^@^@^@@^@^@^@^@^@^@^@@^@^@^@^@^@^@^@M-x^A^@^@^@^@^@^@M-x^A^@^@^@^@^@^@^H^@^@^@^@^@^@^@^C^@^@^@^D^@^@^@8^B^@^@^@^@^@^@8^B^@^@^@^@^@^@8^B^@^@^@^@^@^@^\^@^@^@^@^@^@^@^\^@^@^@^@^@^@^@^A^@^@^@^@^@^@^@^A^@^@^ < 1523170519 636912 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` echo $BASH_VERSIN < 1523170520 207956 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :No output. < 1523170520 997347 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hum < 1523170521 775048 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` echo $BASH_VERSION < 1523170522 394525 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :4.4.12(1)-release < 1523170535 461093 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :wob_jonas: the question is whether it _is_ bash < 1523170543 719868 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :that is running wisdom < 1523170560 290691 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :the original HackEgo has dash as default shell < 1523170563 957890 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :oerjan: oh, I don't know < 1523170587 799352 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` bash bin/wisom < 1523170588 430307 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bash: bin/wisom: No such file or directory < 1523170590 910569 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` bash bin/wisdom < 1523170591 763760 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/wisdom: line 1: warning: command substitution: ignored null byte in input \ warning//Warnings indicate when you are doing something dangerous, like using operator precedence. < 1523170592 376460 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm... < 1523170597 404714 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` dash bin/wisdom < 1523170597 471077 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` wisdom < 1523170598 491490 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​prography//Prography is the art of turning computational algorithms into something totally incomprehensible to anyone whose brain isn't made of silicon and arsenic. < 1523170598 711164 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/hackenv/bin/wisdom: line 1: warning: command substitution: ignored null byte in input \ oasys//You are next to an oasis, with high dunes of sand surrounding it. You are likely to be eaten by a camel. < 1523170598 804753 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :you could test by making a script similar to wisdom, and make it print $BASH_VESRION or try to use some bash-specific syntax < 1523170628 192583 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm well shachaf's dash test didn't have the bug < 1523170660 156170 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :it could also be bash in posix mod < 1523170683 510220 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` /bin/ls -dlF /bin/sh < 1523170684 82816 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :lrwxrwxrwx 1 0 0 4 Jan 24 2017 /bin/sh -> dash* < 1523170689 826647 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ah. < 1523170713 898932 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` dpkg -S /bin/dash < 1523170714 616193 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :dpkg-query: error: failed to open package info file '/var/lib/dpkg/status' for reading: No such file or directory < 1523170717 128227 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ok so it's bash settings < 1523170738 854544 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :you could try to add a shebang line to wisdom to make it run with bash < 1523170758 287817 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :and in bash mode < 1523170765 810531 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :does the shebang line affect that these days? < 1523170818 161257 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :only indirectly < 1523170917 131141 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523171000 429733 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :But most of the scripts in bin/ are missing that line. < 1523171014 313301 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :They ought to have it but we've been making one-liners with bin/mk for a long time < 1523171025 541577 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :dunno, I'm quite sure I added them to all the scripts I made, or most of them at least < 1523171037 771155 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :some I made by copying some list template < 1523171043 799882 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :but for the rest, I added the shebang < 1523171045 727562 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I know, but our tools are inferior. < 1523171056 373063 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` cat bin/\`\`\` < 1523171056 974078 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :cat: 'bin/```': No such file or directory < 1523171058 760631 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` cat bin/\`\` < 1523171059 360106 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​#!/bin/sh \ export LANG=C; exec bash -O extglob -c "$@" | rnooooooodl < 1523171063 94550 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` cat bin/\` < 1523171063 679150 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​#!/bin/bash \ cmd="${1-quote}" \ TIMEFORMAT="real: %lR, user: %lU, sys: %lS" \ shopt -s extglob globstar \ eval -- "$cmd" | rnooooodl < 1523171084 845498 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` cat bin/rnooodl < 1523171085 617605 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :perl -pe 's/([Nn])ooodl/"$1@{[o x(3+rand 7)]}dl"/ge' < 1523171118 72829 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` cat bin/\? < 1523171118 898715 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​#!/bin/bash \ topic=$(echo "$@" | lowercase | sed "s/noo\+dl/nooodl/;s/ *$//") \ topic1=$(echo '`'"$topic" | sed 's/^`\(`\|$\)//') \ topic2=$(echo "$topic" | sed "s/s$//") \ cd wisdom \ if [ \( "_$topic2"_ = "_ngevd"_ \) -a \( -e ngevd \) ]; \ then cat /dev/urandom; \ elif [ -e "$topic" ]; \ then cat "$topic"; \ elif [ -e "$topic < 1523171124 438432 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` cat bin/forget < 1523171125 51226 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​#!/bin/sh \ for n; do if [ lethe = "$n" ]; then rm -f "wisdom/$n"; else rm-p "wisdom/$n"; fi && echo "Forget what?"; done < 1523171126 342817 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` cat bin/learn < 1523171126 978051 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​#!/bin/bash \ topic=$(echo "$1" | lowercase | sed 's/^\(an\?\|the\) //;s/s\?[:;,.!?]\? .*//') \ [ -e "wisdom/$topic" ] && verb="Relearned" || verb="Learned" \ echo "$1" >"$(echo-p "wisdom/$topic")" \ echo "$verb '$topic': $1" < 1523171136 329660 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :most of them do have a shebang line < 1523171137 786971 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :``` wisdom < 1523171138 513120 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/hackenv/bin/wisdom: line 1: warning: command substitution: ignored null byte in input \ taneb//Taneb is not elliott, no matter whom you ask. He also isn't a rabbi although has pretended in the past. He has at least two backup keyboards with dodgy SHIFT KEys, cube root of nine genders, one of which is a Czech woman, and above average, not too < 1523171148 239941 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` cat bin/quote < 1523171149 35240 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​#!/bin/sh \ allquotes | if [ "$1" ]; then \ if expr "$1" + 0 >/dev/null 2>&1; then \ sed "$1q;d" \ else \ grep -P -i -- "$1" \ fi \ else shuf --random-source=/dev/urandom -n 1; fi < 1523171150 497126 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` doag | grep mkx | wc -l < 1523171153 843731 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :312 < 1523171164 268984 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :That's a lot of scripts with no #! < 1523171179 846403 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :are you sure? < 1523171188 94430 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I mean, that has a lot of duplicates. < 1523171195 330920 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` doag | egrep 'mkx.*#!' < 1523171198 415321 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :10487:2017-03-22 mkx bin/rienvenido//#!/bin/shbienvenido "$@" | rainwords \ 10443:2017-03-19 mkx bin/lowercase2b//#!/bin/bash\\ntr A-Z\xc3\x98 a-z\xc3\xb8 \ 10397:2017-03-11 mkx bin/lowercase2//#!/bin/bash\\ntr A-Z a-z | sed \'y/\xc3\x98A\xcc\x8a\xc3\x86\xc5\x92\xc3\x9e\xc3\x90\xc3\x84\xc3\x9 < 1523171204 962051 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :^ < 1523171218 126473 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 264 seconds < 1523171234 899152 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`sled bin/wisdom//1i#!/bin/sh < 1523171236 475351 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/wisdom//#!/bin/sh \ f=$(find wisdom -ipath "wisdom/*$1*" -type f -print0 | shuf --random-source=/dev/urandom -z -n1); if [ -n "$f" ]; then echo -n "${f#wisdom/}//"; cat "$f"; else echo "That's not wise."; fi | rnooodl < 1523171239 993196 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`cat bin/mk < 1523171240 491166 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​[[ "$1" == ?*//* ]] || { echo usage: "mk[x]" file//contents >&2; exit 1; }; key="${1%%//*}"; value="${1#*//}"; echo "$value" > "$(echo-p "$key")" && echo "$key" < 1523171241 912312 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`wisdom < 1523171242 581787 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​infidel//An infidel is someone who doesn't support the great former leader. Socialismo o muerte! < 1523171262 774934 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`cat bin/rienvenido < 1523171263 261976 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :cat: bin/rienvenido: No such file or directory < 1523171286 32433 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :*bien < 1523171295 983491 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :or wait < 1523171296 291535 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I'm trying to figure out how 10487 worked < 1523171309 763323 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :As far as I can tell none of those entries worked. < 1523171327 62883 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :let me see < 1523171337 166539 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` hg diff -c 10487 < 1523171338 203474 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :diff -r 7b181cf7eab3 -r 87c81864b834 bin/rienvenido \ --- /dev/null Thu Jan 01 00:00:00 1970 +0000 \ +++ b/bin/rienvenido Wed Mar 22 07:58:55 2017 +0000 \ @@ -0,0 +1,1 @@ \ +#!/bin/shbienvenido "$@" | rainwords < 1523171372 805153 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :``` hg diff -c 10443 < 1523171373 883762 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :diff -r 2e542a4c4a63 -r 9f7a006ff95c bin/lowercase2b \ --- /dev/null Thu Jan 01 00:00:00 1970 +0000 \ +++ b/bin/lowercase2b Sun Mar 19 20:01:11 2017 +0000 \ @@ -0,0 +1,1 @@ \ +#!/bin/bash\ntr A-ZØ a-zø < 1523171385 819923 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :possible < 1523171386 737106 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`doag bin/rienvenido < 1523171388 194934 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :10497:2017-03-22 rm bin/rienvenido \ 10490:2017-03-22 sled bin/rienvenido//s/>// \ 10489:2017-03-22 sled bin/rienvenido//s/ sled bin/rienvenido//s/\\/\\n/ \ 10487:2017-03-22 mkx bin/rienvenido//#!/bin/shbienvenido "$@" | rainwords \ < 1523171404 970698 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm < 1523171605 975283 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :so fizzie is running HackEso, right? < 1523171616 426951 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :that's nice < 1523171619 668462 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :`thank fizzie < 1523171620 177408 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/srv/hackeso-code/multibot_cmds/lib/limits: line 5: exec: thank: not found < 1523171622 807120 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :`thanks fizzie < 1523171623 362388 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :Thanks, fizzie. Thizzie. < 1523171700 667550 :oerjan!oerjan@hagbart.nvg.ntnu.no QUIT :Quit: Nite < 1523172485 51883 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523172762 48285 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 245 seconds < 1523173793 894058 :brandonson!~brandon@208.91.114.1 QUIT :Ping timeout: 260 seconds < 1523173895 420168 :catern!~catern@catern.com QUIT :Ping timeout: 240 seconds < 1523173901 93214 :brandonson!~brandon@208.91.114.1 JOIN :#esoteric < 1523174068 774766 :sleffy!~sleffy@c-24-7-67-0.hsd1.ca.comcast.net JOIN :#esoteric < 1523174098 28016 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 264 seconds < 1523174159 364287 :AnotherTest!~turingcom@ptr-82l26zex1glfa1xy3qc.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1523174453 176675 :catern!~catern@catern.com JOIN :#esoteric < 1523175277 763654 :erkin!~erkin@unaffiliated/erkin JOIN :#esoteric < 1523175700 381224 :hakatashi!~hakatashi@104.131.49.125 QUIT :Read error: Connection reset by peer < 1523175700 454929 :hakatashi2!~hakatashi@104.131.49.125 JOIN :#esoteric < 1523176174 29307 :gautamS!uid286066@gateway/web/irccloud.com/x-lkgruymypwpmfdes JOIN :#esoteric < 1523176223 653514 :sleffy!~sleffy@c-24-7-67-0.hsd1.ca.comcast.net QUIT :Ping timeout: 268 seconds < 1523176396 343804 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523177327 915352 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1523177331 592658 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I love how it serendipitiously picked the wisdom for "warning" after the warning once there. < 1523177370 256388 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Anyway, I can switch the default shell to bash. < 1523177401 32459 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :And/or to dash, I didn't read all that carefully about which one it should be. < 1523177411 337340 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 PRIVMSG #esoteric :fizzie: I love how it picked the wisdom for wob_jonas when I asked, so much that I tried to check if some context about the command (such as the IRC nick asking and the channel) is now available to HackEso commands in env variables. < 1523177487 296907 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :fizzie: It always irritated me slightly that we weren't using #! in scripts. < 1523177627 34224 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :But of course I was part of the problem. < 1523177765 422071 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It does make oneliner scripts nicer when inspected via cat. < 1523177786 231159 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I do like cats. > 1523177810 606497 PRIVMSG #esoteric :14[[07User:Is this the Krusty Krab14]]4 10 02https://esolangs.org/w/index.php?diff=54738&oldid=54707 5* 03Is this the Krusty Krab 5* (+12) 10/* List of Languages I Made */ > 1523177835 443119 PRIVMSG #esoteric :14[[07User:Is this the Krusty Krab14]]4 10 02https://esolangs.org/w/index.php?diff=54739&oldid=54738 5* 03Is this the Krusty Krab 5* (+26) 10/* List of Languages I Made */ > 1523177946 64980 PRIVMSG #esoteric :14[[07User:Is this the Krusty Krab14]]4 10 02https://esolangs.org/w/index.php?diff=54740&oldid=54739 5* 03Is this the Krusty Krab 5* (+5) 10/* List of Languages I Made */ > 1523177970 760954 PRIVMSG #esoteric :14[[07User:Is this the Krusty Krab14]]4 10 02https://esolangs.org/w/index.php?diff=54741&oldid=54740 5* 03Is this the Krusty Krab 5* (-44) 10/* List of Languages I Made */ > 1523178886 782949 PRIVMSG #esoteric :14[[07Computerfuck14]]4 10 02https://esolangs.org/w/index.php?diff=54742&oldid=54733 5* 03Is this the Krusty Krab 5* (+385) 10 < 1523178953 437135 :hakatashi2!~hakatashi@104.131.49.125 QUIT :Remote host closed the connection < 1523179406 862024 :wob_jonas!b03f1950@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.80 QUIT :Quit: http://www.kiwiirc.com/ - A hand crafted IRC client < 1523181349 697082 :Aearnus!~Aearnus@ip68-3-184-237.ph.ph.cox.net QUIT :Quit: Aearnus < 1523182260 336185 :AnotherTest!~turingcom@ptr-82l26zex1glfa1xy3qc.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 265 seconds < 1523183138 789125 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 255 seconds < 1523183146 451453 :variable!~variable@freebsd/developer/variable QUIT :Quit: /dev/null is full < 1523183234 471846 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1523183239 58195 :variable!~variable@freebsd/developer/variable QUIT :Client Quit < 1523183283 28008 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1523183285 588397 :variable!~variable@freebsd/developer/variable QUIT :Client Quit < 1523183316 890494 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1523183331 722933 :variable!~variable@freebsd/developer/variable QUIT :Client Quit < 1523183365 121748 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1523183378 55045 :variable!~variable@freebsd/developer/variable QUIT :Client Quit < 1523183407 96731 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1523183424 395277 :variable!~variable@freebsd/developer/variable QUIT :Client Quit < 1523188435 733001 :SopaXorzTaker!~SopaXorzT@unaffiliated/sopaxorztaker JOIN :#esoteric < 1523191725 803561 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1523191757 57755 :gautamS!uid286066@gateway/web/irccloud.com/x-lkgruymypwpmfdes QUIT :Quit: Connection closed for inactivity < 1523192083 449667 :SopaXorzTaker!~SopaXorzT@unaffiliated/sopaxorztaker QUIT :Remote host closed the connection < 1523193392 180856 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523194040 339526 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1523195684 738196 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523198283 795464 :AnotherTest!~turingcom@d51a46c74.access.telenet.be JOIN :#esoteric < 1523199899 399860 :SopaXorzTaker!~SopaXorzT@unaffiliated/sopaxorztaker JOIN :#esoteric < 1523200673 764864 :LKoen!~LKoen@vbo91-1-82-238-218-67.fbx.proxad.net JOIN :#esoteric < 1523201366 6056 :xkapastel!uid17782@gateway/web/irccloud.com/x-zxjowjiqeexcxmxt JOIN :#esoteric < 1523201426 810849 :xkapastel!uid17782@gateway/web/irccloud.com/x-zxjowjiqeexcxmxt QUIT :Max SendQ exceeded < 1523201452 549399 :xkapastel!uid17782@gateway/web/irccloud.com/x-tmlmgumhanfsowsy JOIN :#esoteric < 1523201791 322567 :Sgeo!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Read error: Connection reset by peer < 1523201818 353667 :Sgeo!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric > 1523203143 196372 PRIVMSG #esoteric :14[[07Computerfuck14]]4 10 02https://esolangs.org/w/index.php?diff=54743&oldid=54742 5* 03Is this the Krusty Krab 5* (+15) 10 > 1523203195 404767 PRIVMSG #esoteric :14[[07Computerfuck14]]4 10 02https://esolangs.org/w/index.php?diff=54744&oldid=54743 5* 03Is this the Krusty Krab 5* (-108) 10/* Features */ < 1523203221 288483 :APic!apic@apic.name PRIVMSG #esoteric :,o0(Clusterfuck) > 1523203433 486629 PRIVMSG #esoteric :14[[07Computerfuck14]]4 10 02https://esolangs.org/w/index.php?diff=54745&oldid=54744 5* 03Is this the Krusty Krab 5* (+40) 10/* Syntax */ > 1523203485 193055 PRIVMSG #esoteric :14[[07Computerfuck14]]4 10 02https://esolangs.org/w/index.php?diff=54746&oldid=54745 5* 03Is this the Krusty Krab 5* (+650) 10/* Syntax */ > 1523203517 823369 PRIVMSG #esoteric :14[[07Computerfuck14]]4 10 02https://esolangs.org/w/index.php?diff=54747&oldid=54746 5* 03Is this the Krusty Krab 5* (+0) 10/* Syntax */ < 1523203818 741542 :APic!apic@apic.name PRIVMSG #esoteric :At least it does not seem to be a Troll this Time. < 1523204313 881648 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 260 seconds < 1523204408 682491 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric > 1523205171 15569 PRIVMSG #esoteric :14[[07Computerfuck14]]4 10 02https://esolangs.org/w/index.php?diff=54748&oldid=54747 5* 03Is this the Krusty Krab 5* (-3377) 10Replaced content with "Sorry, the creator of this language decided to change its name" > 1523205199 816413 PRIVMSG #esoteric :14[[07Computerfuck14]]4 10 02https://esolangs.org/w/index.php?diff=54749&oldid=54748 5* 03Is this the Krusty Krab 5* (+78) 10 > 1523205291 881142 PRIVMSG #esoteric :14[[07AmBored14]]4 N10 02https://esolangs.org/w/index.php?oldid=54750 5* 03Is this the Krusty Krab 5* (+3502) 10Created page with "'''AmBored''' is an esoteric language written by [[User:Is this the Krusty Krab|Is this the Krusty Krab]]. It is a [[Brainfuck]] derivative written in C++ which adds more comm..." < 1523205306 687006 :Phantom_Hoover!~phantomho@2a02:c7d:485a:3300:fb8b:fb15:c1d3:a33a JOIN :#esoteric < 1523205307 19139 :Phantom_Hoover!~phantomho@2a02:c7d:485a:3300:fb8b:fb15:c1d3:a33a QUIT :Changing host < 1523205307 19203 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric > 1523205799 96003 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54751&oldid=54750 5* 03Is this the Krusty Krab 5* (-976) 10 > 1523205837 670202 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54752&oldid=54751 5* 03Is this the Krusty Krab 5* (-90) 10/* Features */ > 1523205980 296596 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54753&oldid=54752 5* 03Is this the Krusty Krab 5* (+228) 10/* Syntax */ < 1523206295 412147 :mniip!mniip@haskell/developer/mniip QUIT :Ping timeout: 240 seconds < 1523206366 884085 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1523206614 464705 :mniip!mniip@haskell/developer/mniip JOIN :#esoteric < 1523206838 227362 :danieljabailey!~danieljab@cpc75709-york6-2-0-cust725.7-1.cable.virginm.net JOIN :#esoteric > 1523206882 333368 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54754&oldid=54753 5* 03Is this the Krusty Krab 5* (+268) 10 > 1523206903 410058 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54755&oldid=54754 5* 03Is this the Krusty Krab 5* (+9) 10/* Syntax */ > 1523206919 240195 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54756&oldid=54755 5* 03Is this the Krusty Krab 5* (+31) 10/* Interface */ > 1523206946 514293 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54757&oldid=54756 5* 03Is this the Krusty Krab 5* (+25) 10/* Interface */ > 1523206961 138946 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54758&oldid=54757 5* 03Is this the Krusty Krab 5* (+3) 10/* Interface */ < 1523206985 418553 :mniip!mniip@haskell/developer/mniip QUIT :Ping timeout: 240 seconds > 1523207115 98782 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54759&oldid=54758 5* 03Is this the Krusty Krab 5* (+739) 10 > 1523207145 499408 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54760&oldid=54759 5* 03Is this the Krusty Krab 5* (+19) 10/* Interface */ < 1523207187 238066 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`sled bin/url//s,hackego.esolangs.org/fshg,hack.esolangs.org/repo,g;s,/index\.cgi,, < 1523207188 818025 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/url//#!/usr/bin/env python \ import sys, os.path, re, urllib \ if len(sys.argv) <= 1: \ print "https://hack.esolangs.org/repo/" \ else: \ f = os.path.abspath(sys.argv[1]) \ f = re.sub(r"^/+hackenv/", "", f) \ if re.match(r"/|\.hg(?:/|$)",f): \ sys.exit("File is outside web-viewable filesystem repository.") \ elif re. < 1523207191 403680 :mniip!mniip@haskell/developer/mniip JOIN :#esoteric < 1523207194 484092 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`url bin/url < 1523207195 230780 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :https://hack.esolangs.org/repo/file/tip/bin/url > 1523207267 886160 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54761&oldid=54760 5* 03Is this the Krusty Krab 5* (+92) 10 > 1523207276 70794 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54762&oldid=54761 5* 03Is this the Krusty Krab 5* (+2) 10/* Footnote */ > 1523207287 445157 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54763&oldid=54762 5* 03Is this the Krusty Krab 5* (-4) 10/* Footnote */ < 1523207344 700710 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(Had to change the paths a little anyway due to some modernization removing the "index.cgi" bit, thought I might as well change it more.) > 1523207373 997028 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54764&oldid=54763 5* 03Is this the Krusty Krab 5* (+1) 10/* Ay btw */ < 1523207497 442753 :APic!apic@apic.name PRIVMSG #esoteric :=^.^= < 1523207500 733983 :APic!apic@apic.name PRIVMSG #esoteric :Good old Paths. 9😸 > 1523207505 311210 PRIVMSG #esoteric :14[[07AmBored14]]4 10 02https://esolangs.org/w/index.php?diff=54765&oldid=54764 5* 03Is this the Krusty Krab 5* (+81) 10/* Ay btw */ < 1523207882 483260 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`sled bin/url//s,https://hackego.esolangs.org/,https://hack.esolangs.org/, < 1523207884 947328 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/url//#!/usr/bin/env python \ import sys, os.path, re, urllib \ if len(sys.argv) <= 1: \ print "https://hack.esolangs.org/repo/" \ else: \ f = os.path.abspath(sys.argv[1]) \ f = re.sub(r"^/+hackenv/", "", f) \ if re.match(r"/|\.hg(?:/|$)",f): \ sys.exit("File is outside web-viewable filesystem repository.") \ elif re. < 1523207902 289021 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(For tmp/, which won't work anyway yet.) < 1523207997 809538 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`sled bin/hurl//s,hackego.esolangs.org/fshg,hack.esolangs.org/repo,g;s,/index\.cgi,, < 1523207999 268045 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/hurl//#!/usr/bin/env python \ import sys, os.path, re, urllib \ if len(sys.argv) <= 1: \ print "https://hack.esolangs.org/repo/" \ else: \ f = os.path.abspath(sys.argv[1]) \ f = re.sub(r"^/+hackenv/", "", f) \ if re.match(r"/|(?:\.hg|tmp)(?:/|$)",f): \ sys.exit("File is outside web-viewable filesystem repository.") \ < 1523208000 837914 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`hurl bin/burl < 1523208001 602659 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :https://hack.esolangs.org/repo/log/tip/bin/burl < 1523208006 728965 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :...close enough. < 1523208229 691081 :lldd_!~atrapado@unaffiliated/atrapado JOIN :#esoteric < 1523208385 915725 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`sled bin/raw-url//s,hackego\.esolangs\.org,hack.esolangs.org,g;s,/fshg,/repo,g;s,/index\.cgi,, < 1523208387 767766 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/raw-url//#!/usr/bin/env python \ import sys, os.path, re, urllib \ if len(sys.argv) <= 1: \ print "http://hack.esolangs.org/repo/" \ else: \ f = os.path.abspath(sys.argv[1]) \ f = re.sub(r"^/+hackenv/", "", f) \ if re.match(r"/|\.hg(?:/|$)",f): \ sys.exit("File is outside web-viewable filesystem repository.") \ elif < 1523208465 328885 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`sled bin/raw-url//s,http:,https:,g < 1523208466 915392 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/raw-url//#!/usr/bin/env python \ import sys, os.path, re, urllib \ if len(sys.argv) <= 1: \ print "https://hack.esolangs.org/repo/" \ else: \ f = os.path.abspath(sys.argv[1]) \ f = re.sub(r"^/+hackenv/", "", f) \ if re.match(r"/|\.hg(?:/|$)",f): \ sys.exit("File is outside web-viewable filesystem repository.") \ elif < 1523208518 303894 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`slwd `revert//s,hackego.esolangs.org/fshg,hack.esolangs.org/repo, < 1523208520 255501 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​`revert//`revert " can be used to revert to a revision. See . It is a builtin command so cannot be called from other commands. < 1523208758 358990 :SopaXorzTaker!~SopaXorzT@unaffiliated/sopaxorztaker QUIT :Remote host closed the connection < 1523209225 752754 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`slwd tmflry/fs//s,http://codu.org/projects/hackbot/fshg/index.cgi,https://hack.esolangs.org/repo/, < 1523209226 419349 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :Roswbud! < 1523209235 104496 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :...too much w. < 1523209238 816476 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`sled tmflry/fs//s,http://codu.org/projects/hackbot/fshg/index.cgi,https://hack.esolangs.org/repo/, < 1523209240 507120 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :tmflry/fs//File system. HackEgo/HackBot's is https://hack.esolangs.org/repo/ < 1523209246 120222 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I'm not so sure about this tmflry. < 1523209371 233202 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :hey fizzie < 1523209376 731432 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :why don't you unmute me in ##c < 1523209384 309370 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :that'd be nice < 1523209437 938918 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I thought that wouldn't be relevant any more, I was asleep when you last asked. Aren't those usually timed? I'm not much of an op, TBH. < 1523209498 202802 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :no pragma- muted me manually < 1523209717 578869 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It should still time out, I think by default in 24 hours. < 1523209736 490965 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Also I don't think I'm technically an admin as far as candide is concerned. < 1523209781 250392 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :candide isn't concerned < 1523209786 81017 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :pragma- muted me manually < 1523209826 491314 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Not as far as my logs are concerned. < 1523209838 183061 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric : ,mute izabera < 1523209844 253974 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :-!- mode/##C [+q izabera!*@*] by candide < 1523209921 269149 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :oh. < 1523209943 368403 :APic!apic@apic.name PRIVMSG #esoteric :Oh. < 1523209950 763660 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I should in theory be able to -q, but it's very possible candide would just +q back again. I could ask. < 1523209958 683634 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :maybe you should demote that rougue bot < 1523209984 844585 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That's a bit more politics than I could aspire to. < 1523210010 654641 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :. o O (one wonders why you got muted in the first place...) < 1523210057 432672 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :noone wonders that < 1523210079 745637 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :I just did. < 1523210090 514723 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :see it's right there. ---------^ < 1523210091 409713 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :that's not the wonder you're looking for < 1523210106 372814 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's pretty obvious from the context. But I think 24 hours is a bit much. < 1523210122 776354 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :yeah < 1523210330 278148 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I asked about the bot thing. Now I have some urgent food-related activities to do, will be around. < 1523210366 814653 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :what could be more important than restoring someone's freedom of speech?! < 1523210635 291926 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1523211692 743221 :AnotherTest!~turingcom@d51a46c74.access.telenet.be QUIT :Ping timeout: 276 seconds < 1523211695 667710 :variable!~variable@freebsd/developer/variable QUIT :Quit: /dev/null is full < 1523211746 524147 :Aearnus!~Aearnus@ip68-3-184-237.ph.ph.cox.net JOIN :#esoteric < 1523212844 315002 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 JOIN :#esoteric < 1523212996 499179 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :So now the tense wait until we find out the stalemate. < 1523213001 914914 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :Good evening, all. < 1523213037 263431 :APic!apic@apic.name PRIVMSG #esoteric :Yo < 1523213097 434674 :LKoen!~LKoen@vbo91-1-82-238-218-67.fbx.proxad.net QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” > 1523213098 343296 PRIVMSG #esoteric :14[[07LoadedFuck14]]4 N10 02https://esolangs.org/w/index.php?oldid=54766 5* 03Is this the Krusty Krab 5* (+3511) 10Created page with "'''LoadedFuck''' is an esoteric language written by [[User:Is this the Krusty Krab|Is this the Krusty Krab]]. It is a [[Brainfuck]] derivative written in C++ which adds more c..." < 1523213655 900617 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :declarative brainfuck pls. < 1523213676 795744 :APic!apic@apic.name PRIVMSG #esoteric :×D < 1523213728 259903 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :by the way, Gimp 2 is actually in the prerelease stage now. that's really good. < 1523213735 663758 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :um < 1523213741 118371 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :I mean release candidate < 1523213743 810423 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :not prerelease < 1523213749 484111 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :there's a release candidate < 1523213751 217232 :APic!apic@apic.name PRIVMSG #esoteric :lol < 1523213751 461368 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :that begs the question, what would the equivalent "brainfuck" be for declarative languages. LC/CL don't count. < 1523213752 508533 :APic!apic@apic.name PRIVMSG #esoteric :Fail < 1523213768 845872 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :microkanren's a decent candidate. presupposes too much though. < 1523213793 288692 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :imode: would a computed come from make a language declarative? < 1523213812 8955 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric ::shrug: < 1523213835 366126 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :show me an example! :P < 1523213849 739901 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :because I'm not sure anything's actually declarative. < 1523213862 796094 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :imode: modern intercal < 1523213915 729641 :APic!apic@apic.name PRIVMSG #esoteric :Once there was „blubb.ch“ < 1523213932 448833 :APic!apic@apic.name PRIVMSG #esoteric :It was some Minesweeper-Game < 1523213941 657188 :APic!apic@apic.name PRIVMSG #esoteric :And You had to submit Solvers in various Languages < 1523213945 615421 :APic!apic@apic.name PRIVMSG #esoteric :ACTION submitted on in XSLT < 1523213959 434456 :APic!apic@apic.name PRIVMSG #esoteric :It was astonishingly short. < 1523213962 467700 :APic!apic@apic.name PRIVMSG #esoteric :8,1😎 < 1523213968 568582 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :wait, I have a better candidate < 1523213969 41324 :augur!~augur@2600:380:8700:7061:f9d1:b1fc:ea96:c906 JOIN :#esoteric < 1523213975 389358 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :how about But is it art? < 1523213982 346937 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :that's declarative, right? < 1523214008 473793 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :you got me, man. I don't even know what declarative is anymore. < 1523214045 260838 :APic!apic@apic.name PRIVMSG #esoteric :Good Night. < 1523214050 185153 :LKoen!~LKoen@2a01:e35:2eed:a430:e866:d9e2:6f1:3da1 JOIN :#esoteric > 1523214078 884498 PRIVMSG #esoteric :14[[07LoadedFuck14]]4 10 02https://esolangs.org/w/index.php?diff=54767&oldid=54766 5* 03Is this the Krusty Krab 5* (+54) 10 > 1523214097 236795 PRIVMSG #esoteric :14[[07LoadedFuck14]]4 10 02https://esolangs.org/w/index.php?diff=54768&oldid=54767 5* 03Is this the Krusty Krab 5* (+50) 10/* Links */ > 1523214133 302335 PRIVMSG #esoteric :14[[07LoadedFuck14]]4 10 02https://esolangs.org/w/index.php?diff=54769&oldid=54768 5* 03Is this the Krusty Krab 5* (+16) 10/* Links */ < 1523214145 710833 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :another brainfuck derivative with extended semantics! why are we not all writing code for *fuck oriented processors yet. < 1523214172 689832 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :there was that 256-core beast of a machine with a central message bus. > 1523214260 149332 PRIVMSG #esoteric :14[[07LoadedFuck14]]4 10 02https://esolangs.org/w/index.php?diff=54770&oldid=54769 5* 03Is this the Krusty Krab 5* (+96) 10/* Syntax */ > 1523214286 293399 PRIVMSG #esoteric :14[[07LoadedFuck14]]4 10 02https://esolangs.org/w/index.php?diff=54771&oldid=54770 5* 03Is this the Krusty Krab 5* (+0) 10/* Syntax */ < 1523214383 116725 :augur!~augur@2600:380:8700:7061:f9d1:b1fc:ea96:c906 QUIT :Remote host closed the connection < 1523214867 883616 :LKoen_!~LKoen@vbo91-1-82-238-218-67.fbx.proxad.net JOIN :#esoteric < 1523215040 821650 :sleffy!~sleffy@c-24-7-67-0.hsd1.ca.comcast.net JOIN :#esoteric < 1523215087 233337 :LKoen!~LKoen@2a01:e35:2eed:a430:e866:d9e2:6f1:3da1 QUIT :Ping timeout: 260 seconds < 1523215188 83420 :Aearnus!~Aearnus@ip68-3-184-237.ph.ph.cox.net QUIT :Quit: Aearnus < 1523215910 439040 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :ACTION keeps refreshing < 1523216145 833881 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 PRIVMSG #esoteric :F5 F5 F5 < 1523216796 93607 :LKoen_!~LKoen@vbo91-1-82-238-218-67.fbx.proxad.net QUIT :Remote host closed the connection < 1523217215 444749 :shikhin!shikhin@buttsex.space QUIT :Changing host < 1523217215 519010 :shikhin!shikhin@unaffiliated/shikhin JOIN :#esoteric < 1523218287 701845 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 240 seconds < 1523218423 111688 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 QUIT :Quit: http://www.kiwiirc.com/ - A hand crafted IRC client < 1523218423 307083 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1523218482 191130 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 JOIN :#esoteric < 1523218560 381019 :wob_jonas!b03f1830@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.48 QUIT :Client Quit < 1523219472 711636 :erkin!~erkin@unaffiliated/erkin QUIT :Quit: Ouch! Got SIGIRL, dying... < 1523219777 319179 :AnotherTest!~turingcom@ptr-82l26zex1glfa1xy3qc.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1523220842 942305 :Aearnus!~Aearnus@ip68-3-184-237.ph.ph.cox.net JOIN :#esoteric < 1523220847 709570 :wob_jonas!b03f1809@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.9 JOIN :#esoteric < 1523220917 375409 :AnotherTest!~turingcom@ptr-82l26zex1glfa1xy3qc.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 265 seconds < 1523221424 825033 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :do we have an actor calculus yet? < 1523221650 942852 :wob_jonas!b03f1809@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.9 PRIVMSG #esoteric :well, that's that. < 1523221705 310162 :wob_jonas!b03f1809@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.9 QUIT :Quit: http://www.kiwiirc.com/ - A hand crafted IRC client < 1523221795 678527 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :like I've never seen a concrete description of the actor model like I have the pi calculus. < 1523222028 383461 :augur!~augur@45.34.140.45 JOIN :#esoteric < 1523222072 246700 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :everywhere I look it's like "hey the model exists and it involves actors passing messages to eachother" but never gives anything in the way of actual semantics. it's like this vague idea that has some implementations but doesn't actually have a formalism. < 1523222227 387380 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :like I see "oh the actor model is turing complete" but yet all formal treatment of it involves the lambda calculus or some other tumor-like attachment onto hewitt's original description. < 1523222279 330840 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 256 seconds < 1523222338 68042 :augur!~augur@45.34.140.45 QUIT :Ping timeout: 264 seconds < 1523222376 508931 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :please, dear god, anybody here take mercy, show me what the actor model looks like without reference to any other turing-complete model of computation. ;~; < 1523223821 680179 :sleffy!~sleffy@c-24-7-67-0.hsd1.ca.comcast.net QUIT :Ping timeout: 276 seconds < 1523223844 786437 :lldd_!~atrapado@unaffiliated/atrapado QUIT :Quit: Leaving < 1523225242 369954 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1523225383 349844 :Sgeo!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 265 seconds < 1523226181 883511 :LKoen!~LKoen@vbo91-1-82-238-218-67.fbx.proxad.net JOIN :#esoteric < 1523226393 516414 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1523226867 713215 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1523227007 329617 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 265 seconds < 1523227273 706044 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1523227492 70851 :LKoen!~LKoen@vbo91-1-82-238-218-67.fbx.proxad.net QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” < 1523228384 710677 :Naergon!~Naergon@unaffiliated/naergon QUIT :Ping timeout: 276 seconds < 1523228403 316948 :danieljabailey!~danieljab@cpc75709-york6-2-0-cust725.7-1.cable.virginm.net QUIT :Quit: ZNC 1.6.5+deb2build2 - http://znc.in < 1523228421 795041 :danieljabailey!~danieljab@cpc75709-york6-2-0-cust725.7-1.cable.virginm.net JOIN :#esoteric < 1523228816 388702 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1523228949 959228 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Remote host closed the connection < 1523230183 924245 :sleffy!~sleffy@c-24-7-67-0.hsd1.ca.comcast.net JOIN :#esoteric < 1523231499 479594 :oerjan!oerjan@hagbart.nvg.ntnu.no JOIN :#esoteric < 1523231637 319416 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`cat bin/` < 1523231637 943067 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​#!/bin/bash \ cmd="${1-quote}" \ TIMEFORMAT="real: %lR, user: %lU, sys: %lS" \ shopt -s extglob globstar \ eval -- "$cmd" | rnooodl < 1523231689 824392 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :fizzie: the problem wasn't that the shell is bash or dash, but that the new bash has some different defaults. < 1523231796 666894 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`cat bin/wisdom < 1523231797 240124 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​#!/bin/sh \ f=$(find wisdom -ipath "wisdom/*$1*" -type f -print0 | shuf --random-source=/dev/urandom -z -n1); if [ -n "$f" ]; then echo -n "${f#wisdom/}//"; cat "$f"; else echo "That's not wise."; fi | rnooodl < 1523231812 165996 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` grep -r print0 bin < 1523231813 174637 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/wisdom:f=$(find wisdom -ipath "wisdom/*$1*" -type f -print0 | shuf --random-source=/dev/urandom -z -n1); if [ -n "$f" ]; then echo -n "${f#wisdom/}//"; cat "$f"; else echo "That's not wise."; fi | rnooodl \ bin/randbin:f=$(find bin -ipath "bin/*$1*" -type f -print0 | shuf -z -n1); if [ -n "$f" ]; then echo -n "${f#bin/}//"; grep '' "$f"; else < 1523231825 964903 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` grep -l -r print0 bin < 1523231826 779897 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/wisdom \ bin/randbin \ bin/lastwisdoms < 1523231832 366575 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`cat bin/randbin < 1523231832 908549 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :f=$(find bin -ipath "bin/*$1*" -type f -print0 | shuf -z -n1); if [ -n "$f" ]; then echo -n "${f#bin/}//"; grep '' "$f"; else echo "That's not binary."; fi | rnooodl < 1523231838 868983 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`randbin < 1523231839 563275 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/hackenv/bin/randbin: line 1: warning: command substitution: ignored null byte in input \ zalgo//#!/hackenv/bin/shebang_args_or_input python \ import codecs,sys,random \ stdin=codecs.getreader("utf-8")(sys.stdin) \ stdout=codecs.getwriter("utf-8")(sys.stdout) \ x=[unichr(0x300+i) for i in range(0,112)+[393,2887]] \ def z(n,c): \ if c in ["\n"]+ < 1523231860 379329 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`sled bin/randbin//1i#!/bin/bash < 1523231861 972734 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/randbin//#!/bin/bash \ f=$(find bin -ipath "bin/*$1*" -type f -print0 | shuf -z -n1); if [ -n "$f" ]; then echo -n "${f#bin/}//"; grep '' "$f"; else echo "That's not binary."; fi | rnooodl < 1523231864 619926 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`randbin < 1523231865 326193 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/hackenv/bin/randbin: line 2: warning: command substitution: ignored null byte in input \ rainbow.old//#!/hackenv/bin/shebang_args_or_input python \ import random \ import re \ w=raw_input() \ p=list('x'*len(w)+'C'*int((341-len(w))/3+1)) \ random.shuffle(p) \ p=list(re.sub('C+','C',''.join(p))) \ i=(c for c in w) \ print ''.join(i.next() if c==' < 1523231872 673437 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh < 1523231876 985186 :augur!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1523231877 242814 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`revert < 1523231878 246204 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :Done. < 1523231884 350649 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`sled bin/randbin//1i#!/bin/dash < 1523231885 922745 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :bin/randbin//#!/bin/dash \ f=$(find bin -ipath "bin/*$1*" -type f -print0 | shuf -z -n1); if [ -n "$f" ]; then echo -n "${f#bin/}//"; grep '' "$f"; else echo "That's not binary."; fi | rnooodl < 1523231891 624893 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`randbin < 1523231892 302690 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :mk//[[ "$1" == ?*//* ]] || { echo usage: "mk[x]" file//contents >&2; exit 1; }; key="${1%%//*}"; value="${1#*//}"; echo "$value" > "$(echo-p "$key")" && echo "$key" < 1523231908 345688 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`lastwisdoms < 1523231909 789939 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :​/2018-04-08/ `revert // /2018-04-07/ hackeso // /2018-03-18/ oerjan // /2018-03-11/ a // bpaaihiyw // i // lbjumykca // password // tanebventions: math // xshkeopjp // /2018-03-03/ aglist // befunge // can't // cube // test // underload // /2018-02-24/ procrastination // /2018-02-10/ boily // peace witch // /2018-02-03/ dowg // fug // /2018-01-2 < 1523231916 833805 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`cat bin/lastwisdoms < 1523231917 393497 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :find .hg/store/data/wisdom -type f -print0 | xargs -0 /bin/ls -t | perl -pe 'use POSIX;chop;$d=strftime("%F",localtime((stat($_))[9]));s=^.hg/store/data/wisdom/(.*).i$=\1 // =;s=^=/$d/ = if$d ne$p;$p=$d;s=_(.)=uc($1)=eg;s=~([0-9a-f][0-9a-f])=chr hex$1=eg' < 1523231934 399156 :oerjan!oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm xargs -0