00:06:12 -!- moonheart08 has quit (Ping timeout: 260 seconds). 00:07:19 -!- Sprocklem has joined. 00:18:00 -!- ais523 has quit. 00:20:08 -!- DHeadshot has quit (Ping timeout: 268 seconds). 00:24:19 -!- moonheart08 has joined. 00:24:47 -!- LKoen has 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.”). 00:42:50 -!- Jafet has quit (Quit: Jafet). 00:44:57 -!- Jafet has joined. 01:01:38 -!- oerjan has joined. 01:48:56 *chirp* 01:48:57 -!- moonheart08 has quit (Ping timeout: 240 seconds). 01:58:55 * hppavilion[1] smashes oerjan 01:59:03 CRICKETS MUST BE EXTERMINATED 01:59:17 smashing people is not cricket tdnh 02:00:07 also you may be confusing crickets with cockroaches. 02:00:24 oerjan: No, crickets 02:01:32 if you exterminate crickets you have no conscience 02:01:45 * oerjan wonders if anyone gets his puns 02:03:21 oerjan: I got that. 02:03:37 both of them? 02:03:56 oerjan: smashing people is not cricket [the sport] 02:04:28 *ding* un point 02:04:29 if you exterminate [Jimny- Jiminie- OH FUCK THAT GUY] cricket[] you have no conscience 02:04:41 *ding* deux point 02:04:44 *+s 02:05:05 . o O ( i must be more obscure in the future ) 02:31:31 <\oren\> now there's an element named after tennissee?! <-- i'm really wondering what it's going to be called in norwegian. historical custom would suggest "Tenness", but the german and danish wikipedia (which have similar issues) have gone to opposite conclusions of eachother (and i think neither has been approved by any scientists.) 02:31:42 `` echo $LANG 02:31:50 (also Tenness is a horrible word.) 02:31:50 en_NZ.UTF-8 02:31:58 `` LANG=C sort <<< $'aaaa\tbbbb\naaaa_bbbb' 02:32:00 aaaabbbb \ aaaa_bbbb 02:32:04 ``` echo $LANG 02:32:06 C 02:32:08 `` LANG=C sort -tx <<< $'aaaaxbbbb\naaaa_bbbb' 02:32:08 hth 02:32:08 aaaa_bbbb \ aaaaxbbbb 02:32:20 what's happening? 02:32:30 `which sort 02:32:32 ​/usr/bin/sort 02:32:34 it's comparing aaaa with aaaa_bbbb both times 02:32:54 but the first time aaaa is sorted before aaaa_bbbb 02:32:59 and the second time after 02:36:25 `` LANG=C sort -s <<< $'aaaa\tbbbb\naaaa_bbbb' 02:36:30 aaaabbbb \ aaaa_bbbb 02:36:41 `` LANG=C sort -s -tx <<< $'aaaaxbbbb\naaaa_bbbb' 02:36:43 aaaa_bbbb \ aaaaxbbbb 02:36:46 hth 02:37:01 how does that help? D: 02:37:11 izalove: last resort comparison 02:37:36 I don't see any difference in the outputs. 02:37:47 oh 02:37:50 never mind 02:38:00 fizzie: the order 02:38:12 same order as what i got without -s 02:38:44 right, sorry 02:39:10 ``` sort -tZ <<< $'aaaaZbbbb\naaaa_bbbb' 02:39:11 aaaaZbbbb \ aaaa_bbbb 02:39:44 > ord '_' 02:39:45 this makes no sense! 02:39:46 95 02:40:07 izalove: i think it depends on whether the character is before or after _ 02:40:37 hierjan 02:40:50 HireFly 02:41:24 hiring everyone today 02:41:50 `` LANG=C sort <<< $'aaaa\tbbbb\naaaabbbb' 02:41:52 aaaabbbb \ aaaabbbb 02:43:03 izalove: it might be a bug that has never been caught because people rarely use characters smaller than tab? 02:43:32 What is? 02:43:34 i get the same output in toybox/busybox/gnu/sbase/heirloom/plan9 02:43:45 LANG=C sort order is a well-known thing. 02:44:39 izalove: oh wait. you're not actually declaring a field to sort by, so it's sorted by the whole regardless. duh. 02:44:52 * oerjan hopes that was right 02:45:15 yes it's sorted by the whole line but why does that matter? 02:45:17 *the whole line 02:45:47 izalove: that means your -tx does not matter at all. 02:45:58 you're just sorting a slightly different file 02:45:59 are you sure? 02:46:25 `` LANG=C sort <<< $'aaaa\tbbbb\naaaa_bbbb' 02:46:26 aaaabbbb \ aaaa_bbbb 02:46:32 `` LANG=C sort <<< $'aaaaxbbbb\naaaa_bbbb' 02:46:34 aaaa_bbbb \ aaaaxbbbb 02:46:54 > sort "\tx_" 02:46:57 "\t_x" 02:47:08 ok, let me try again 02:47:51 `` LANG=C sort -tx -k1,1 <<< $'aaaaxbbbb\naaaa_bbbb' 02:47:52 aaaaxbbbb \ aaaa_bbbb 02:47:58 `` LANG=C sort -k1,1 <<< $'aaaa\tbbbb\naaaa_bbbb' 02:47:58 aaaabbbb \ aaaa_bbbb 02:48:02 what 02:48:25 ok 02:48:34 `` LANG=C sort -k1 <<< $'aaaa\tbbbb\naaaa_bbbb' 02:48:36 aaaabbbb \ aaaa_bbbb 02:48:40 `` LANG=C sort -k1 <<< $'aaaa\tbbbb\naaaa_bbbb' 02:48:42 aaaabbbb \ aaaa_bbbb 02:48:48 `` LANG=C sort -tx -k1 <<< $'aaaaxbbbb\naaaa_bbbb' 02:48:49 aaaa_bbbb \ aaaaxbbbb 02:49:02 hichaf btw 02:49:08 it makes sense i guess 02:50:56 -k1 is equivalent to the whole line 02:51:10 at least in this case. 02:51:27 yes i was just testing it 02:51:29 thanks 02:53:40 you're welcome 02:53:54 `5 w 02:54:00 1/1:bct//BCT is short for Bored Cat Transform, an effective compression technique for curtains and sofas. \ d//D is a letter in the alphabet! It's also the name of a programming language. \ password//The password of the month is ⛄ \ til//TIL that TIL means Today I Learned \ oregano//Oregano is the main spice in oreganic cuisine. 02:54:16 `dowt d 02:54:21 `` LANG=C sort -k 2 <<< $'x a\nx\tb' 02:54:23 oerjan: ahem hth 02:54:36 3195:2013-06-20 learn d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d/d nothing \ 3341:2013-07-31 for x in wisdom/*; do tac "$x" > "$x"a; mv "$x"a "$x"; done \ 5139:2014-11-16 ` rm -r wisdom/d \ 6150:2015-10-26 echo "D is a letter in the alphabet! It\'s also the name of a programming 02:54:36 xb \ x a 02:54:37 That one's the weird one. 02:55:07 (Without a specified delimiter, the blanks used as a field separator are included in the following field.) 02:56:43 `` hg log -r 3342 02:56:47 changeset: 3342:c777e2d91031 \ user: HackBot \ date: Wed Jul 31 20:46:16 2013 +0000 \ summary: for x in wisdom/*; do rev "$x" > "$x"a; mv "$x"a "$x"; done 02:56:54 Ok 02:57:03 `` hg log -r 3343 02:57:09 changeset: 3343:76820f8a4c50 \ user: HackBot \ date: Wed Jul 31 20:53:16 2013 +0000 \ summary: revert 02:57:19 `` hg log -r 3344 02:57:25 changeset: 3344:77ab2dbd6adb \ user: HackBot \ date: Wed Jul 31 20:54:18 2013 +0000 \ summary: echo \'? | rev\' >bin/\xd8\x9f && chmod +x bin/\xd8\x9f 02:57:27 oerjan: it's a new month, is what i was getting at 02:57:33 oh 02:57:39 `? hlnp 02:57:41 hlnp? ¯\(°​_o)/¯ 02:57:51 `? ../bin/hlnp 02:57:53 revset='tip:0 & ! (9071 | 9070 | 5897 | 5895 | 9075 | 9074 | 4530 | 4531 | 770 | 771 | 196 | 195 | 194 | 3342 | 3343 | 2114 | 2113 | 121 | 122 | 5642 | 5643 | 1000 | 1001 | 1493 | 1497)' \ hg log -r "$revset" "$@" | sed 's/\(\(^\| \)[ `slwd ../bin/hlnp//1s#.$# | 3342 | 3343&# 02:58:16 ​../bin/hlnp//revset='tip:0 & ! (9071 | 9070 | 5897 | 5895 | 9075 | 9074 | 4530 | 4531 | 770 | 771 | 196 | 195 | 194 | 3342 | 3343 | 2114 | 2113 | 121 | 122 | 5642 | 5643 | 1000 | 1001 | 1493 | 1497) | 3342 | 3343' \ hg log -r "$revset" "$@" | sed 's/\(\(^\| \)[ `revert 02:58:44 rm: cannot remove `/home/hackbot/hackbot.hg/multibot_cmds/env/.hg/store/data/canary.orig': Is a directory \ Done. 02:58:47 `slwd ../bin/hlnp//1s#..$# | 3342 | 3343&# 02:58:51 ​../bin/hlnp//revset='tip:0 & ! (9071 | 9070 | 5897 | 5895 | 9075 | 9074 | 4530 | 4531 | 770 | 771 | 196 | 195 | 194 | 3342 | 3343 | 2114 | 2113 | 121 | 122 | 5642 | 5643 | 1000 | 1001 | 1493 | 1497 | 3342 | 3343)' \ hg log -r "$revset" "$@" | sed 's/\(\(^\| \)[ `learn The password of the month is lutefisk 02:59:05 Relearned 'password': The password of the month is lutefisk 02:59:09 Haven't we had that one before? 02:59:09 it's in season! 02:59:12 -!- Phantom_Hoover has quit (Read error: Connection reset by peer). 02:59:16 oh have we? 02:59:45 `` howg password | grep -i lut 02:59:53 learn The password of the month is lutefisk 02:59:56 Maybe not. 03:00:00 doesn't look like it 03:00:08 What was the way to get a history URL? 03:00:31 `hurl wisdom/password 03:00:35 http://codu.org/projects/hackbot/fshg/index.cgi/log/tip/wisdom/password 03:00:40 `hwrl password 03:00:41 ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: hwrl: not found 03:00:59 feel free to add it. 03:01:08 Huh. 03:01:49 `mkx bin/hwrl//echo 'come on, you can type seven characters' 03:01:51 bin/hwrl 03:03:09 shachaf: your additions of 3342 and 3343 were redundant hth 03:03:20 oerjan: So they were. 03:03:50 `undo -2 03:03:55 um 03:04:01 patching file wisdom/password 03:04:05 oops 03:04:07 we've had in between changes hth 03:04:10 `revert 03:04:12 rm: cannot remove `/home/hackbot/hackbot.hg/multibot_cmds/env/.hg/store/data/canary.orig': Is a directory \ Done. 03:04:17 `cat bin/undo 03:04:19 ​#!/bin/sh \ hg diff -c "$@" | patch -p1 -R 03:04:26 `` hg diff -c -4 03:04:30 diff -r 479bc0f57a54 -r afd7af1d22f4 wisdom/password \ --- a/wisdom/passwordFri Dec 02 02:58:22 2016 +0000 \ +++ b/wisdom/passwordFri Dec 02 02:58:37 2016 +0000 \ @@ -1,1 +1,1 @@ \ -The password of the month is ⛄ \ +The password of the month is lutefisk 03:04:35 `` hg diff -c -5 03:04:39 diff -r e72686e2660c -r 479bc0f57a54 bin/hlnp \ --- a/bin/hlnpFri Dec 02 02:58:16 2016 +0000 \ +++ b/bin/hlnpFri Dec 02 02:58:22 2016 +0000 \ @@ -1,2 +1,2 @@ \ -revset='tip:0 & ! (9071 | 9070 | 5897 | 5895 | 9075 | 9074 | 4530 | 4531 | 770 | 771 | 196 | 195 | 194 | 3342 | 3343 | 2114 | 2113 | 121 | 122 | 5642 | 5643 | 1000 | 1001 | 1493 | 1497)' 03:04:49 shachaf: wait 03:05:00 `hoag bin/hnlp 03:05:05 No output. 03:05:08 wat 03:05:12 `hoag bin/hlnp 03:05:18 slwd ../bin/hlnp//1s#..$# | 3342 | 3343&# \ revert \ slwd ../bin/hlnp//1s#.$# | 3342 | 3343&# \ sled bin/hlnp//s,It,Itb, \ sled bin/hlnp//1s.5643.5643 | 1000 | 1001 | 1493 | 1497. \ sled bin/hlnp//1s#..$# | 5642 | 5643&# \ revert \ sled bin/hlnp//s#..$# 03:05:24 `doag bin/hlnp 03:05:26 ... 03:05:30 9812:2016-12-02 slwd ../bin/hlnp//1s#..$# | 3342 | 3343&# \ 9811:2016-12-02 revert \ 9810:2016-12-02 slwd ../bin/hlnp//1s#.$# | 3342 | 3343&# \ 9800:2016-11-29 sled bin/hlnp//s,It,Itb, \ 9799:2016-11-29 sled bin/hlnp//1s.5643.5643 | 1000 | 1001 | 1493 | 1497. \ 9690:2016-11-14 sl 03:05:52 `` hg cat -r 9800 bin/hlnp >bin/hlnp 03:06:00 No output. 03:06:04 `cat bin/hlnp 03:06:06 revset='tip:0 & ! (9071 | 9070 | 5897 | 5895 | 9075 | 9074 | 4530 | 4531 | 770 | 771 | 196 | 195 | 194 | 3342 | 3343 | 2114 | 2113 | 121 | 122 | 5642 | 5643 | 1000 | 1001 | 1493 | 1497)' \ hg log -r "$revset" "$@" | sed 's/\(\(^\| \)[ That seems overly complicated. 03:06:14 Could've just `undo -5 03:06:23 At the time that I showed what revision -5 was. 03:06:32 and losing the password? 03:06:39 undo isn't revert 03:06:45 oh 03:06:48 darn 03:06:50 OKAY 03:07:14 Anyway, that password is insecure. 03:07:18 According to http://inutile.club/estatis/password-security-checker/ 03:07:24 `sled bin/hlnp//s,1497,1497 | 3341, 03:07:26 shocking 03:07:28 bin/hlnp//revset='tip:0 & ! (9071 | 9070 | 5897 | 5895 | 9075 | 9074 | 4530 | 4531 | 770 | 771 | 196 | 195 | 194 | 3342 | 3343 | 2114 | 2113 | 121 | 122 | 5642 | 5643 | 1000 | 1001 | 1493 | 1497 | 3341)' \ hg log -r "$revset" "$@" | sed 's/\(\(^\| \)[ In fact every password we've had has been insecure! 03:08:55 -!- moony has quit (Remote host closed the connection). 03:11:18 impossible! 03:12:34 -!- Zarutian has quit (Quit: Zarutian). 03:12:37 `cat bin/makelist 03:12:39 name="$1"; file="bin/$name"; makelistlist "$name"; shift; cp bin/emptylist "$file"; for n in "$@"; do echo "$n" >> "$file"; done 03:12:46 `cat bin/emptylist 03:12:47 echo -n "$(basename "$0")${@:+ }$@: "; tail -n+2 "$0" | xargs; exit 03:13:53 wtf 03:17:06 `sled bin/hlnp//1s,9071.*,121 | 122 | 194 | 195 | 196 | 770 | 771 | 1000 | 1001 | 1493 | 1497 | 2113 | 2114 | 3341 | 3342 | 3343 | 4530 | 4531 | 5642 | 5643 | 5895 | 5897 | 9070 | 9071 | 9074 | 9075)', 03:17:09 bin/hlnp//revset='tip:0 & ! (121 | 122 | 194 | 195 | 196 | 770 | 771 | 1000 | 1001 | 1493 | 1497 | 2113 | 2114 | 3341 | 3342 | 3343 | 4530 | 4531 | 5642 | 5643 | 5895 | 5897 | 9070 | 9071 | 9074 | 9075)' \ hg log -r "$revset" "$@" | sed 's/\(\(^\| \)[ oerjan: come on 03:17:55 now i'm going to have to keep it sorted #scow 03:18:01 -!- aleph- has joined. 03:18:04 *MWAHAHAHA* 03:18:18 Why am I just now learning of this chan? :D 03:19:08 `relcome aleph- 03:19:08 oerjan: I told you this should have been in a separate file. 03:19:11 ​aleph-: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: . (For the other kind of esoterica, try #esoteric on EFnet or DALnet.) 03:19:23 But then I was trying to make you write it, which is futile. 03:19:31 yep. 03:19:53 ...ok then 03:19:58 `` for r in 121 122 194 195 196 770 771 1000 1001 1493 1497 2113 2114 3341 3342 3343 4530 4531 5642 5643 5895 5897 9070 9071 9074 9075; do echo $r; done | sort > share/badrevs 03:20:03 No output. 03:20:15 i was going to call it scowrevs hth 03:20:27 `` mv share/{bad,scow}revs 03:20:31 No output. 03:20:31 tdh thx 03:22:12 If I left it like this, you would fix it, though. 03:22:18 AH 03:22:24 `cat share/badrevs 03:22:24 Since your weakness is an inconsistent state. 03:22:26 cat: share/badrevs: No such file or directory 03:22:32 `cat share/scowrevs 03:22:33 1000 \ 1001 \ 121 \ 122 \ 1493 \ 1497 \ 194 \ 195 \ 196 \ 2113 \ 2114 \ 3341 \ 3342 \ 3343 \ 4530 \ 4531 \ 5642 \ 5643 \ 5895 \ 5897 \ 770 \ 771 \ 9070 \ 9071 \ 9074 \ 9075 03:22:37 HMPH 03:23:47 `` sort -n share/scowrevs > share/sc; mv share/sc{,owrevs} 03:23:50 No output. 03:23:53 HackEgo: Welcome. 03:23:54 `` type sponge 03:23:56 ​/hackenv/bin/`: line 4: type: sponge: not found 03:23:56 `cat share/scowrevs 03:23:57 121 \ 122 \ 194 \ 195 \ 196 \ 770 \ 771 \ 1000 \ 1001 \ 1493 \ 1497 \ 2113 \ 2114 \ 3341 \ 3342 \ 3343 \ 4530 \ 4531 \ 5642 \ 5643 \ 5895 \ 5897 \ 9070 \ 9071 \ 9074 \ 9075 03:24:15 oerjan: oh man, that wasn't even what i was talking about 03:24:22 Shite. 03:24:24 I mean, hi. 03:24:27 *MWAHAHAHA* 03:24:29 I'm fucking zonked. 03:24:33 hi aleph- 03:24:36 o/ 03:24:52 So esolangs huh... very on topic. :P 03:25:42 `mkx bin/hlnp//scowrevs="$(cat share/scowrevs | paste -sd'|')"; hg log -r "tip:0 & ! ($scowrevs)" "$@" | sed 's/\(\(^\| \)[ bin/hlnp 03:26:07 `dowg ../wisdom/zzo38 03:26:15 hg: parse error at 16: syntax error 03:26:51 `sled bin/hlnp//s,[(][$],$(, 03:26:53 bin/hlnp//scowrevs="$(cat share/scowrevs | paste -sd'|')"; hg log -r "tip:0 & ! $(scowrevs)" "$@" | sed 's/\(\(^\| \)[ huh? 03:27:03 scowrevs isn't a command 03:27:04 oh wait 03:27:06 `revert 03:27:16 rm: cannot remove `/home/hackbot/hackbot.hg/multibot_cmds/env/.hg/store/data/canary.orig': Is a directory \ Done. 03:27:20 i'm probably zonked too 03:27:25 @wn zonked 03:27:26 No match for "zonked". 03:27:26 `` echo "$(cat share/scowrevs | paste -sd '|')" 03:27:29 http://codu.org/projects/hackbot/fshg/index.cgi/file/tip/-sd 03:27:37 oh 03:27:39 right 03:27:42 fnord 03:27:46 `` echo "$(cat share/scowrevs | /bin/paste -sd '|')" 03:27:48 ​/hackenv/bin/`: line 4: /bin/paste: No such file or directory 03:27:53 `` type -a paste 03:27:55 paste is /hackenv/bin/paste \ paste is /usr/bin/paste 03:28:00 `` echo "$(cat share/scowrevs | /usr/bin/paste -sd '|')" 03:28:02 121|122|194|195|196|770|771|1000|1001|1493|1497|2113|2114|3341|3342|3343|4530|4531|5642|5643|5895|5897|9070|9071|9074|9075 03:28:20 `slwd ../bin/hlnp//s#p#/usr/bin/p# 03:28:22 ​../bin/hlnp//scowrevs="$(cat share/scowrevs | /usr/bin/paste -sd'|')"; hg log -r "tip:0 & ! ($scowrevs)" "$@" | sed 's/\(\(^\| \)[ `dowg elliott 03:28:49 2487:2013-03-23 sed -i \'s/$/ And a lystrosaur./\' wisdom/elliott \ 1855:2013-01-26 sed -i -e 1N -e \'s/\\n//\' wisdom/elliott \ 1854:2013-01-26 echo " He is also tire." >>wisdom/elliott \ 1853:2013-01-26 revert \ 1852:2013-01-26 learn elliott is tire \ 199:2012-04-08 revert \ 198: 03:28:56 `dowg zzo38 03:29:01 0:2012-02-16 Initïal import. 03:29:38 `` mv share/{s,}cowrevs; dowg zzo38; mv share/{,s}cowrevs 03:29:45 cat: share/scowrevs: No such file or directory \ hg: parse error: missing argument 03:30:12 `` mv share/{s,}cowrevs; touch share/scowrevs; dowg zzo38; mv share/{,s}cowrevs 03:30:17 hg: parse error: missing argument 03:30:51 `` mv share/{s,}cowrevs; echo 1000000 > share/scowrevs; dowg zzo38; mv share/{,s}cowrevs 03:30:56 abort: unknown revision '1000000'! 03:31:01 come on, hg 03:31:17 `` mv share/{s,}cowrevs; echo 2 > share/scowrevs; dowg zzo38; mv share/{,s}cowrevs 03:31:24 9071:2016-09-25 revert 942e964c81c1 \ 9070:2016-09-25 ` chmod 777 / -R \ 771:2012-10-06 revert \ 770:2012-10-06 run rm -rf wisdom \ 196:2012-04-08 revert 0 \ 194:2012-04-08 run rm -rf wisdom/* \ 0:2012-02-16 Initïal import. 03:31:28 `doag 03:31:35 9826:2016-12-02 slwd ../bin/hlnp//s#p#/usr/bin/p# \ 9825:2016-12-02 revert \ 9824:2016-12-02 sled bin/hlnp//s,[(][$],$(, \ 9823:2016-12-02 mkx bin/hlnp//scowrevs="$(cat share/scowrevs | paste -sd\'|\')"; hg log -r "tip:0 & ! ($scowrevs)" "$@" | sed \'s/\\(\\(^\\| \\)[ Man, I haven't played with one of these in years. 03:31:41 good, no lasting harm 03:31:46 One of whom? 03:31:54 HackBots 03:35:08 `sled bin/hlnp//1s,cat[^"]*,/usr/bin/paste -sd'|' share/scowrevs), 03:35:11 bin/hlnp//scowrevs="$(/usr/bin/paste -sd'|' share/scowrevs)"; hg log -r "tip:0 & ! ($scowrevs)" "$@" | sed 's/\(\(^\| \)[ `dowg zzo38 03:35:34 0:2012-02-16 Initïal import. 03:35:47 oerjan: The hell are you attempting to do? 03:36:46 aleph-: we're just improving HackEgo's change history lookup feature 03:37:12 Without leaving the irc window? 03:37:15 it has a list of vandalism entries that it censors to reduce noise 03:37:25 Ah. Like? 03:37:41 `` paste -sd '|' share/scowrevs 03:37:45 http://codu.org/projects/hackbot/fshg/index.cgi/file/tip/-sd 03:37:49 right 03:37:53 `` /usr/bin/paste -sd '|' share/scowrevs 03:37:54 121|122|194|195|196|770|771|1000|1001|1493|1497|2113|2114|3341|3342|3343|4530|4531|5642|5643|5895|5897|9070|9071|9074|9075 03:37:57 Those. 03:38:06 `` hg log -r 121 03:38:12 changeset: 121:8a04b0258775 \ user: HackBot \ date: Thu Mar 22 19:17:38 2012 +0000 \ summary: run mv bin test; touch bin 03:38:18 `` hg log -r 194 03:38:24 changeset: 194:b354fd7abfc7 \ user: HackBot \ date: Sun Apr 08 00:19:32 2012 +0000 \ summary: run rm -rf wisdom/* 03:38:29 mea culpa 03:39:05 aleph-: mass deletions like that. easily reverted but leaves noise in the hg repository. 03:42:13 `doag 03:42:17 9827:2016-12-02 sled bin/hlnp//1s,cat[^"]*,/usr/bin/paste -sd\'|\' share/scowrevs), \ 9826:2016-12-02 slwd ../bin/hlnp//s#p#/usr/bin/p# \ 9825:2016-12-02 revert \ 9824:2016-12-02 sled bin/hlnp//s,[(][$],$(, \ 9823:2016-12-02 mkx bin/hlnp//scowrevs="$(cat share/scowrevs | paste -sd\'|\')"; hg 03:48:14 Ahhhh 03:49:21 fungot: say hello to aleph- 03:49:21 oerjan: i've been messing around with longjmp that anmaster's asking all sorts of things. --atterbury... new fnord? 03:50:17 ^source 03:50:17 https://github.com/fis/fungot/blob/master/fungot.b98 03:50:25 Neat 03:58:22 <\oren\> I've updated my font 03:58:44 <\oren\> now includes ಠಥದಧರ 04:02:13 <\oren\> ... except it doesnt? 04:02:19 <\oren\> whyyyyyyy 04:03:14 ㉈㉉㉊㉋㉌㉍㉎㉏ 90 is missing? 04:03:29 <\oren\> there is no 90 04:03:39 why D: 04:03:46 <\oren\> unicode is retarded 04:05:16 Unicode is at least 101% stupid 04:06:15 can you add it as a non standard character? 04:12:31 Please tell me if this explanation of UHS file format is good enough http://zzo38computer.org/fossil/freeuhs.ui/wiki?name=UHS+File+Format 04:14:24 <\oren\> ok, I have no idea why this isn't displaying 04:14:55 <\oren\> test ಠಥದಧರ 04:15:00 <\oren\> WHYYYY 04:16:19 <\oren\> it shows up fine on the web 04:16:23 zzo38: How can it be more than 100%? 04:17:41 Unfortunately it can be. 04:19:15 <\oren\> the fixed öẅë shows up but not the Kannada characters?S?S?S 04:19:19 <\oren\> AAAAAAAAAAAAAAAAAa 04:19:29 <\oren\> test ಠ 04:21:34 <\oren\> maybe it is doing something based on the language support.... 04:21:36 <\oren\> ugh 04:22:09 <\oren\> so I have to add the rest of the Kannada letters if I want this to work 04:23:19 <\oren\> aint nobody got time fo dat 04:23:37 <\oren\> t least not until I finish with Japanese 04:27:51 <\oren\> `u8tbl 0x26e3 0x26e7 04:27:52 ​⛣⛤⛥⛦⛧ 04:28:38 <\oren\> `u8tbl 0x33de 0x33df 04:28:39 ​㏞㏟ 04:35:14 -!- trn has joined. 04:36:08 `welcome trn 04:36:10 trn: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: . (For the other kind of esoterica, try #esoteric on EFnet or DALnet.) 05:07:01 Wheels are trning, shachaf. Wheels are trning. 05:11:10 <\oren\> hppavilion[1]: I fixed the problem with öẅë by the way 05:12:06 <\oren\> now the diarheses line up 05:22:20 <\oren\> wow, the old german handwriting is even more illegible than Fraktur 05:22:34 <\oren\> https://de.wikipedia.org/wiki/S%C3%BCtterlinschrift#/media/File:S%C3%BCtterlin-Ausgangsschrift.jpg 05:41:36 How to change the default filename when saving a document in Firefox to the filename in the URL rather than the title of the document? 05:41:53 (The title of the document is never what I want to call the saved file.) 06:33:29 c and e confuse me a lot on that picture 06:33:38 the rest kinda makes sense 06:34:01 like how g is just a extended downwards and a is just o with an attached line 06:34:07 also, h sucks there 06:45:22 If the pokemon game is easy then use these rules: http://s7.zetaboards.com/Nuzlocke_Forum/topic/9278478/1/ 06:49:19 -!- hppavilion[1] has quit (Ping timeout: 265 seconds). 06:52:19 one of the extra credit guys use nuzlocke rules 06:57:23 okay, he only uses the first 3 though 06:57:29 4 and 5 are hard 07:26:21 -!- oerjan has quit (Quit: Nite). 07:40:04 if i order apples on a scale from sweet to sour and i like it somewhere in the middle, can i consider the spot i like a "sweet spot" even if it is excplicitly not on the sweet only spot? 08:10:35 I think you can only order apples in boxes, not on scales 08:12:06 also, there are sweet sops and sour sops, but none in between 09:32:05 "wow, the old german handwriting is even more illegible than Fraktur" => duh. handwriting is always less readable than printed, otherwise they'd change the printed types to resemble the handwriting more, to make it more readable 09:32:25 typesetters do awfully crazy hard work stuff if it comes to making the output look better 09:56:54 [wiki] [[Special:Log/newusers]] create * L3viathan * New user account 10:03:31 -!- LKoen has joined. 10:28:39 -!- trn has quit (Ping timeout: 246 seconds). 10:28:50 [wiki] [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=50434&oldid=50382 * L3viathan * (+242) 10:28:57 [wiki] [[OIL]] N https://esolangs.org/w/index.php?oldid=50435 * L3viathan * (+4144) Created page with "'''OIL''' is an [[esoteric programming language]] made by [[User:L3viathan|L3viathan]] that stands for '''O'''verly '''I'''ntrospective '''L'''anguage. It is turing-machine-li..." 10:30:01 [wiki] [[OIL]] M https://esolangs.org/w/index.php?diff=50436&oldid=50435 * L3viathan * (+55) /* Official implementation */ 10:30:21 [wiki] [[Language list]] https://esolangs.org/w/index.php?diff=50437&oldid=50416 * L3viathan * (+10) /* O */ 10:47:37 -!- AnotherTest has joined. 11:17:26 -!- trn has joined. 11:33:27 -!- boily has joined. 11:43:16 `wisdom 11:43:23 treaty//The Treaty on `lists treats how to `list our treats. 11:51:26 -!- LKoen has 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.”). 12:01:10 fungot: all in all each man in all men all men in each man. 12:01:11 boily: those can be dropped if you know which binding to use more energy than we do, it's definitely a beta tester)). an object structure, as far as the method is very easily expressed recursively :) 12:08:33 `quote leet" 12:08:33 1223) when i was a kid it used to snow on christmas eve. what is this "freezing rain", "sleet" crap? yeah seriously, who is evn in charge anymore? apparently not santa claus Santa Claus is dead by now. 12:14:32 b_jellonas. does it snow on Christmas in your corner of the World? 12:15:00 -!- DHeadshot has joined. 12:19:46 boily: sometimes it does 12:20:00 but not most of the time 12:20:40 if you want guaranteed snow at a predetermined date, you go skiing in the alps, not just stay here and hope for favorable weather 12:28:58 -!- boily has quit (Quit: PROMOTED CHICKEN). 12:28:59 -!- DHeadshot has quit (Quit: Wink, Wink, nudge, nudge. Know what I mean?). 12:30:34 -!- DHeadshot has joined. 12:33:53 -!- Phantom_Hoover has joined. 12:51:39 `? elrond 12:51:40 Elrond is a rogue program originally created to police the Matrix, eventually gaining increased individuality and becoming a threat to the Machines themselves. 12:58:53 -!- PinealGlandOptic has joined. 14:04:38 -!- moony has joined. 14:05:16 hi 14:27:17 -!- LKoen has joined. 14:39:29 -!- moony has quit (Remote host closed the connection). 14:40:15 -!- moony has joined. 14:49:57 -!- AnotherTest has quit (Ping timeout: 240 seconds). 15:07:25 -!- otherbot has joined. 15:28:39 https://streamable.com/5egh 15:41:18 -!- Phantom_Hoover has quit (Ping timeout: 245 seconds). 15:59:29 -!- iczero has changed nick to wlp1s1. 16:17:35 -!- Zarutian has joined. 16:18:30 -!- Zarutian has quit (Read error: Connection reset by peer). 16:18:33 -!- Zarutian_ has joined. 16:35:12 -!- Bowserinator has changed nick to PacketKiller. 16:35:26 -!- PacketKiller has changed nick to Bowserinator. 16:38:25 <\oren\> `quote 16:38:32 1036) I'm glad I quit programming to take up listening to numbers stations 16:38:37 <\oren\> `quote 16:38:38 493) I'm sacrificing the animals, then I'm going to bed. 16:38:41 <\oren\> `quote 16:38:42 78) theory: some amused deity is making the laws of physics up as they go along 16:38:46 <\oren\> `quote 16:38:47 197) are you always careful to have a small enough margin so that it can't contain the proof? nddrylliog: i usually use latex, and make sure my hd is almost full 16:50:42 -!- ais523 has joined. 17:07:41 -!- Zarutian_ has quit (Quit: Zarutian_). 17:37:31 -!- Zarutian has joined. 17:38:22 -!- Zarutian has quit (Read error: Connection reset by peer). 17:38:33 -!- Zarutian has joined. 17:41:58 -!- otherbot has changed nick to AzureBot. 17:42:06 -!- AzureBot has changed nick to otherbot. 17:48:56 -!- AnotherTest has joined. 17:51:22 `quote 17:51:24 1159) kmc: any chance one can have a box full of tnt to throw around 17:51:33 `quote 17:51:33 194) oerjan: also actually A(4, 4) is larger than any other integer, i learned this the other day when i was reading about this algo, it had complexity O(n a^-1(n)) = O(n a^-1(4)) 17:52:52 `quote 17:52:53 658) When you die in Canada, you die in real life. 17:52:58 `quote 17:52:59 1197) I am in room number 404. I keep not finding it and walking past the door. 17:53:07 `quote 17:53:08 765) You can't quote me. 17:53:14 `quote 17:53:14 1034) this new apartment stuff has interesting side effects: i'm now getting physical spam. 17:53:30 `quote 17:53:31 488) FFS, building a perpetual motion machine should not be this hard. 17:53:37 `quote 17:53:38 918) DIE oh hey elliott 17:53:44 `quote 17:53:44 565) that's trippy. how does such a thing evolve? what biological niche is it filling? we need to film a mockumentary on this 17:53:51 `quote 17:53:51 458) I MIGHT BECOME GHOST 17:53:55 `quote 17:53:55 802) I wonder if Red Alert 4 will use MMIX 17:54:01 `quote 17:54:01 221) OK, I give up, logging into Wikia is harder than writing a Firefox extension 17:54:08 Zarutian: you *do* know that HackEgo replies to PRIVMSG, don't you? 17:54:14 -!- Phantom_Hoover has joined. 17:54:53 oh hey peeps 17:54:58 whats new in the esolang world 18:04:25 int-e: yes, it was too silent here. 18:08:19 <\oren\> `qote 18:08:24 ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: qote: not found 18:08:25 <\oren\> `quote 18:08:26 890) Usually I'd use Rankine, but the fucking weather doesn't support it. 18:08:34 <\oren\> `quote 18:08:34 1057) Bike: so I'm home now i believe you owe me a picture of elephants fisting each other 18:08:44 <\oren\> `quote 18:08:44 1048) 05:09 < utoneq> what exactly is a monad.. and where is the difference to a set or a tuple? kmc: the difference is that a monad is a triple one more element 18:09:02 This is too much spam. 18:09:21 5 quotes at a time is permitted (though you can get them more compactly with `5) 18:16:12 -!- LKoen has 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.”). 18:49:36 moo 18:59:07 -!- hue has quit (Quit: ZNC 1.7.x-git-686-93297b7 - http://znc.in). 19:01:43 <\oren\> Trivia! Armin Van Buuren was the first president of the USA to be born in the USA 19:05:09 -!- ais523 has quit (Ping timeout: 248 seconds). 19:06:11 -!- ais523 has joined. 19:07:16 hello 19:08:27 -!- hue has joined. 19:15:47 -!- dingbat has quit (Remote host closed the connection). 19:15:47 `? hue 19:15:48 hue? ¯\(°​_o)/¯ 19:15:54 speaking of esoteric computing, i'm building a rod logic computer :) 19:16:10 got a video? 19:16:14 or pics? 19:16:15 I hope hue's been `relcomed 19:16:26 hi 19:18:57 -!- dingbat has joined. 19:19:01 izalove: only of some simple prototypes 19:19:13 soon i'll be back in SF and I can actually start laser cutting things 19:19:24 also, importantly, i have money now to spend on personal projects. lol 19:20:14 `rainbow can you name the hues of the rainbow? 19:20:14 ​can you name the hues of the rainbow? 19:21:50 augur: i'd be interested in the simple prototypes as well 19:33:47 izalove: ok let me dig up my vids :) 19:34:01 -!- zgrep has quit (Remote host closed the connection). 19:34:02 -!- dingbat has quit (Read error: Connection reset by peer). 19:34:02 -!- ocharles_ has quit (Remote host closed the connection). 19:34:45 izalove: here's some pics of the full added i built https://twitter.com/psygnisfive/status/754186779813478400 19:35:37 adder* 19:35:45 izalove: here's the video of the AND gate I built, w/ explanation, and in the replies to that you can find a video of the adder https://twitter.com/psygnisfive/status/754509236340527104 19:37:56 i wrote a little JS program that will automatically design these gates, too :) 19:38:04 i need to clean up the code, tho 19:38:19 and add some better UI stuff, and extend it to do gate stacking 19:39:42 given a truth table, it'll spit out a monogate design for it in SVG format so you can throw it into a laser cutter and cut it out 19:40:00 nice streamlined process for manufacturing rod logic computers. lmfao 19:41:08 I also want to try to build these in silicon. a bunch of people are noisebridge are going to the stanford nanofab facility today as a result of my pestering about chip fab processes :) 19:41:23 we're going to set up a little fab in noisebridge. not very clean, but still existant! 19:41:36 DIY semiconductors and MEMS! \o/ 19:51:06 -!- ocharles_ has joined. 19:54:46 -!- zgrep has joined. 20:00:15 -!- dingbat has joined. 20:13:55 -!- ais523 has quit (Read error: Connection reset by peer). 20:19:00 -!- ais523 has joined. 20:23:04 augur: thanks! 20:41:10 -!- ais523 has quit (Remote host closed the connection). 20:45:22 -!- ais523 has joined. 21:05:05 someone made a zip file quine in 2010: http://swtch.com/r.zip 21:07:24 I have seen that 21:07:36 its really somewhat suprising it works, isnt it? 21:07:42 at least, it is until its explained 21:08:22 Knowing something about DEFLATE, it doesn't seems too surprising 21:09:40 `dowt canary 21:09:43 5293:2015-03-30 ` ln -s canary wisdom/canary; ls -l wisdom/canary \ 5294:2015-03-30 ` rm wisdom/canary; ln -s ../canary wisdom/canary; ls -l wisdom/canary \ 9435:2016-10-26 rm wisdom/canary 21:09:46 oops 21:09:49 `doat canary 21:09:50 0:2012-02-16 Initïal import. \ 111:2012-03-19 run echo now this file will be strangely hard to empty completely >> canary \ 112:2012-03-19 run echo chirp >canary \ 113:2012-03-19 run rm canary && mkdir canary \ 114:2012-03-19 run echo chirp >canary \ 198:2012-04-08 revert 193 \ 199:2012-04- 21:10:33 `? shaventions 21:10:34 Shaventions include: before/now/lastfiles, culprits, hog/{h,d}oag, le//rn, tmp/, mk/mkx, sled/sedlast, spore/spam/speek/sport/1. Taneb invented them. 21:10:51 `spore 21:10:53 ? 21:10:56 whoa whoa whoa 21:11:00 that is whoafully out of date 21:11:22 No output. 21:11:40 huh, does shachaf have inventions? 21:11:59 `? olsneventions 21:12:00 olsneventions? ¯\(°​_o)/¯ 21:12:07 `? moonyventions 21:12:08 moonyventions? ¯\(°​_o)/¯ 21:12:09 :C 21:12:12 I know I haven't invented shit 21:12:18 nor anything else 21:12:28 Maybe I'm confusing you with oklopol. 21:12:44 `? okolopolitics 21:12:45 okolopolitics? ¯\(°​_o)/¯ 21:13:00 oklopolice 21:13:18 `? oklopolis 21:13:19 oklopolis? ¯\(°​_o)/¯ 21:13:52 olsner: But I thought you invented alphanumeric poetry? 21:13:53 speaking of which, how long since oklo* actually went here? 21:14:08 out of curiousity... 21:14:11 shachaf: I think someone else invented that I invented that 21:14:15 `fetch http://www.unforgettable.dk/42.zip 21:14:18 2016-12-02 21:13:48 URL:http://www.unforgettable.dk/42.zip [42838/42838] -> "42.zip" [1] 21:14:20 * moony is curious 21:14:22 can you not 21:14:31 :C ok 21:14:37 `rm 42.zip 21:14:39 No output. 21:14:57 `quote alphanum 21:14:58 1134) A Swede who was in #esoteric / Thought his rhymes were a little generic. / "I might use, in my prose, / ꙮs, / But my poetry's alphanumeric." 21:16:18 :D 21:18:00 is that a silent #? 21:18:39 Yes. 21:19:48 It's years later and I'm still pleased with that limerick. 21:20:06 you should be, that is brilliant work 21:22:36 09:20:03: how do people just pop out limericks like that? I seem to be lacking that skill 21:23:02 still am, seeming to, lacking, it 21:25:00 ais523: oerjan told me to ask you something about intercal btw 21:25:53 -!- Phantom_Hoover has quit (Ping timeout: 245 seconds). 21:26:42 why is whitespace afraid of intercal? 21:27:30 :t intercalate 21:27:31 [a] -> [[a]] -> [a] 21:27:40 yes 21:27:44 because intercalate " " 21:28:14 :t unwords 21:28:16 [String] -> String 21:28:28 oh, whitespace was afraid of intercal, somehow managed to read that backwards 21:28:34 because intercalate " " 21:29:43 {1} Artifact - Fortification ;; Fortified land is a 1/2 artifact creature. ;; Fortify {1} 21:29:46 Do you like this? 21:39:34 actually yes, it fixes the main problem with fortifications 21:39:42 however I suspect the creature needs better stats 21:39:47 I'd me more inclined towards 2/2 21:40:06 even then, Wizards wouldn't like something that's cheap and makes lands easily destroyable, but I disagree with them on this 21:43:55 OK then, make 2/2 21:47:18 ais523: Remind me whether there's a double dactyl written with your name yet? 21:47:43 shachaf: I'm not aware of one 21:47:54 I mean IRC nick of course. 21:48:09 Maybe the emphasis is wrong. 21:48:32 Why do you disagree with WotC on this? 21:50:15 -!- moonheart08 has joined. 21:59:42 <\oren\> `quote 21:59:43 1046) i can say "no, i mean the WEIRD porn" in over six japonic languages 22:01:43 hmm, the trick is that what you're looking for isn't even considered weird in any of them 22:05:49 <\oren\> `quote 22:05:49 1196) It seems there aren't any expert systems for answering questions on the nature of expert systems. 22:05:59 <\oren\> `quote 22:05:59 1255) I get paid by Simon Peyton Jones to promote Haskell . mroman, how did you wind up getting paid by SPJ to promote Haskell? Did he see you and think, "Aha! There is a chap who can avoid success at all costs!"? 22:07:45 <\oren\> by the way, I have found that TTF doesn't allow infinite lookahead for ligatures 22:08:30 good, would be funfortunate to find a turing complete string rewriting system in TTF 22:09:27 <\oren\> olsner: that's what I was trying to do 22:09:58 <\oren\> ttf requires you to give a number as the maximum lookahead 22:10:00 -!- dingbat has quit (Quit: Connection closed for inactivity). 22:10:19 <\oren\> ... although, I wonder if ttf actually holds you to it 22:10:29 I am sorry, what is a ligature? some sort of loop or knot? 22:10:47 \oren\: What about OTF? ;) 22:10:54 <\oren\> Zarutian: when two characters get combined 22:11:04 like æ? 22:11:20 lookahead is probably not the most interesting limitation though, I think post systems and such can be very small 22:11:51 Yes, though æ is generally considered a distinct grapheme in languages that use it. 22:11:58 (even though it began life as a ligature) 22:12:36 <\oren\> No like some fonts will automatically diplay the string fi as fi 22:12:45 in ttf/otf terms, it would be a ligature if you have a font that merges "a e" into æ 22:13:16 Which would be most appropriate for a font used for Latin. 22:13:30 Particularly medieval Latin. 22:13:59 pikhq: it latin orthography began as a ligature though it is exists before that as a rune 22:14:49 Its use in transcribing runic languages and in writing Latin are somewhat unconnected, though. 22:15:40 <\oren\> ꜲꜳꜴꜵꜶꜷꜸꜹꜺꜻꜼꜽ 22:15:44 In runic transcription it was transcribing a single glyph, "ᚨ" (æsc) 22:15:55 <\oren\> no idea what language those are from 22:16:43 <\oren\> I think Ꜩꜩ is for german 22:17:49 <\oren\> like plaꜩ 22:18:15 -!- Perenelle has joined. 22:19:50 Huh, while Cirth hasn't been encoded in Unicode, Tolkien's unique runes for transcribing Modern English were. 22:21:06 Damn 22:43:53 -!- Ox0dea has joined. 22:59:24 [wiki] [[Golfish]] https://esolangs.org/w/index.php?diff=50438&oldid=44755 * Sp3000 * (-507) 23:00:43 say, can anyone here be so kind to explain for me the english word 'reasonable'? It is clearly an adjective of some kind but what is its meaning precisely? 23:01:20 [wiki] [[Special:Log/delete]] delete * Ais523 * deleted "[[Golfish]]": author request: "Edit (Dec 2016): Writing a 2D semi-golfing language didn't turn out very nice since it gradually devolved into predominantly one line programs. I'd still like to see an extension of ><> one day" ... "but this is not it." 23:02:16 Zarutian: it means, approximately, "without unlikely/unplausible situations occuring", the meaning sort-of shifts on context 23:02:31 "it is reasonable to think that…" means "it would not be stupid/ridiculous to think that…" 23:03:05 "be reasonable" means something like "stop having silly ideas, and focus on something more practical" 23:03:14 I have SEEN and BEEN in unlikely and unplausible situations! 23:03:32 Zarutian: yes, it's still not reasonable to allow for them though 23:03:45 what is unlikely or unplausible is too damn fucking subjective 23:03:52 Zarutian: so have I! we have so much in common!!!1 23:04:10 "reasonable precautions" are precautions that will deal with any likely situation, but might potentially be defeated by unlikely situations 23:05:25 Reasonable prices are what you put on an ad when the actual price would scare away buyers. 23:05:59 well, somebody told me that 'reasonable' is a good indicator someone who uttered it is trying to evade themselfs out of some situation where they need to give clear and precise definitions for the terms they are using because those aforesaid terms are not common vernicular nor easily derived logically or analytically 23:06:18 fizzie: hizzie 23:06:36 Do you think putting all a company's code in one repository is a good idea? 23:06:49 ais523: yeah, "reasonable precautions" get your license to practice permanently suspended in my field of practice 23:07:02 shachaf: I can't answer unless I can think of an answering porthello, sorry. 23:07:18 hachaf? 23:07:18 <\oren\> shachaf: probably not 23:07:27 Zarutian: "reasonable" is often not a high enough standard for this reason, in safety-critical fields you sometimes need to take unreasonable precautions too :-) 23:07:30 Do you think doing that, and also not having library versioning etc., just doing everything from master/etc., is viable if you don't have good tests? 23:07:42 <\oren\> shachellof 23:08:07 shachaf: Reasonably viable. 23:08:13 the adverb "reasonably" often carries the connotation of "not to an extreme extent"; if a builder said that they'd designed my house to be reasonably stable, I'd be concerned 23:08:19 -!- centrinia has joined. 23:08:36 ais523: hence my mounting suspiction that it is basically a weasle word for someone to evade with 23:08:54 it's more of a weasel word with a fairly specific meaning, but that meaning is inherently weaselly 23:09:49 shachaf: Anyway, just, you know, have a rollback binary, that sort of thing. 23:10:06 even if it has specific meaning it is still imprecise and most probably inaccurate 23:10:31 -!- AnotherTest has quit (Quit: ZNC - http://znc.in). 23:10:50 like "Take the thingy and apply that other thingy to it before bolting it to the other thing" 23:11:27 I was in Paris for Wednesday, and on Thursday woke up having pretty much entirely lost my voice (now it's back); wonder if that's connected somehow. 23:15:49 fizzie: I'm trying to argue for using that sort of system, and people say it won't work because they don't have tests. 23:16:36 And also they don't want to bother keeping things up to date. 23:17:11 -!- Perenelle has quit (Quit: Bye). 23:18:36 -!- Phantom_Hoover has joined. 23:20:15 Just appeal to authority. 23:20:23 Which authority? 23:20:31 -!- centrinia has quit (Quit: Leaving). 23:20:44 spotus 23:21:20 supreme pooch of the united states? 23:21:29 i meant scotus 23:21:32 <.< 23:21:37 spotus sounded better 23:21:53 What I do is in this sort of arguments (well, usually it's my wife claiming some word I'm using is not a "proper word"), I write a convincing-looking web page and open it as file:/// in my browser. 23:21:59 Admittedly it doesn't usually help much. 23:22:02 <\oren\> recently the local mcdonalds installed large self service touchscreens and reduced the number of registers 23:22:41 I've always found the "POTUS" term somehow ridiculous. Probably because "pottu" is a colloquial Finnish term for a potato. 23:22:45 <\oren\> the minimum wage jobs are being replaced with soulles androids 23:22:52 \oren\: do those touchscreen have sanitary wipes to use on it before one touches it? 23:23:04 <\oren\> no 23:23:14 \oren\: "Soulless androids in soulless jobs!" 23:23:45 perfect fit, no? 23:24:00 fizzie: have you considered using data:text/html, hth 23:24:02 I'll have you know there's a little bit of soul in every Android installation. (That's probably not true.) 23:24:10 in 10 years all jobs will be replaced by androids 23:24:25 fizzie: Is it the bit that you sold when you got your job? 23:24:44 izalove: and who is going to buy the services provided by said androids? 23:25:04 fizzie: you mean the soul.so file? 23:25:26 -!- PinealGlandOptic has quit (Quit: leaving). 23:25:32 shachaf: That would make sense. What else would they do with it? 23:25:57 <\oren\> devour it! #spiritcooking 23:26:13 Zarutian: https://www.youtube.com/watch?v=7Pq-S557XQU 23:26:47 fizzie: I imagine Calico could put it to good use. 23:27:41 regarding 'minimum wage', 'living wage' and such. Why do proponents of those often oppose 'citizen salary' (which is basically covers only bear minimum subsitance) 23:28:09 izalove: not intrested in video, didnt watch. What does it depict? 23:29:12 shachaf: I guess. Probably Deepmind as well. 23:29:25 They're the sort of people I can imagine dabbling in souls. 23:32:42 -!- DHeadshot has quit (Ping timeout: 258 seconds). 23:33:00 Have you moved into your new office yet? 23:33:17 -!- moonheart08 has quit (Ping timeout: 240 seconds). 23:34:41 Depends on the definition of "new office". I mean, I moved to one months ago already, some time in the summer or so. 23:35:12 The proper "new office" that Sundar announced the other week he was in London, that we still haven't even started building. 23:37:16 -!- boily has joined. 23:38:08 (Allegedly it's going to be real nice, though.) 23:38:52 @massages-loud 23:38:52 You don't have any messages 23:39:58 -!- LKoen has joined. 23:47:20 -!- moony has quit (Remote host closed the connection).