←2015-04-03 2015-04-04 2015-04-05→ ↑2015 ↑all
00:00:21 -!- variable has quit (Ping timeout: 245 seconds).
00:01:56 -!- ais523 has quit.
00:02:00 -!- callforjudgement has joined.
00:02:12 -!- callforjudgement has changed nick to ais523.
00:22:03 <quintopia> helloerjan
00:22:08 <quintopia> having fun cleaning up?
00:22:31 <HackEgo> [wiki] [[Yoob]] http://esolangs.org/w/index.php?diff=42296&oldid=42242 * Oerjan * (-38) Undo revision 42242 by [[Special:Contributions/5.29.33.254|5.29.33.254]] ([[User talk:5.29.33.254|talk]])
00:22:42 <oerjan> MAYBE
00:25:39 <HackEgo> [wiki] [[Talk:Time Out]] http://esolangs.org/w/index.php?diff=42297&oldid=42276 * Oerjan * (-26) Undo revision 42276 by [[Special:Contributions/Esowiki201529A|Esowiki201529A]] ([[User talk:Esowiki201529A|talk]]) (Wat)
00:30:49 <HackEgo> [wiki] [[Special:Log/delete]] delete * Oerjan * deleted "[[Talk:Hexadecimal Stacking Pseudo-Assembly Language]]": content was: "这个正确的名字是“十六进制堆栈式伪汇编语言”" (and the only contributor was "[[Special:Contributions/Esowiki201529A|Esowiki201529A]]")
00:35:38 <oerjan> there, now i can slack on visiting the wiki for another half month or so
00:50:05 -!- CADD has joined.
00:50:42 -!- callforjudgement has joined.
00:50:59 -!- mihow has quit (Quit: mihow).
00:53:39 -!- ais523 has quit (Ping timeout: 272 seconds).
00:53:44 -!- callforjudgement has changed nick to ais523.
01:06:45 <int-e> oerjan: oh I have an unsolved puzzle... write a module that only exports (GHC.Prim.*)
01:07:10 <int-e> (you've played with this much more than I have, maybe you know a way?)
01:10:22 <oerjan> hm i haven't played with _that_
01:10:43 <oerjan> quite possibly you're the one who showed me how you could import GHC.Prim.* in the first place
01:12:01 <oerjan> can you even write a module that exports (GHC.Prim.*) _plus_ other things?
01:13:01 <oerjan> it would seem that module ... (module GHC.Prim) would have the same problem as Constraint.
01:13:05 <int-e> yes, by reexporting the whole module
01:13:20 <oerjan> oh that works?
01:13:58 <int-e> let me verify...
01:14:59 <int-e> :browse GHC.Exts ... data (*)
01:15:56 -!- ais523 has quit (Read error: Connection reset by peer).
01:16:08 <shachaf> i,i module M (module GHC.Prim) where import GHC.Prim hiding (...)
01:16:13 -!- ais523 has joined.
01:16:47 <shachaf> Maybe this has the same issue as Constraint that you've been talkinga bout.
01:16:49 <oerjan> int-e: Constraint doesn't get through that way, at least.
01:16:49 <shachaf> about
01:17:06 <shachaf> Probably it does because otherwise why would you be bringing this up.
01:17:30 -!- mihow has joined.
01:17:43 <int-e> note that the (*) does not even exist in ghc-7.8
01:18:21 <int-e> oerjan: so, contrary to what I thought, you probably have not played with it :)
01:18:23 -!- mihow has quit (Client Quit).
01:18:24 <oerjan> int-e: um in ghc-7.8 i can see GHC.Prim.*
01:19:02 <oerjan> (GHC.Prim.*) :: BOX
01:19:03 <int-e> hmmmm
01:19:29 <int-e> Oh, my testing is flawed.
01:20:06 <int-e> So yeah, it's in GHC.Prim but (visibly anyway) not reexported from GHC.Exts
01:20:23 <zzo38> What exactly does BOX do?
01:20:28 <int-e> s/(\(.*\)) (not)/\2 \1/
01:20:41 <oerjan> when i do module T ((*),Constraint) where import GHC.Prim
01:20:45 <int-e> zzo38: it's superkind, the kind of kinds.
01:20:53 <oerjan> and :m T (to remove the * before T)
01:21:06 <oerjan> then i can see the Constraint but not the *
01:21:28 <int-e> oerjan: try that with {-# LANGUAGE NoImplicitPrelude #-} to remove the other (*).
01:21:44 <oerjan> zzo38: it's the "kind of kinds" in GHC core, you're not supposed to be able to refer to it
01:21:56 <int-e> then ghc will complain about not being able to find (*), I think.
01:22:06 -!- FreeFull has quit (Ping timeout: 248 seconds).
01:22:23 <oerjan> well i tried import Prelude ()
01:22:28 <oerjan> and yes that
01:24:13 -!- FreeFull has joined.
01:24:21 <oerjan> ooh fancy
01:24:36 <oerjan> int-e: you can export it if you rename it with a type
01:26:15 <oerjan> oh except then it thinks it's a type not a kind
01:26:26 <oerjan> funny though, still with kind BOX
01:26:27 <shachaf> It is a type.
01:26:56 <shachaf> Or, at least, it's a thing that has a kind.
01:27:02 <oerjan> :k (Proxy :: S -> S)
01:27:03 <lambdabot> Not in scope: type constructor or class ‘S’
01:27:03 <lambdabot> Not in scope: type constructor or class ‘S’
01:27:07 <shachaf> BOX also has a kind (BOX)
01:27:17 <oerjan> gives me the error ‘S’ of kind ‘BOX’ is not promotable
01:27:31 <oerjan> (type S = (GHC.Prim.*))
01:27:39 -!- mihow has joined.
01:43:04 <int-e> oerjan: this is what I'm playing with: http://int-e.eu/~bf3/haskell/safe/
01:43:08 -!- mihow has quit (Ping timeout: 252 seconds).
01:46:36 <int-e> (I guess the main purpose of the GHC.Prim.Safe module is to convince myself that it's unmanagable that way.)
01:47:05 <oerjan> why are you commenting out coerce?
01:47:21 <int-e> Because Data.Coerce is the official way to get that one
01:47:35 <oerjan> hm
01:47:49 <int-e> So I'm anticipating the export getting deprecated.
01:48:20 <int-e> Oh, Data.Coerce is unsafe, hmm.
01:48:30 <oerjan> and are all those unboxed shifts unsafe, even the ones not unchecked* ?
01:48:31 <int-e> That is... interesting.
01:48:47 <oerjan> huh
01:49:33 <int-e> oerjan: I suspected that adding primops would open a can of worms. They're probably safe, but look at the Prim_Safe module...
01:50:36 -!- callforjudgement has joined.
01:50:40 <oerjan> i guess lack of documentation of what _is_ safe is a problem
01:50:43 <int-e> (The plan was to add primops by replacing GHC.Prim by GHC.Prim.Safe.)
01:51:04 <oerjan> as well as enormosity
01:51:30 <int-e> And platform-dependent primops.
01:51:52 <int-e> I wonder if there are more subtle catches like the quot/rem one.
01:53:12 -!- ais523 has quit (Ping timeout: 252 seconds).
01:53:43 -!- callforjudgement has changed nick to ais523.
01:55:22 <int-e> oerjan: in any case to make it manageable, the information should probably be handled by the primop generator infrastrucure (so the safety information would be in primops.txt.pp, mostly)
01:56:19 <int-e> (this beautiful file: https://github.com/ghc/ghc/blob/master/compiler/prelude/primops.txt.pp )
02:01:39 <oerjan> mkay
02:12:23 <int-e> (As you can see on #haskell I guess the reason for making Data.Coerce unsafe is that coerce can break abstraction boundaries that SafeHaskell is supposed to preserve, if libraries are not careful enough with the (rather new) type roles.)
02:13:57 <oerjan> huh
02:16:34 <int-e> (SafeHaskell is somewhat blurry. coerce by itself is type-safe. But what if you have a module like Data.Map with representational key type, and use it to implement a trusted type-polymorphic key-value store? Who is to blame if the user coerces the map to one with a different Ord instance for the key type?)
02:16:56 <int-e> I'm not sure.
02:31:05 -!- MDude has joined.
02:38:11 -!- callforjudgement has joined.
02:38:15 -!- ais523 has quit (Disconnected by services).
02:38:18 -!- callforjudgement has changed nick to ais523.
02:40:28 -!- MDude has quit (Ping timeout: 246 seconds).
02:50:07 -!- dianne has joined.
02:52:10 -!- oerjan has quit (Quit: leaving).
03:31:20 <HackEgo> [wiki] [[Small SNUSP]] N http://esolangs.org/w/index.php?oldid=42298 * Esowiki201529A * (+94) Created page with "== example: Infinite loop == <pre> !/\ \/ </pre> == See also == [[SNUSP]] [[Category: No IO]]"
03:32:46 <HackEgo> [wiki] [[Small SNUSP]] http://esolangs.org/w/index.php?diff=42299&oldid=42298 * Esowiki201529A * (+0)
03:36:58 <HackEgo> [wiki] [[SNUSP]] http://esolangs.org/w/index.php?diff=42300&oldid=39080 * Esowiki201529A * (+18)
03:38:49 <HackEgo> [wiki] [[Small SNUSP]] http://esolangs.org/w/index.php?diff=42301&oldid=42299 * Esowiki201529A * (+26)
03:39:29 -!- vodkode_ has joined.
03:43:38 <HackEgo> [wiki] [[SNUSP]] http://esolangs.org/w/index.php?diff=42302&oldid=42300 * Esowiki201529A * (+17)
04:03:43 -!- ais523 has quit.
04:03:52 -!- ais523 has joined.
04:06:37 -!- ais523 has quit (Read error: Connection reset by peer).
04:06:49 -!- ais523 has joined.
04:11:46 -!- GeekDude has quit (Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com)).
04:20:17 -!- variable has joined.
04:22:27 -!- callforjudgement has joined.
04:25:51 -!- ais523 has quit (Ping timeout: 256 seconds).
04:25:57 -!- callforjudgement has changed nick to ais523.
04:30:59 -!- Sprocklem has joined.
04:35:04 -!- variable has quit (Quit: 1 found in /dev/zero).
04:44:09 -!- variable has joined.
04:49:03 <zzo38> Do you know what program to use to test .XI instruments?
04:49:24 <zzo38> I know I can use OpenMPT but it requires too many steps to test it in that way
04:54:29 <zzo38> (It also sometimes crashes)
05:15:58 -!- callforjudgement has joined.
05:16:08 -!- ais523 has quit (Disconnected by services).
05:16:10 -!- callforjudgement has changed nick to ais523.
05:17:29 -!- callforjudgement has joined.
05:20:03 -!- scarf has joined.
05:20:04 -!- callforjudgement has quit (Read error: Connection reset by peer).
05:20:44 -!- ais523 has quit (Disconnected by services).
05:20:46 -!- scarf has changed nick to ais523.
05:28:50 -!- ais523 has quit.
05:29:08 -!- ais523 has joined.
06:04:00 -!- vodkode_ has quit (Ping timeout: 252 seconds).
06:13:41 -!- cwe_aza has joined.
06:15:43 -!- cwe_aza has left.
06:35:21 -!- variable has changed nick to constant.
06:50:41 -!- hjulle has joined.
07:38:39 -!- constant has quit (Ping timeout: 256 seconds).
08:41:27 -!- Guest43464 has quit (Read error: Connection reset by peer).
08:54:54 <mroman> https://github.com/fogleman/nes
08:55:43 <myname> needs more rust
08:55:55 -!- vodkode_ has joined.
09:14:28 <mroman> does it?
10:04:21 -!- ais523 has quit.
10:04:35 -!- ais523 has joined.
10:08:43 <mroman> Very rainy week in switzerland.
10:09:21 <mroman> > 5500 * 0.7
10:09:23 <lambdabot> 3849.9999999999995
10:09:33 <mroman> oh well. I should be able to live off 3.8k CHF
10:11:19 <mroman> > 850/3800
10:11:21 <lambdabot> 0.2236842105263158
10:14:15 -!- callforjudgement has joined.
10:17:49 -!- ais523 has quit (Ping timeout: 264 seconds).
10:17:56 -!- callforjudgement has changed nick to ais523.
10:32:21 -!- ais523 has quit (Read error: Connection reset by peer).
10:32:26 -!- callforjudgement has joined.
10:35:18 -!- rodgort` has quit (Ping timeout: 256 seconds).
10:38:24 -!- rodgort has joined.
10:42:08 <int-e> . o O ( As a rule, conventional wisdom is wrong. )
10:55:36 <int-e> oh nice April's fool, subtle... http://www.vexxarr.com/archive.php?seldate=040115
10:55:42 -!- vodkode_ has quit (Ping timeout: 256 seconds).
10:56:49 <mroman> http://pastebin.com/VUHSr0JV
11:02:32 <mroman> That's not delphi though :)
11:12:35 <HackEgo> [wiki] [[SNUSP]] http://esolangs.org/w/index.php?diff=42303&oldid=42302 * Ais523 * (-17) Undo revision 42302 by [[Special:Contributions/Esowiki201529A|Esowiki201529A]] ([[User talk:Esowiki201529A|talk]]) - I don't think that word means what you think it means
11:15:05 -!- v4s has quit (Max SendQ exceeded).
11:15:21 -!- v4s has joined.
11:15:30 -!- callforjudgement has quit.
11:28:10 -!- zadock has quit (Quit: Leaving).
12:17:09 <Guest24483> https://esolangs.org/wiki/Small_SNUSP is a good page
12:20:10 <int-e> elliott: I can hear your sarcastic undertone.
12:29:41 <HackEgo> [wiki] [[Small SNUSP]] http://esolangs.org/w/index.php?diff=42304&oldid=42301 * 213.162.68.171 * (+141) Add no description
12:30:04 <int-e> There, now everybody should be happy *ducks*
12:55:22 -!- nys has joined.
12:59:48 -!- Patashu has quit (Ping timeout: 256 seconds).
13:06:17 -!- FreeFull has quit (Ping timeout: 250 seconds).
13:06:46 -!- Lymia has quit (Quit: Hugs~ <3).
13:08:31 -!- Lymia has joined.
13:17:19 -!- FreeFull has joined.
13:19:38 -!- Koen_ has joined.
13:22:20 <fizzie> Was there a particular name for a diagonal matrix where all the diagonal elements are equal? (Context: covariance matrix for multivariate Gaussian distribution; I know "spherical" is the term for the resulting distribution, but that's not a generic term for the kind of matrix. In fact, "spherical matrix" seems to be something related to matrix variate distributions.)
13:22:25 <fizzie> A "diagonal Toeplitz matrix" might be technically correct but really silly.
13:23:21 <shachaf> "scalar matrix"?
13:23:29 <shachaf> https://en.wikipedia.org/wiki/Diagonal_matrix
13:23:47 <fizzie> I see "scaled identity matrix" in a few places, but that's just a description.
13:23:47 <int-e> Makes sense (I just found the same page.)
13:23:54 <b_jonas> scaled identity matrix, yes
13:24:26 <fizzie> I even thought it might be "scalar matrix", but for some reason didn't search for it.
13:24:50 <fizzie> Although in a sentence like "[matrix] is constrained to be diagonal or scalar" it sounds a bit silly.
13:25:02 <fizzie> "How can it be a scalar if it's a MxM matrix?"
13:25:12 <shachaf> Well, in a sentence like that, you can just say it's constrained to be diagonal.
13:26:19 <fizzie> But that's not exactly equivalent. I was trying to say that occasionally it's "more constrained" than just diagonal, if you want even fewer parameters for your distributions.
13:27:32 <fizzie> Maybe it's not too bad to say 'scalar'.
13:27:32 <int-e> ... is constrained to be diagonal (or even scalar).
13:27:46 -!- oerjan has joined.
13:28:05 * int-e swats ----### oerjan for swatting too much.
13:28:33 <shachaf> your swatter's too short hth
13:28:45 <int-e> it's a practice swatter
13:28:49 * oerjan hits int-e with the saucepan ===\__/
13:28:59 <shachaf> Maybe you can say that all its eigenvalues are equal or something silly like that.
13:29:05 <shachaf> I don't know.
13:29:11 <shachaf> It's 06:31. Good time to go to sleep.
13:29:26 <oerjan> that's about when i went to sleep
13:29:43 <shachaf> and now look at you, hitting people with saucepans
13:30:16 <int-e> Well that escalated quickly.
13:30:31 * int-e drops a lift cabin on oerjan, for sake of the pun.
13:30:40 <oerjan> darn i was considering that
13:33:48 <oerjan> <int-e> oh nice April's fool, subtle... http://www.vexxarr.com/archive.php?seldate=040115 <-- oh so that's what it was. i was following the links from freefall but couldn't find _any_ april fool comics in the others.
13:34:20 <oerjan> oh wait there was one
13:34:39 -!- zadock has joined.
13:34:43 <oerjan> a meta one, where the joke was that there was no april 1 comic
13:45:31 <int-e> oerjan: the brilliancy is, until the next Vexxar comic is published, it could actually be true.
13:46:40 <int-e> oerjan: except that after a decade of comics it'd be rather strange to pull a "it was all just a dream" trope.
13:48:14 <oerjan> you'd think
13:48:42 <int-e> as I said
13:49:00 <int-e> brilliant.
15:09:07 -!- yorick has quit (Read error: Connection reset by peer).
15:09:33 -!- yorick has joined.
15:25:19 -!- TieSoul has joined.
15:27:55 -!- boily has joined.
15:31:03 -!- GeekDude has joined.
15:54:42 <boily> @metar CYQB
15:54:43 <lambdabot> CYQB 041544Z 34009KT 1 1/2SM -SN BKN012 OVC020 M04/M08 A2975 RMK SN3SC3SC2 SLP078
15:54:50 <boily> fungot: why. WHYYYYYYYYYYYYY!
15:54:50 <fungot> boily: have you considered just using ( list " hi there! say, what would he reply?
15:55:12 <boily> fungot: no, I didn't consider what you would reply.
15:55:12 <fungot> boily: telling jokes, looking stupid or just generally to squares, or whatever... " i've done a lot of
15:55:33 <b_jonas> are you relieved, fungot?
15:55:33 <fungot> b_jonas: lazy k is done.
15:55:37 <b_jonas> yep
15:57:50 -!- vodkode_ has joined.
16:06:27 <int-e> fungot: oh goody
16:06:27 <fungot> int-e: ummm...i dont know. they were very prompt about putting it on the web
16:06:32 <fizzie> @metar EGLL
16:06:33 <lambdabot> EGLL 041550Z 04006KT 9999 SCT023 BKN040 08/03 Q1024 NOSIG
16:06:54 <b_jonas> no
16:07:20 <fizzie> fungot: Are you saying they put it on the web too fast, and it's not really done yet?
16:07:20 <fungot> fizzie: just a tic. laundry.
16:07:27 <fizzie> fungot: Okay, take your time.
16:07:27 <fungot> fizzie: it's that one song...? :p. ugh i need to generate it, not official.
16:07:43 <b_jonas> fungot: no, the whole episode
16:07:43 <fungot> b_jonas: or something like that. complain complain complain. but it's easier. and no one wants to do a
16:08:47 -!- f|`-`|f_ has joined.
16:12:08 -!- f|`-`|f has quit (Ping timeout: 246 seconds).
16:12:12 -!- f|`-`|f_ has changed nick to f|`-`|f.
16:15:07 <oren> @metar CYYZ
16:15:08 <lambdabot> CYYZ 041600Z 29013G19KT 250V310 15SM BKN045 03/M08 A3009 RMK CU7 SLP196
16:16:19 <boily> fiziello. helloren.
16:16:39 <boily> b_jellonas too!
16:16:48 <b_jonas> helloily
16:18:47 -!- vodkode_ has quit (Ping timeout: 246 seconds).
16:21:39 <fizzie> "Jellona" is a humorous/"cute" term for a lion in Finnish.
16:21:46 <fizzie> http://en.wiktionary.org/wiki/jellona
16:22:06 <fizzie> (By way of mangling from leijona.)
16:23:04 <boily> is leijona related to Nepeta Leijon?
16:23:29 <fizzie> I've wondered about that.
16:23:38 <fizzie> But I don't know.
16:24:15 <fizzie> "-- Leijon is taken from the surname of Anna-Greta Leijon, who was a Swedish Minister of Immigration in 1976 and victim of a kidnapping plot dubbed Operation Leo. The Swedish word lejon ("leijon" is the archaic spelling) means "lion", and is pronounced LAY-on. Also, the Finnish word for lion is leijona."
16:24:51 <fizzie> `thanks mspa wiki
16:24:54 <HackEgo> Thanks, mspa wiki. Tha wiki.
16:25:00 <fizzie> Tha wiki.
16:46:43 <FreeFull> Oh god
16:46:54 <FreeFull> I forgot it's 4th of april already
16:47:47 <FreeFull> Wait, nevermind, it's 13th of april I'm waiting for
16:47:54 <FreeFull> 9 more days to go
16:48:47 <boily> FreelloFull. what's happening on that Fateful Day?
16:49:54 -!- Lautner has joined.
16:51:14 <boily> `rello Lautner
16:51:17 <HackEgo> ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: rello: not found
16:51:26 <boily> `relcome Lautner
16:51:40 <HackEgo> Lautner: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: <http://esolangs.org/>. (For the other kind of esoterica, try #esoteric on irc.dal.net.)
16:51:43 <Lautner> hey
16:51:49 <Lautner> All the best :D
16:52:08 <Lautner> whazzuuup
16:52:10 <Lautner> :D
16:52:13 <Lautner> people
16:58:52 -!- Lautner has quit (Ping timeout: 272 seconds).
16:59:03 -!- Lautner has joined.
17:01:14 -!- shikhin has joined.
17:03:39 <Melvar> fizzie: What a cute metathesis.
17:04:46 <oerjan> `thanks metathesis
17:04:47 <HackEgo> Thanks, metathesis. Thetathesis.
17:05:00 <fizzie> Thetathesis sounds like a particle physics thing.
17:05:09 <oerjan> HackEgo: i'm sorry but you were supposed to say Thetamesis tdnh
17:05:27 -!- Lautner has quit (Ping timeout: 244 seconds).
17:06:07 <Melvar> Of course, it makes one wonder how German got “Löwe” from the same source.
17:06:27 <oerjan> it's løve in norwegian hth
17:06:40 -!- Lautner has joined.
17:07:03 <fizzie> Come to Kenya, we've got løver.
17:07:20 <fizzie> The song even refers Norway.
17:07:39 -!- Lymia has quit (Quit: Hugs~ <3).
17:07:48 -!- Lymia has joined.
17:08:01 <oerjan> "From Middle High German lewe, from Old High German leo (both with variants), from Latin leō."
17:08:29 <Melvar> Apparently Norwegian got it from Middle Low German.
17:08:37 <oerjan> "From Old Swedish leon, from Latin leo."
17:08:52 <oerjan> oh right, it's leo, leonis in latin
17:09:28 <oerjan> standard dropping of -n from nominative
17:10:30 <oerjan> borrowed from greek, which had -n everywhere
17:10:34 <oerjan> er, -n-
17:11:21 <oerjan> or -ν-
17:12:19 <Melvar> Is “-ν-” a hook-nose emoticon?
17:12:46 <b_jonas> whereas latin has -us everywhere
17:12:48 <oerjan> no it's a greek letter infixed hth
17:12:58 <oerjan> b_jonas: um not in that word hth
17:13:11 <oerjan> but a lot of them, for sure
17:13:41 <oerjan> apparently wiktionary manages to construct the entire greek declension from {{grc-decl-3rd-οντ-prx|form=M-full|λ|έ|ε}}
17:14:50 <oerjan> "Many ancient languages possessed similar words for lion, including Akkadian 𒌨 (labbu) (reconstructed to Proto-Semitic *labiʾ-). It is unclear who borrowed the word from whom, though the ultimate source is likely not Indo-European."
17:15:03 <oerjan> `unidecode 𒌨
17:15:06 <HackEgo> ​[U+12328 CUNEIFORM SIGN UR]
17:17:08 <ProofTechnique> Amazingly, I have that font
17:17:15 <oerjan> i don't hth
17:17:54 -!- SopaXorzTaker has joined.
17:18:43 <ProofTechnique> https://i.imgur.com/5o58LfX.png
17:18:44 <ProofTechnique> hth
17:19:49 -!- kshdecko has joined.
17:22:09 -!- Lautner has quit (Ping timeout: 255 seconds).
17:26:17 -!- Lymia has quit (Quit: Hugs~ <3).
17:29:09 -!- Lymia has joined.
17:30:35 -!- Lymia has quit (Client Quit).
17:32:33 -!- Lymia has joined.
17:39:44 -!- shikhin has quit (Ping timeout: 256 seconds).
17:40:28 -!- vodkode has quit (Remote host closed the connection).
18:00:42 -!- shikhin has joined.
18:06:31 -!- Lautner has joined.
18:07:58 -!- kshdecko has quit (Ping timeout: 244 seconds).
18:12:20 -!- Lautner has quit (Ping timeout: 272 seconds).
18:14:58 <oerjan> ProofTechnique: very cuneiform thx
18:15:03 -!- oerjan has quit (Quit: Later).
18:18:11 -!- Lautner has joined.
18:20:29 <boily> fungot: is there a cuneiform character for chicken twh?
18:20:29 <fungot> boily: hipe iirc is the name of the exception
18:20:44 <boily> fungot: so, no char because of hipe?
18:20:45 <fungot> boily: once we do the fnord on proton are very fnord don't necessarily have anything on paper about this
18:21:07 <boily> A cuneiform chicken needs subatomic fnords. understood.
18:29:02 -!- shikhin has quit (Ping timeout: 256 seconds).
18:34:30 -!- Lautner has quit (Ping timeout: 272 seconds).
18:35:32 -!- Lautner has joined.
18:45:19 <zzo38> Why does charmap crash when I try to start it from the command prompt?
18:46:05 <oren> no idea. it works fine when I do it
18:48:57 <zzo38> It works now, after I closed and reopened the command prompt
18:50:52 -!- kshdecko has joined.
18:51:09 -!- SopaXorzTaker has quit (Read error: Connection reset by peer).
18:54:08 -!- Lautner has quit (Ping timeout: 272 seconds).
18:56:42 -!- Lautner has joined.
18:58:34 -!- kshdecko has quit (Ping timeout: 272 seconds).
19:08:56 -!- Lautner has quit (Ping timeout: 244 seconds).
19:20:17 -!- shikhin has joined.
19:39:12 <HackEgo> [wiki] [[!!!Batch]] http://esolangs.org/w/index.php?diff=42305&oldid=39046 * 73.184.106.177 * (+1) Fixed typo
19:51:04 -!- AnotherTest has joined.
20:01:58 -!- shikhin has quit (Read error: Connection reset by peer).
20:05:03 -!- shikhin has joined.
20:13:57 -!- Koen_ has quit (Quit: The struct held his beloved integer in his strong, protecting arms, his eyes like sapphire orbs staring into her own. "W-will you... Will you union me?").
20:50:12 -!- TieSoul has changed nick to TieSleep.
21:04:22 -!- Frooxius has quit (Quit: *bubbles away*).
21:06:20 -!- supay has changed nick to supay_away.
21:23:31 -!- AnotherTest has quit (Remote host closed the connection).
21:45:27 -!- Frooxius has joined.
21:49:41 -!- shikhin has quit (Quit: leaving).
21:51:57 -!- SgeoPhone has joined.
21:53:39 <SgeoPhone> There's an announcement on nethack.org
22:03:53 <boily> it's very ominous.
22:04:12 <boily> @ask ais523 hello! what with the nethack.org announcement from yesterday?
22:04:12 <lambdabot> Consider it noted.
22:04:25 <boily> @tell ais523 (yesterday being April 3 hth)
22:04:25 <lambdabot> Consider it noted.
22:07:42 <SgeoPhone> coppro ping
22:20:06 -!- SgeoPhone has quit (Remote host closed the connection).
22:20:18 -!- SgeoPhone has joined.
22:20:33 -!- SgeoPhone has quit (Remote host closed the connection).
22:20:49 -!- SgeoPhone has joined.
22:35:20 -!- oerjan has joined.
22:42:49 -!- augur has quit (Ping timeout: 252 seconds).
22:43:51 -!- Patashu has joined.
22:48:15 -!- augur has joined.
22:55:01 <int-e> wtf is pubnub...
22:56:22 -!- SgeoPhone has quit (Remote host closed the connection).
22:56:37 -!- SgeoPhone has joined.
22:57:54 <oerjan> `r13 pubnub
22:57:55 <HackEgo> ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: r13: not found
22:58:02 <oerjan> `rot13 pubnub
22:58:07 <HackEgo> choaho
22:58:22 <oerjan> sounds plausible.
22:58:38 <shachaf> funpubs
23:00:03 -!- vodkode has joined.
23:01:55 <int-e> Another fun big data company. Ostensibly they provide real-time data distribution for web applications, but they also analyze the traffic.
23:02:26 <oerjan> nsanub
23:02:31 <int-e> Founded 2010, surely took me a long time to stumble upon them.
23:03:48 <int-e> (It seems I could've found them already in late 2013, humblebundle was already one of their customers back then.)
23:04:05 <oerjan> `rot13 humblebundle
23:04:11 <HackEgo> uhzoyrohaqyr
23:04:40 <oerjan> clearly a hebrew company
23:04:56 <int-e> `rot13 phevbfvgl xvyyrq gur png
23:04:57 <HackEgo> curiosity killed the cat
23:05:28 <int-e> (I had not realized that png is rot13 for cat, I woner whether this explains the obsession of the internet with those creatures...)
23:05:31 <int-e> *wonder
23:06:01 <oerjan> V'Z FXRCGVPNY
23:06:30 <int-e> Vs lbh fnl fb...
23:07:17 <oerjan> v qb
23:08:10 <oerjan> the next step after learning to read rot13 code is to be able to speak it fluently
23:09:12 -!- vodkode_ has joined.
23:09:34 <int-e> cyrnfr gryy zr gung lbh'er xvqqvat
23:10:45 <int-e> (I'm using cut&paste and `tr` for this)
23:11:01 <oerjan> i didn't say _i_ could do it. i'm just now disappointed i don't find any youtube videos.
23:11:22 <int-e> "how to read rot13 in 26 easy steps"?
23:11:27 <oerjan> surely a proper linguist should have no problems
23:11:43 <int-e> s/"/"Learn /
23:11:59 <oerjan> erm learning to read it is of course essentially trivial compared to any unknown natural language
23:12:15 <oerjan> but _aloud_ might take a bit of practice.
23:12:28 <oerjan> unless you're bilingually czech-georgian.
23:12:57 <SgeoPhone> I've used pubnub for senior project
23:13:17 <oerjan> int-e: i used cut and paste for most of this too
23:13:20 <int-e> Can't anybody do anything by themselves anymore...
23:14:36 <int-e> (That was a comment about pubnub.)
23:14:53 <oerjan> i managed to make out "Vs lbh fnl fb..." without, though. although i sort of cheated by looking at the above translations.
23:15:03 <SgeoPhone> https://xkcd.com/908/
23:16:01 -!- Frooxius has quit (Quit: *bubbles away*).
23:16:25 <int-e> Whenever I hear "cloud computing" I picture the data as rain.
23:16:54 <oerjan> aloud computing
23:17:10 <int-e> oerjan: that's just the fans blowin
23:18:24 <FireFly> fizzie: so I learned today that the rot14 of "zem.fi" is "nsa.tw"
23:18:28 <FireFly> I'm worried.
23:21:39 <oerjan> !zemjoust url_lbh 停止窺探!
23:21:52 <oerjan> !help
23:21:52 <zemhill_> oerjan: I do !zjoust; see http://zem.fi/bfjoust/ for more information.
23:21:53 <EgoBot> ​help: General commands: !help, !info, !bf_txtgen. See also !help languages, !help userinterps. You can get help on some commands by typing !help <command>.
23:21:57 <oerjan> !zjoust url_lbh 停止窺探!
23:21:58 <zemhill_> oerjan.url_lbh: points -30.10, score 3.83, rank 47/47
23:24:38 <FireFly> huh. curious how hey rots to url
23:25:17 <oerjan> serendipity
23:25:24 -!- Frooxius has joined.
23:26:11 <oerjan> Frooxius: are you a bilingual czech-georgian and can you read rot-13 aloud fluently
23:27:01 <oerjan> rot-13 english, that is. rot-13 czech is probably easy to pronounce.
23:27:28 <oerjan> `rot13 Strč prst skrz krk
23:27:34 <HackEgo> Fgeč cefg fxem xex
23:27:44 <ProofTechnique> xex
23:27:56 <oerjan> well, easier than the original, anyway
23:29:30 <oerjan> `rot13 Mgrvgrvladje
23:29:31 <HackEgo> Zteiteiynqwr
23:29:40 <oerjan> yep, holds for georgian too
23:30:25 * oerjan notes himself in the google result
23:30:29 <oerjan> `thanks Mgrvgrvladje
23:30:30 <HackEgo> Thanks, Mgrvgrvladje. Thadje.
23:30:43 <oerjan> good, `thanks now works with it
23:32:02 -!- vodkode_ has quit (Ping timeout: 245 seconds).
23:32:03 <oerjan> hmph google translate doesn't have transcription for georgian
23:32:24 <int-e> `thanks спасибо
23:32:25 <HackEgo> Thanks, спасибо. Tпасибо.
23:33:01 <int-e> `thanks danke
23:33:03 <HackEgo> Thanks, danke. Thanke.
23:33:24 <oerjan> oh hm it's possible the "Georgian Latin" virtual keyboard is actual qwerty in disguise
23:33:28 <oerjan> *+ly
23:33:51 -!- Frooxius has quit (Quit: *bubbles away*).
23:33:56 <int-e> +*ly
23:34:01 <oerjan> NOOO he didn't answer
23:34:08 <int-e> no edirc.
23:36:18 <oerjan> ok მგრვგრვლადჯე turns into mgrvgrvladje in GT but no google hits :(
23:36:52 -!- ProofTechnique has quit (Ping timeout: 264 seconds).
23:37:09 <oerjan> i am slightly troubled by the fact the only mentions i've seen of the name is about how it's the largest number of initial consonants word
23:38:26 <oerjan> hm come to think of it i'm pretty sure i tried to cobble the georgian spelling together from wikipedia's alphabet page once
23:42:29 <fizzie> FireFly: You don't have to be worried unless you live in Taiwan hth
23:42:54 <FireFly> Good, tdsh
23:45:32 <oerjan> funny how georgian letters are completely indecipherable to latin scripters but parts of the alphabet order is clearly related to greek
23:48:39 -!- augur has quit (Ping timeout: 252 seconds).
23:51:35 -!- augur has joined.
23:58:02 -!- augur has quit (Ping timeout: 264 seconds).
←2015-04-03 2015-04-04 2015-04-05→ ↑2015 ↑all