00:16:57 free as in nothing left to lose 00:17:32 kmc, help I am really nervous right now and I do not know why 00:19:03 damn 00:19:10 I don't know how I can help 00:19:45 I think it may because I ate some cheese really quickly 00:28:03 So far nothing bad has happened 00:31:15 Taneb: free seats are seats that aren't being used. therefore you mean that all software should not be used? 00:31:51 Yes 00:32:10 So if anyone wants to use any software, they can just find it and use it 00:32:20 Because nobody else is 00:33:30 free beer speech seats 00:34:36 Taneb: rather, if anyone wants to use any software, they shouldn't 00:46:46 <^v> im having trouble making a malbolge inturpreter 00:47:07 <^v> methinks i am loading the program wrong 00:47:10 <^v> what is the format 00:47:43 <^v> im doing a base conversion from "!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~" to "012" 00:48:13 <^v> then splitting it by 10 trits 00:49:02 <^v> wait 00:49:16 <^v> i probably did it horribly wrong 00:50:03 well the input should be ASCII codes 00:50:47 <^v> so a string.byte? ._. 00:51:08 possibly... 00:52:05 in particular, ! would be 33 in decimal or ...lessee... 1020 in trinary 00:53:45 -!- constant has joined. 00:54:45 @run showIntAtBase 3 intToDigit (ord '!') "" 00:54:47 "1020" 00:54:54 -!- drlemon has quit (Ping timeout: 255 seconds). 00:55:27 <^v> cool 00:55:28 <^v> .mb (=<`#9]~6ZY32Vx/4Rs+0No-&Jk)"Fh}|Bcy?`=*z]Kw%oG4UUS0/@-ejc(:'8dc 00:55:29 <^v> -^v- pong, Üù``AJ¥óú¸X 00:55:50 <^v> (^v is a bot on that net, and i am pong) 00:56:08 <^v> there are probably more characters though 00:56:18 <^v> it removes invalid ones 00:56:32 <^v> but yeah, it no werk 00:56:45 technically i believe you should err out on invalid ones 00:57:09 <^v> well the removing part is in my respond function 00:57:29 <^v> so i dont have to filter newlines n stuff for every single function 00:57:40 well duh 00:57:58 <^v> hmm 00:58:13 <^v> this is the first time i got it to print something 00:58:27 i mean that the input reading should err out on invalid characters, only whitespace should be ignored 00:58:50 <^v> i might have just fcked up the instruction that changes a 00:59:15 <^v> oerjan, i do a gsub to remove invalid chars .-. 01:00:53 oh well 01:02:55 <^v> removed some mod 3^10 and got -^v- pong, §ç&ñFÏ‘æT 01:05:00 note as usual that the reference interpreter and original specification don't match each other on i/o. 01:05:09 in case you are working from the latter. 01:05:23 (the wiki has a specification based on the interpreter) 01:05:42 <^v> im working from the wiki 01:05:56 good, good 01:06:57 note one advantage to erring out on invalid characters is that you actually get a warning if your program reading is buggy... 01:07:34 oh and btw you cannot detect those with regexp, i think. 01:07:47 because they depend on the mod 94 position. 01:07:59 <^v> am i supposed to increment c after every instruction 01:08:12 <^v> even if it jumped? 01:08:43 hm how was that 01:09:12 <^v> c=mem[d] 01:09:49 <^v> when inturpreting assembly i dont increment eip if it was changed by jmp 01:12:21 hm i think you are. 01:14:34 yep you are, checked the c interpreter there is no special case for i. 01:15:08 <^v> ok 01:15:50 <^v> -^v- pong, §ƒwwsX¶¥,?Óñ 01:15:53 <^v> this is strange 01:16:26 <^v> the repeating ww is similar to the repeating ll in hello 01:16:39 heh 01:16:58 those are not ascii characters though. 01:17:29 dammit hackego is gone 01:17:51 -!- Bike_ has joined. 01:17:59 ^ord §ƒwwsX¶¥,?Óñ 01:17:59 194 167 198 146 119 119 115 88 194 182 194 165 44 63 195 147 195 177 01:18:07 -!- Bike has quit (Ping timeout: 264 seconds). 01:18:13 <^v> aww, i like hack ego 01:18:21 -!- Bike_ has changed nick to Bike. 01:18:23 <^v> also, my client probbably turned into unicode 01:18:26 it has a command for calculating unicode codepoints 01:18:29 <^v> leme get an actual hex dump 01:19:12 my client would have turned it into unicode too, anyway 01:19:12 or wait hm 01:19:16 > map ord "§ƒwwsX¶¥,?Óñ" 01:19:17 Can't resolve type class Functor f 01:19:18 [167,402,119,119,115,88,182,165,44,63,211,241] 01:19:25 that's better 01:19:53 <^v> mfw 01:19:55 <^v> 0xA70x830x770x770x730x580xB60xA50x2C0x3F0xD30xF1 01:20:02 <^v> oh, im confused by the 0x 01:20:16 > map (chr.(+(-11)).ord) "§ƒwwsX¶¥,?Óñ" 01:20:16 No such variable chr. 01:20:17 "\156\391llhM\171\154!4\200\230" 01:20:23 <^v> 0xA7 0x83 0x77 0x77 0x73 0x58 0xB6 0xA5 0x2C 0x3F 0xD3 0xF1 01:20:32 that doesn't look like it helped 01:21:02 !malbolge (=<`#9]~6ZY32Vx/4Rs+0No-&Jk)"Fh}|Bcy?`=*z]Kw%oG4UUS0/@-ejc(:'8dc 01:21:02 Hello World! 01:21:41 well you are printing the right _number_ of characters, which is sort of a hint that everything used other than output is working 01:21:58 how are you storing trits 01:22:58 @run zipWith ((-)`on`ord) "Hello World!" "§ƒwwsX¶¥,?Óñ" 01:22:59 [-95,-301,-11,-11,-4,-56,-95,-54,70,45,-111,-208] 01:23:02 <^v> as numbers 01:23:34 <^v> then i use base conversion when i need to rotate them 01:23:56 <^v> though can probably use some math instead 01:24:01 yes. 01:24:33 <^v> also when using crz 01:25:14 <^v> this is strange /me slaps wikipedia 01:25:23 <^v> For example, crz 0001112220, 0120120120 gives 100102221. 01:25:36 @run zipWith ((,)`on`ord) "Hello World!" "§ƒwwsX¶¥,?Óñ" 01:25:38 [(72,167),(101,402),(108,119),(108,119),(111,115),(32,88),(87,182),(111,165)... 01:26:06 <^v> yet the table says different 01:26:22 <^v> the table says 2,2 = 1 01:26:35 <^v> but the second to last digit is 2 01:26:40 -!- yorick has quit (Remote host closed the connection). 01:26:44 -!- tromp has joined. 01:27:02 um are you using the wikipedia specification, i was looking at esolang. not that there should be a difference 01:27:23 <^v> the tables are same 01:27:33 <^v> just the wikipedia example is weird 01:29:06 -!- tromp_ has quit (Ping timeout: 255 seconds). 01:29:08 there are spurious last 0 digits in the arguments 01:29:10 -!- tromp___ has joined. 01:29:18 no wait 01:29:43 there's a missing digit in the answer, of course 01:29:54 it's only 9 digits 01:29:57 *trits 01:30:49 -!- tromp has quit (Ping timeout: 240 seconds). 01:31:48 <^v> /stab wikipedia 01:32:55 someone misunderstood what the numbers were for https://en.wikipedia.org/w/index.php?title=Malbolge&diff=590632950&oldid=587042925 01:34:42 i should have noticed that edit, i watch that page 01:35:09 <^v> progress! i forgot to increment d 01:35:18 <^v> @run zipWith ((,)`on`ord) "Hello World!" "fYnnóྐྵfB!" 01:35:22 <^v> derp 01:35:23 undid that misedit 01:35:25 <^v> @run zipWith ((,)`on`ord) "Hello World!" "fYnnóྐྵfB!" 01:35:26 :1:42: 01:35:26 lexical error in string/character literal at character '\157' 01:36:00 @run zipWith ((,)`on`ord) "Hello World!" "fYnn]óྐྵfB!" 01:36:01 [(72,102),(101,89),(108,110),(108,110),(111,93),(32,243),(87,224),(111,190),... 01:36:13 ^v: you must use utf8 with lambdabot. 01:36:53 interesting, ! is now correct :P 01:37:39 @run zipWith ((-)`on`ord) "Hello World!" "fYnn]óྐྵfB!" 01:37:40 [-30,12,-2,-2,18,-211,-137,-79,-71,6,34,0] 01:38:03 funny how you're still printing the right number of characters 01:38:21 hm an idea... 01:38:36 ^v: are you remembering to initialize the rest of memory correctly? 01:38:50 <^v> yeah i should be doing that properly 01:39:04 <^v> ill try offseting it and seeing if i derpd 01:39:11 It is apparent that malbolge is not only hard to write programs for, it is also hard to write programs to. 01:39:57 @run zipWith ((xor)`on`ord) "Hello World!" "fYnn]óྐྵfB!" 01:39:59 [46,60,2,2,50,211,183,209,203,10,38,0] 01:40:28 i can't see any _obvious_ connection between the right and wrong chars 01:41:54 <^v> does hello world use jump? 01:42:03 perhaps that program simpl... precisely what i was going to say 01:42:45 because if not, then as long as you are doing the right instructions, but wrongly, you would get the right number of output but completely scrambled 01:44:10 !malbolge (=<`#9]~6ZY32Vx/4Rs+0No-&Jk)" 01:44:11 ​.. \ \ .N0l 01:44:17 !malbolge (=<`#9] 01:44:18 No output. 01:44:29 !malbolge (=<`#9]~6ZY32Vx/ 01:44:30 ​.==Y 01:44:33 !malbolge (=<`#9]~6ZY3 01:44:34 ​..NN 01:44:37 !malbolge (=<`#9]~6 01:44:38 ​.o 01:44:42 !malbolge (=<`#9]~ 01:44:42 ​.$ 01:44:47 !malbolge (=<`#9 01:44:48 ​# 01:44:51 !malbolge (=< 01:44:51 No output. 01:44:53 !malbolge (= 01:44:54 No output. 01:44:55 !malbolge ( 01:44:56 No output. 01:45:04 !malbolge (=<` 01:45:04 9 01:45:10 ok that's pretty short 01:45:18 ^v: perhaps try that shorter program? 01:45:49 <^v> :D crash 01:45:56 fancy 01:46:32 <^v> aand one of the memory addreses is somehow a string.. 01:46:40 i don't think a malbolge program should technically be able to crash, iirc 01:47:48 -!- tromp has joined. 01:48:54 i recommend debugging stuff. 01:49:17 -!- tromp___ has quit (Ping timeout: 252 seconds). 01:49:40 Just call this a variant of malbolge and challenge people to write helloworld in it 01:50:27 good policy 01:51:29 <^v> okay, i just set a __newindex erroring when it tries to set anything to a string, and it diddnt error 01:51:36 <^v> the amount of impossible 01:52:30 -!- erdic has quit (Ping timeout: 265 seconds). 01:52:55 -!- erdic has joined. 02:10:03 -!- Bike has quit (Ping timeout: 255 seconds). 02:14:16 -!- Bike has joined. 02:26:40 <^v> woooot 02:26:42 -!- drlemon_ has joined. 02:26:44 <^v> okay it works 02:26:49 <^v> thanks oerjan 02:26:57 congrats 02:27:55 <^v> ill start optimizing and post the cods 02:31:05 -!- Bike has quit (Ping timeout: 252 seconds). 02:32:43 -!- Bike has joined. 03:02:28 -!- BeingUntoDeath has joined. 03:02:33 WOAH. 03:02:40 There's an esoteric channel? 03:02:47 :) 03:02:53 !welcome BeingUntoDeath 03:02:54 BeingUntoDeath: 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 irc.dal.net.) 03:03:19 aha! 03:05:50 wait... so what the hell is an esoteric programming language? 03:05:56 i'm new to programming. 03:05:59 learning ruby. 03:06:31 weird for the sake of weird 03:06:56 hmmmmm. i'm a student of esoterica and the occult. how are they related? 03:08:33 not, except that i used to tell people their futures for money, and now i'm here 03:09:04 what? lol. 03:09:04 i've invented a form of divination which involves clicking the random link on jerkcity 03:10:03 i want my first app to be for occultists 03:10:20 -!- Sorella has quit (Quit: It is tiem!). 03:10:31 but ive wanted to do it in ruby. 03:10:32 i think zzo does astrology programming but he's not here right now. 03:10:41 fascinating. 03:11:15 anyway if kmc wasn't clear enough, esoteric programming languages are weird for the sake of things. for example, /// has a weird name, and also has only one operation, string replacement. the wiki has lots of examples. 03:11:34 usually the weirdness is something CS-theoretical rather than being devoted to Imhotep 03:12:09 Bike: that is incorrect, it has _two_ operations. 03:12:17 (the other is printing) 03:12:20 the other is your mother 03:13:26 i think you are confusing me with agathe heterodyne hth 03:13:28 *agatha 03:16:33 -!- MoALTz_ has joined. 03:17:08 Ugh I want cough drops but as candy but that's probably bad 03:18:17 lol! 03:18:18 -!- Bike_ has joined. 03:18:36 -!- Bike has quit (Disconnected by services). 03:18:41 -!- Bike_ has changed nick to Bike. 03:19:00 my precognitive abilities are as of yet too weak to stave off connection failures 03:19:43 -!- MoALTz has quit (Ping timeout: 264 seconds). 03:22:06 -!- BeingUntoDeath has quit. 03:22:27 -!- BeingUntoDeath has joined. 03:35:55 <^v> o/ i finished it somewhat http://hastebin.com/dekarabime.lua 03:38:26 https://github.com/mitsuhiko/jinja2/blob/27ffd01f95cad7740497a32b22e4ef9d29762162/jinja2/debug.py#L267 03:38:30 def _init_ugly_crap(): 03:38:53 it's not a real party until you're calling the CPython API through ctypes 03:39:15 <^v> me no likey python 03:40:05 scary code there 03:40:45 <^v> malbolge is scarier 03:43:43 -!- Bike_ has joined. 03:44:25 -!- Bike has quit (Ping timeout: 240 seconds). 03:44:55 -!- Bike_ has changed nick to Bike. 03:45:09 by the by, if i make an amusing esothing that isn't really a language, where should i dump that 03:49:03 -!- Bike_ has joined. 03:49:18 i was wondering the same thing back when i looked at roman numeral look-and-say 03:49:38 never wrote it up properly, anyway 03:50:55 -!- Bike has quit (Disconnected by services). 03:50:57 -!- Bike_ has changed nick to Bike. 03:55:54 -!- Bike_ has joined. 03:56:12 -!- nisstyre has quit (Quit: WeeChat 0.4.3). 03:56:40 -!- Bike has quit (Disconnected by services). 03:56:42 -!- Bike_ has changed nick to Bike. 03:59:15 -!- FireFly has quit (Excess Flood). 03:59:53 -!- tromp has quit (Remote host closed the connection). 04:00:28 -!- tromp has joined. 04:00:31 -!- FireFly has joined. 04:00:37 Blah Microsoft not documenting internally used files 04:01:00 Which have a strong probability of harming other organizations if incorrect 04:01:32 Sgeo: That is... super vague 04:01:35 but intriguing 04:01:55 yeah, actually writing it up and constructing it is the main obstacle. especially since i have actual obligations for some reason 04:01:57 IE compatibility list 04:02:26 also it /might/ be one of those things where in a paper you'd relegate it to an appendix and it'd be ten pages of numbers, i don't know yet 04:04:02 -!- shikhout has joined. 04:04:34 http://www.sleepphones.com/mp3/free-mp3-downloads I assume the binaural stuff is BS? 04:04:55 -!- tromp has quit (Ping timeout: 264 seconds). 04:05:13 Still nice music 04:06:57 -!- shikhin has quit (Ping timeout: 255 seconds). 04:06:58 -!- shikhout has changed nick to shikhin. 04:08:43 My dad used to believe in that stuff 04:09:10 And then I talked to teachers at school about it, and then my dad said I shouldn't do that. (The teachers had no reaction that I remember to the idea) 04:18:29 <^v> maldoge http://puu.sh/7AWIf.png 04:19:18 binaural beats are pretty crap yeah. 04:19:32 more interesting than most of that ilk of stuff, though. 04:19:35 ^v: haha 04:20:12 <^v> that has to be the worst looking image ive made in months 04:20:21 <^v> but its funeh 04:20:50 "brainwave entrainment" changed my life. 04:21:12 or at least, it seemed to be a major changing factor in some of my behaviors/how i cognized my abilities. 04:21:22 unles it was placebo, of course. 04:21:47 either way, i'm a huge fan of binaural beats, isochronic tones, brainwave entrainment in general. 04:22:12 My dad never thought of it as entertainment, more of a sleep/concentration aid 04:22:23 i have a light/sound machine that flashes lights and that took it to another level, at a time when I'd already have claimed binaural beats to have changed my life. 04:22:33 entrainment 04:22:39 Oh 04:22:48 patterns are "entrainment", i think. 04:22:54 Interesting science fact: One of the founders of endocrinology (the studies of hormones, etc.) was popular known for objecting fluid from dog testicles into his bloodstream so as to regain sexual virility (he was like eighty at the time) 04:23:01 injecting, not objecting 04:23:17 There's a pair of eye masks that flash lights into your eyes to try to help lucid dreaming 04:23:22 <^v> sounds epilepsy inducing 04:23:28 I assume that that actually works, if you can train yourself to recognize the flashing lights 04:23:29 i think Being is talking about a dreamachine. 04:23:30 entrained* sorry. 04:23:37 and yes sgeo, that is something else. 04:23:43 that for a lucid dreaming cue. 04:23:55 I love lucid dreaming, haven't had a lucid dream for a while though :( 04:23:58 dreammachines are different as well. 04:24:12 you odn't need equipment for it, man, just count your fingers and check clocks and such 04:24:28 right! wish it was that easy for me. 04:24:31 http://www.ploscompbiol.org/article/info%3Adoi%2F10.1371%2Fjournal.pcbi.1002158 04:24:39 that was at sgeo, i'm sure you have other stuff goin on 04:24:42 http://treehovse.blogspot.com/2011/09/visor.html 04:24:47 i've had one 90% successful lucid dream, lost it completely. 04:24:48 There's a test that I tried in a dream once that failed 04:24:56 I think trying to breath with my throat closed. 04:25:08 wow. 04:25:10 Other tests worked better, but I think I was less likely to try those other tests regularly 04:25:25 just do them in real life a lot. 04:25:26 not one of the ones i normally think about using. 04:25:39 if i ever actually "thought" about using them during dreams at all. 04:26:22 http://wealoneonearth.blogspot.com/search/label/goggles 04:26:33 "One hypothesis is that the flickering interacts with natural ongoing oscillations in visual cortex, exciting a specific frequency of brain waves. This increases the activity in visual cortex. Activity can increase enough to overload the circuitry the brain uses for interpreting what it sees, causing you to see things that aren’t really there." man i have no idea how these people think brains work but damn if it doesn't sound exciting 04:27:06 oh shit this paper has bifurcation theory :o 04:27:07 that's right. at least that's similar to how i conceptualize it, and i tihnk i'm right. 04:27:10 drugs are also pretty cool & fun 04:27:35 i could take about 1-3 seconds of my light/sound machine on dmt. 04:27:43 i only go for natural highs kmc, which is why i'm injecting myself with silicon 04:27:45 before it was jesus and super spirally spirals... too much. 04:27:47 very intense. 04:27:57 LOL, bike. 04:28:18 also silicone, but that's not for the high 04:28:21 -!- oerjan has quit (Quit: leaving). 04:28:48 i'm thrilled you brought up brainwave entrainment, sgeo. one of my favorite things in terms of... psychological healing and psychedelic experience. 04:29:02 shee-it, one of the links on this page has a half page url 04:29:10 i think i'm going to save it for later. it must be preserved 04:29:27 i did research on brainwave entrainment in undergrad. 04:29:37 Bike: is it about this topic? 04:29:48 nah, some homework 04:29:54 There's a YouTube video that if you stare at it, it causes vision to distort for a bit 04:29:58 where'd you get that paragraph from ? 04:29:59 kmc's link there just has a doi, sensibly enough 04:30:09 the thing i quoted? the treehovse link 04:30:42 Bike: doi, not to be confused with the psychedelic amphetamine of the same name 04:30:49 the link with the long url is just to a Cell paper through like nine proxies because lolpaywalls 04:30:55 OH wow, amazing. 04:30:56 it's a ``hell of a drug'' as they say 04:31:18 kmc: endocrinology is fun. i found out dopamine and ecstasy are both phenylethamines. Whoa, Man. 04:31:23 yep 04:31:30 -!- nisstyre has joined. 04:31:42 i really want to understand the chemistry better because it seems so arbitrary 04:31:49 throw on a hydroxy WHOOPS YOU'RE HIGH 04:31:49 your paragraph sounded like a light/sound machine... that thing must be awesome. 04:32:01 yep 04:32:25 Relatedly I found out hormones are ridiculously hard to make 04:32:42 like, i've heard of some bad syntheses before, but we're talking literally twenty steps, some of which take days, just to get a precursor 04:32:51 terence mckennas spoken on that precisely. i've had a psychopharmacology class, but we didn't go into that. guess it's neurochemistry. 04:32:52 LSD is pretty hard to make too 04:33:01 too bad 04:33:07 what about dhea? 04:33:13 growing psychedelic mushrooms is relatively easy, though 04:33:21 http://me.veekun.com/blog/2012/04/09/php-a-fractal-of-bad-design/ 04:33:23 doesn't help that i don't even understand the notation. superscripts on a delta? whoooo knowsssss 04:33:23 oops 04:33:28 http://www.youtube.com/watch?v=AbHEC8Snwhk 04:33:54 ^^ at least that works on me. Although I think it's too long, could be shorter for probabl similar effect 04:34:00 that's good stuff 04:34:26 hey if you want a really weird optical illusion try http://en.wikipedia.org/wiki/McCollough_effect 04:34:33 if that's even the right term for this 04:34:40 maybe when i'm old and insane i could have a garden of this shit. like some plants for curare, some pufferfish for TTX 04:34:44 since it can last 3 months 04:34:52 kmc: yeah no thanks 04:34:59 I do not want distorted vision for that long 04:35:03 -!- oklopol has joined. 04:35:09 What's distortion 04:35:20 maybe the distortion... is within you all along. 04:35:43 <^v> :P 04:35:53 <^v> all i get is a headache 04:36:12 apparently the visual system in locusts (and several other model insects) behaves differently under different octopamine levels, and the levels fluctuate throughout the day anyway, apparently indicating the cells' properties change all the time (presumably adapting to different light levels etc.) 04:36:17 p. cool, i m o 04:36:46 i wanna be a cuttlefish 04:36:48 or a cuddlefish 04:37:08 their neurochemistry is probably less known. bastards are all... complicated. 04:37:32 Squid Giant Axon would be a good name for a band 04:37:36 i got literal maps of ganglia, man. ridges and shit. the good shit. 04:38:15 I stupidly actually tried it 04:38:19 Not for long 04:38:25 Ugh can I wash out my eyes? 04:38:33 mccullough? 04:38:44 yes sgeo didn't anyone teach you how to use the eye wash station 04:39:10 yes folks, all your favorite bands in this lineup! after the intro set by Mauthner C-Start it's time to jam with Squid Giant Axon! then maybe a slow jam with Oculocephalic Reflex 04:39:29 employees must wash hands before returning to libc 04:39:29 mauthner and the c-starts, perhaps 04:40:15 lol! so you guys work with recursion? 04:40:35 [joke] 04:40:52 my friend has a shirt that just says "RECURSION" on the front in big block letters 04:40:57 I'm curious, i've wanted to get into it, but i don't know much about data structures yet. 04:41:02 i literally can't even think of a joke any more that's how sick i am of recursion 04:41:03 lol. 04:41:10 recursion jokes rather 04:41:14 ... 04:41:26 recursion itself is still cool 04:41:30 i heard you like recursion so we put recursion in your hugalagahlalhaghahghagalhahglhal 04:42:10 * Sgeo fixes Bike 04:42:11 it's all broad though. like whoa, put a thing in a thing?? i learned the concept early enough that it's hard for me to understand people not getting it, sadly 04:42:24 i don't even own a recursion 04:42:28 Bike: but Y? 04:42:33 that's all you recursion is? 04:42:53 i guess i'm talking about neural networks then? 04:42:56 what 04:42:59 these use recursion, yes? 04:43:08 * kmc -> afk 04:43:08 -you, sorry. 04:43:10 Sgeo: what about y 04:43:24 Bike: he fixed you 04:43:35 BeingUntoDeath: recursiveness in neural networks usually means a network with cycles, which is pretty distinct from the usual CS concept, but related 04:43:49 or maybe i'm thinking 'recurrent' god i feel so stupid right now 04:43:55 I think BeingUntoDeath got the wrong idea about what recursion is 04:44:32 okay, thank you bike. 04:44:32 As though he tried to learn it from this conversation, I mean 04:44:37 'recursive' has like thirty billion meanings anyway 04:44:41 lol. 04:45:03 BeingUntoDeath: recursive just means inductive 04:45:10 nothing more to it 04:45:12 oh, and if you're interested in neural networks. the artificial ones are /nothing like real ones at all/. maybe you already know that but jesus it's annoying when people don't 04:45:15 ;DDDDDDDDDDDDDDDDDD 04:45:32 right, i know that. :) 04:45:43 thank you oklopol 04:47:06 it's like, you have a lemma, man, and then the lemma like... proves itself with a different n.... maaann........ 04:47:31 ok i'm going to stop acting stupid now. sorry about that. just gonna be legit stupid now. 04:48:00 BeingUntoDeath: inductive in the sense that you have that the first and second fibonacci numbers are 1 and 1 and fib(n) = fib(n-2) + fib(n-1) 04:48:54 No, the first and second Fibonacci numbers are −55 and 34. 04:49:10 http://www.reddit.com/r/programming/comments/20qojw/jdk_8_is_released/ 04:49:25 convenient that these things are just a shift away 04:49:42 -!- shikhin has quit (Ping timeout: 255 seconds). 04:51:24 recursion of course usually implies that the objects we are talking about are computer objects (and not, say, real numbers; then again, most of the interesting well-ordered things readily turn into computer objects, except maybe the well-orders themselves) 04:52:59 Java 9 will have TCO????!?!?!? 04:53:00 :D 04:53:50 Bike: maybe it's okay for me to know because i don't know anything about either of the two; what sort of differences are there between neural networks and... neural networks? 04:54:00 *for me not to know 04:55:31 well, basically, when artificial neural networks (the computer ones) were getting off the ground, it was the forties, fifties. von neumann hisself wrote about them. as you might expect the biological research was, well, we've advanced a lot in seventy years. 04:55:56 "John Conway's Game of Life is some kind of Artificial Life simulation. It's written in Java." 04:56:04 artificial neurons treat individual neurons as discrete input output functions, usually a convenient function (like a sigmoid curve) over a weighted sum of their inputs 04:56:06 I... what 04:56:15 Sgeo: :DSA 04:56:19 computer people kind of ran with that for seventy years 04:56:21 Sgeo: lol 04:56:44 Ok, I think the author of the page was trolling Google 04:56:46 meanwhile biologists found out it didn't work pretty fast. huxley model from squid neurons is like, a fourth degree PDE or some shit, and that's for one neuron 04:56:55 http://www.bitstorm.org/gameoflife/ 04:56:56 also it's shitty 04:57:13 Seems competent enough. View source. 04:57:14 i see 04:57:15 Sgeo: i do a double take every time i see an applet. 04:57:52 basically, biological neurons are complex cell assemblies that work as modulated analog signal processors and require a lot of electrophysics to understand at all. artificial neurons are simpler because why would computer people care. 04:58:21 i mean obviously ANNs are probably useful for something. optimization i guess? beats me 04:59:03 this gets you weird situations like a neuroscientist trying to assign parameters for an organism situation, and using global optimization techniques to do so. possibly you could use an ANN for this. would be funny 04:59:11 Ugh, ended up trying to watch videos of the board game 04:59:17 There's some crappy "new" version 04:59:21 game of life the board game? 04:59:42 Hasbro's 04:59:59 The thing with the cars? 05:00:04 yes 05:00:30 As far as I know, there are only two game of lifes 05:00:41 And one is not a board game, usually 05:00:41 Bike: to me it still sounds like in theory they might be deliberately studying a simplification of the model in order to get at least something out of it 05:01:09 oklopol: you mean computer people? yeah, but what they're getting out of it just isn't going to be that biologically relevant. it's going to be more like advances in ML. 05:01:57 but what if they solve the whole model, then add some components etc and get closer and closer to biologically relevant? i mean i don't think that's what's going on, but i can imagine a world where that's the case :P 05:02:22 (i think it's very playsible that they just ran with it) 05:02:25 *plausible 05:03:35 i don't think they're really trying... even if they were it's quite a trip from http://upload.wikimedia.org/math/0/2/a/02a0d787371e595719f83f8431ee898a.png to http://upload.wikimedia.org/math/5/e/c/5ec607907b2588dc038c1ef0168475dc.png 05:04:01 quite an /interesting/ trip i imagine, though 05:04:20 oo the first one is how gibbs measures are born 05:04:42 cool. 05:04:56 fuck yes, same gibbs. 05:05:51 like, if x is some type of energy or something, you want to minimize energy and then as energy increases, that configuration gets exponentially less likely. thus you weigh each state by e^(-x) where x is the energy. or something. 05:06:03 the latter one is the soliton model, which is kind of not mainstream but does have the advantage of explaining how general anesthetics work (we have no idea, which rules) 05:06:08 (the sum on the bottom is because you want them to sum to 1.) 05:06:49 yeah i have no idea what the second one is :P 05:07:09 i don't know how it works at all woooooo 05:07:22 :P 05:08:15 physics is hard. 05:08:55 i was contemplating going on a quantum physics course this spring 05:08:59 but i didn't :( 05:09:33 i flunked a kinematics course once, so imo doomed 05:10:03 F = ma 05:10:20 but like, what if there's lots of ms, man 05:10:33 if there's a lot of as you sum them 05:10:55 thus by induction you also sum the ms 05:11:22 damnn 05:13:17 also i tried to take physics 1 a few years ago but i didn't have time for it :((((( 05:14:12 switch majors. i gotta take courses in half the departments. (switching majors is totally a thing you can do as a whateveryouare) 05:14:50 F = m * dv/dt = m * d^2t/dt^2. f*dt^2 = d^2 t boing boing boing 05:15:08 the problem with switching majors to physics is all the momentum 05:15:18 -!- password2 has joined. 05:15:36 just make a turing machine out of the 5-body problem and they'll clearly accept you 05:15:42 i have done all my courses so i'm not sure switching majors would be of much help 05:16:03 actually the last 8 or so courses i've taken i didn't go to the exam because i didn't want to drop my average 05:16:08 thats the best time to switch. that way you dont have to leave school! 05:16:24 don't stop til lyyou got like forty master'ss 05:16:40 I can't blame inflation for this feeling that $100 was a lot in 2006 but isn't very much now, can I? 05:16:59 a friend of mine is working on something like 3 degrees atm 05:17:01 i'm so jelly 05:17:04 you can, depending on what you're buying. 05:17:16 you could have bought more than 2x as many bigmacs in 2006 with $100 05:17:20 wat do you even do with three degrees 05:17:36 i think he just wants to be an unemployed millionnaire 05:17:47 *millionaire 05:17:50 where's the millionaire bit come from 05:18:04 sgeo: apparently 100 2006 dollars would be worth like $117 now. totes lotsa ca$h 05:18:09 the application process for unemployed millionaire is really selective 05:18:20 bike: now do energy and food inflation 05:18:27 newsham: that's why you wanna have 3 degrees. 05:18:33 who do i look like the dhs 05:18:42 BLS? 05:19:01 don't you say that about my mother 05:19:28 oh, actually this thing i got the numbers from uses the CPI, so HA already incorporated them. 05:20:23 > 237 / 198 05:20:23 1.196969696969697 : Float 05:20:25 1.196969696969697 05:20:34 thats food+beverages 2006-2012 05:20:57 > 239 / 185 05:20:57 1.2918918918918918 : Float 05:20:58 1.2918918918918918 05:21:00 thats energy 05:21:04 http://www.bls.gov/cpi/cpid1401.pdf 05:21:10 dude quit disputing the internet 05:21:25 how has the apples to oranges cost ratio evolved during the last century? 05:21:51 can you be more specific? pacific rose? gala? granny smith? 05:21:55 are we including tangerines? 05:22:07 we are _not_ including tangerines 05:22:23 well here's a graph, featuring several line segments, as well as alphanumeric characters http://www.oceconomy.org/wibmeasures/n3-1.jpg 05:22:23 but otherwise, please integrate over apples with respect to the uniform distribution 05:22:25 -!- chaiomanot has quit (Quit: Leaving). 05:22:26 hope this helps 05:22:49 as you can see, the line segments look sort of like a hill, but with a little thingie on the right 05:23:09 the great thing about BLS statistics is they think the food you bought in 2014 is just as good as the food you bought in 1950. 05:23:23 i'd like to point out that, as a bonus, several non-alphanumeric characters are included 05:24:10 yes that is really fancy 05:24:13 even though you used to get beef from disease free, grass feed beef and now you get animal byproducts that were soaked in amonia in an attempt to make unedible meats somewhat disease free 05:24:29 i should review a boring article now 05:24:43 wouldnt you rather sit on a boring irc channel instead? 05:24:47 yes 05:25:11 if it's any consolation i have to read a boring article. 05:25:13 hey... can i ask you guys really noob questions about programming? 05:25:18 go for it 05:25:23 usually other programming channels aren't privy to noob-ass questions. 05:25:30 noob questions are fun 05:25:35 i'm programming in ruby. who knows ruby? 05:25:37 depends on the channel (but yeah programmers are assholes, sorry about that) 05:25:47 :) :) 05:25:52 btw the brainfuck article i reviewed was accepted, although only as a presentation, not in proceedings 05:26:03 i know /of/ ruby 05:26:11 maybe i can guess the semantics enough to answer basic questions 05:26:18 btw, on the topic of esoteric fun with computer programs, have you guys heard of this POC||GTFO publication? 05:26:27 I don't know what that is. 05:26:36 its an e-magazine, current issue is in pdf but can also be interpretted as some picture format and something else... 05:27:19 is a line where i define a var considered a block? or can blocks just go inside of defined variables(objects?) as methods? 05:27:30 its a zip file too 05:27:35 in other words, i'm wondering what a block is. 05:27:47 and a runnable image (ie. for qemu) 05:27:58 http://www.reddit.com/r/netsec/comments/1tw2ht/poc_gtfo_issue_0x02pdf/ 05:28:00 I think a block is more like a function? 05:28:19 "Ruby blocks are syntax literals for Proc objects" ok yeah 05:28:40 arent ruby blocks the body of lambda-expressions (non-pure)? 05:28:45 because i converted my test-program the other day into objects and made it OO, but i now realize all the def/end's with do/end's in them could be blocks instead? 05:28:49 <- not a ruby person, but thats the impression i had 05:29:00 newsham: that's what i'm getting out of this 05:29:24 ............right. ... :) 05:29:46 no idea what any of that means, thank you though. 05:29:53 i dont know if the line where you define a var is a block or not.. not a ruby person :( 05:30:33 i think to be a block you need the literal {}. 05:30:58 but yeah, that question was 2ruby4me, sorry. 05:32:47 beinguntodeath: guess we're the n00bs here :) 05:32:54 i'm getting the idea from codeacademy that a "code" block is what goes in between do and end in a method? 05:33:02 whether it's literal {} or not. 05:33:13 being between {}'s means being literal? 05:34:15 The word 'block' may be a bit overloaded 05:34:27 ah, yes, i think you can use do...end for procedures too 05:34:33 There's the Ruby usage, and there's the rest of the world usage of 'code block' which I can imagine slipping in 05:34:51 procedure ?= method 05:34:52 and what if we want to talk about rectangular prisms?? 05:35:05 BeingUntoDeath: prooooooobably the same in a ruby context but don't quote me 05:35:32 you know. some code you want to do several times. probably with parameters. and in ruby, attached to an object. 05:35:51 is procedure synonymous with method in CS? 05:35:53 well, i guess methods are procedures but not the other way around maybe. 05:36:05 nothing is synonymous with anything in CS, stop listening to me before i corrupt you 05:36:12 right. figured. 05:36:14 lol. :D 05:36:17 usually 'method' implies being attached to an object 05:36:21 People use those words for all sorts of things, but I think commonly (I may be wrong) methods are attached to objects and procedures aren't 05:36:42 okay. 05:36:56 methods get an implicit reference to the object they were attached to. procedures are pretty similar but not every procedure comes with a ref to an object 05:39:39 so when you "pass a block" to something... how do you refer to a particular block? that makes it sound like a variable. it's just nested in another method or comes in sequence in the code? 05:39:57 probably you pass it as a variable and use some call syntax. 05:40:12 like, in C, you can get passed a function pointer as a variable "foo", and then jus call it with foo() like usual. 05:40:25 and what is the something to which blocks are passed? Objects? this whole "everything is an object" in ruby may be starting to make some things fuzzy for me, being a new coder. 05:40:32 BUD: are you familiar with passing functions around to other functions? 05:40:50 ruby's blocks are sort of like functions, they just dont come with names 05:40:55 BeingUntoDeath: other procedures/methods (code) 05:40:59 the functioned that is passed to is just named inside the other function? 05:41:19 all the incoming function arguments are bound to names. 05:41:20 Bike: Ruby blocks can be passed to a method in such a way that they aren't a real argument but instead you call yield to call it 05:41:31 iirc 05:41:32 Sgeo: hoping that's irrelevant. 05:41:55 It's the more common way to do things that want a single callback etc. 05:43:01 as a simple example in another language which might just totally confuse you, "map" takes a function as an argument, and "runs" it on each element in a list. [1,2,3] is a list, and (\x -> x * 10) is an anonymous function (like a ruby block): 05:43:11 > map (\x -> x * 1) [1,2,3] 05:43:11 Can't disambiguate name: Effects.Env.::, Data.HVect.::, Prelude.List.::, Data.Vect.Quantifiers.::, Prelude.Stream.::, Prelude.Vect.:: 05:43:12 [1,2,3] 05:43:24 > map (\x -> x * 10) [1,2,3] 05:43:25 Can't disambiguate name: Effects.Env.::, Data.HVect.::, Prelude.List.::, Data.Vect.Quantifiers.::, Prelude.Stream.::, Prelude.Vect.:: 05:43:25 [10,20,30] 05:44:00 map has two arguments, the function and the list. these both get names when you're writing the definition of map 05:44:04 ?src map 05:44:04 map _ [] = [] 05:44:04 map f (x:xs) = f x : map f xs 05:44:16 ruby has map!! 05:44:40 yeah, lots of languages do. it dates from the 1950s or 1370s or whatever 05:44:45 so that's where you'd just add values or keys? 05:44:45 so when you call map you can pass in a ruby block and a list 05:44:46 very useful function 05:44:59 BeingUntoDeath: uh, maybe you're thinking of the wrong kind of map. 05:44:59 with .map? 05:45:05 Map has two different meanings 05:45:08 (Or more) 05:45:11 lol. 05:45:16 You stumbled onto a different meaning 05:45:22 but good news... they're also related 05:45:25 everything is related. 05:45:32 :O :O news to me. 05:45:34 we are all together 05:45:40 we're well on track to give you an esoteric answer 05:45:48 so, take newsham's thing, that multiplies by ten 05:45:51 My math teacher once accidentally made some gesture that was swearing at me when telling me that everything's related 05:45:59 the "keys" are [1,2,3] and the "values" are [10,20,30], see. 05:46:29 is there a bot here that does ruby? 05:47:03 newsham, your example helps conceptually, thank you. 05:47:15 even though it's not in ruby-eeze at all. 05:47:16 in ruby: [1, 2, 3].map { |n| n * 10 } 05:47:25 * Sgeo vaguely wonders if Self works on Cygwin 05:47:27 !interp ruby 05:47:27 aha!! 05:47:31 no? oh well. 05:47:39 okay. 05:47:41 that's ruby... 05:47:49 what is the |n| in that statement? 05:47:53 an argument. 05:47:58 er, a parameter. 05:48:00 !!! 05:48:04 that says that |n| receives an incoming argument in that block 05:48:11 o.o 05:48:20 map calls that block three times, once with n set to 1, once n=2, once n=3 05:48:41 so n is just a variable? could be anything? 05:48:53 its what the caller provided as an argument 05:49:07 so... that just makes a list n = [1,2,3]? 05:49:11 er... 05:49:25 10.times.each 05:49:27 lol. 05:49:27 no, n is an element. that's what map does. 05:49:32 map builds up a list of [f(1), f(2), f(3)] where f is the block 05:49:35 n is one, the first time that { |n| n * 10 } is called. The second time, it's 2 05:49:40 the third time, it's 3 05:49:49 so n is an array? 05:49:54 i'm just going to stop talking, enough people are doing so as is. gotta concentrate anyway 05:50:03 thank you for everything bike. 05:50:16 In this case, all three times, it will be just a number. 05:50:24 [1, 2, 3] is the array 05:50:25 when map calls f(2), n is set to 2 and the block returns 2*10 = 20 05:50:26 right! 05:50:42 ohhhh. 05:51:42 Huh. Self has object literals. 05:51:59 in ruby? 05:52:07 i'm not to understanding .self yet. 05:52:07 BeingUntoDeath: I'm talking about an entirely different language 05:52:10 So ignore my ramblings 05:52:32 alright. thanks for your help. 05:53:08 note: you can also just define a procedure in ruby called f taking an argument n which returns n*10 05:53:26 passing in that procedure would give the same results as passign in the block { |n| n * 10 } 05:54:03 http://tigergenome.org/ i love the future 05:54:07 if i knew ruby syntax better icould even show you what that would look like ! ;-) 05:55:44 Bike: the future is people splicing it into human embryos 05:56:15 congratulations your child has white fur and also strabismus 06:03:31 "and, more generally, that a slot initializer may not refer to any textually enclosing object literal." 06:03:34 This makes me a bit sad 06:04:03 -!- Froox has quit (Ping timeout: 255 seconds). 06:04:23 -!- Frooxius has joined. 06:08:30 -!- Sellyme has quit (Ping timeout: 252 seconds). 06:19:50 ooh 06:19:57 3 + 4 * 7 is illegal in Self 06:20:43 ooh 06:20:50 self being the original OO language? 06:20:51 5 min: 4 max: 7 06:21:07 That's a message to 4 and a message to 5 06:21:16 In Smalltalk it would be just a message to 5 06:21:25 5 min: 4 Max: 7 would be just the one message to 5 06:21:28 (in Self) 06:21:50 newsham: I think that's more Smalltalk, although I think others came before it 06:21:54 Self is prototypical OO 06:22:04 prototypal 06:22:06 whatever 06:22:57 "The association order and capitalization requirements are intended to reduce the number of parentheses necessary in Self code." 06:23:10 Oh god I can imagine incompetent programmers having large hard to read lines that abuse that 06:23:32 oh, simula is what i was thinking of 06:23:55 <^v> i am making a table for filling in malbolge memory 06:24:01 -!- Sellyme has joined. 06:24:01 -!- Sellyme has quit (Excess Flood). 06:24:03 <^v> so you dont have to use crz 06:26:24 -!- Sellyme has joined. 06:28:32 * Sgeo wonders if the Self lobby can be hidden/overrridden to serve as a sandboxing mechanism 06:29:14 -!- password2 has quit (Ping timeout: 252 seconds). 06:31:02 "behavior that allows an object to behave like a block that evaluates to that object (this permits a non-block object to be passed to a method that expects a block)" 06:31:03 eww 06:32:32 -!- ^v has quit (Ping timeout: 252 seconds). 06:33:28 so you guys program in these crazy languages for fun? 06:34:13 yeah. don't use as to cosign ur leases 06:34:36 i'm just waiting for a scout to discover me and pay me the big bucks to program in crazy languages 06:34:47 sweet man. lol. 06:35:42 at my day job i use matlab. so like, rock and a hard place here, yeah? 06:35:59 surely you can do something ridiculous with matlab 06:36:10 you don't even know. 06:36:18 ooh, I like exitValue 06:36:27 http://www.thenewsh.com/~chat/j/XPrelude.java 06:37:05 (I think I just like anything that makes return-like statements without being in a method more sensible. Although I think people generally hate early returns, so...) 06:38:06 "traits number defines behavior common to all numbers, such as successor, succ" 06:38:11 * Sgeo cries a bit inside 06:38:45 what did you do when you watched like, schindler's list? die? combust? 06:38:47 making debrujin succ less 06:44:25 -!- shikhin has joined. 06:53:52 -!- ais523 has joined. 06:58:59 -!- Bike has quit (Quit: good day). 07:03:06 -!- tromp has joined. 07:03:51 -!- Slereah_ has joined. 07:05:55 -!- Slereah__ has quit (Ping timeout: 264 seconds). 07:07:30 -!- tromp has quit (Ping timeout: 255 seconds). 07:20:36 Ooh, a dodecagon-shaped coin. (Though I'm not entirely sure why a Finnish newspaper bothers to put a UK coin redesign proposal on its front web-page.) 07:23:42 err, seriously? all UK coins have an odd number of sides, because they have constant diameter (to be easier for vending machines to check) 07:24:13 also, the UK mint makes coins and banknotes for a huge number of countries, I think just because they got good at it 07:24:24 http://www.bbc.com/news/uk-politics-26632863 is what they linked to. 07:29:52 hmm, in the Hacker News comments about this blog post of mine, someone mentioned removing stack frames using a negative argument to alloca 07:30:13 I guess it's hard to stop people finding ways to implement INTERCAL functionality in C 07:32:41 Also, this article about the popularity of different first names says that (paraphrasing) "the popularity of most names over time follows a Gauss curve, with peaks occurring usually every 100 years", which makes no sense, because there's only one peak. 07:33:31 -!- itsy has quit (Read error: Connection reset by peer). 07:35:36 -!- MoALTz__ has joined. 07:38:32 -!- MoALTz_ has quit (Ping timeout: 252 seconds). 07:46:12 -!- TodPunk has quit (Read error: Connection reset by peer). 07:46:24 -!- TodPunk has joined. 07:48:42 -!- Slereah_ has quit (Ping timeout: 264 seconds). 07:50:30 -!- Slereahphone has joined. 08:06:04 -!- BeingUntoDeath has quit. 08:06:25 -!- MindlessDrone has joined. 08:06:59 -!- Slereahphone has quit (Remote host closed the connection). 08:08:17 -!- Slereahphone has joined. 08:14:05 -!- Slereahphone has quit (Remote host closed the connection). 08:14:57 -!- Slereahphone has joined. 08:20:51 -!- Slereahphone has quit (Remote host closed the connection). 08:21:10 -!- Slereahphone has joined. 08:25:44 -!- TodPunk has quit (Read error: Connection reset by peer). 08:25:57 -!- TodPunk has joined. 08:55:18 -!- conehead has quit (Quit: Computer has gone to sleep.). 09:24:14 -!- MoALTz__ has quit (Quit: brb). 09:24:28 -!- MoALTz has joined. 09:33:39 -!- password2 has joined. 09:41:03 -!- Slereahphone has quit (Quit: Colloquy for iPhone - http://colloquy.mobi). 09:42:20 -!- Slereahphone has joined. 09:48:26 Hm, the ctrl key is stuck down. 09:50:57 I'm surprised that I can write this. 09:52:19 Heh, I fixed it by starting the on-screen keyboard program and holding down its ctrl key. 10:04:32 -!- shikhout has joined. 10:06:54 that… what? 10:07:03 is it stuck as in physically stuck down?# 10:07:07 -!- shikhin has quit (Ping timeout: 264 seconds). 10:07:08 -!- shikhout has changed nick to shikhin. 10:07:13 or just that it registers as being constantly pressed? 10:07:23 you can often fix the latter problem just by pressing both Ctrl keys on the keyboard a few times 10:16:53 In this USB day and age, I've fixed an entirely confused keyboard once or twice by dis- and reconnecting it. 10:17:20 -!- boily has joined. 10:19:01 Incidentally, I wonder if there's something in MPX (multi-pointer X) that'd make it possible "in general" for you to have, in addition to independent mouse pointers, also several independent keyboards with their own input foci. 10:22:55 I can see that massively confusing window managers 10:26:59 "MPWM is a proof-of-concept, not a real window manager. It's lacking most features that you'd expect from a window manager so don't use it in production. Or on your desktop. Or really anywhere." 10:46:32 -!- Slereahphone has quit (Remote host closed the connection). 10:46:51 -!- Slereahphone has joined. 11:06:44 -!- boily has quit (Quit: GALLUS GALLUS GALLUS). 11:40:44 Most Helpful Reply http://answers.microsoft.com/en-us/windows/forum/windows_xp-performance/error-message-revocation-information-for-the/1a6559d4-f45a-442a-b1c4-6844f9cd447b 11:48:38 -!- impomatic has quit (Ping timeout: 240 seconds). 11:56:13 -!- Slereahphone_ has joined. 11:58:43 -!- Slereahphone has quit (Ping timeout: 264 seconds). 11:58:44 -!- Slereahphone_ has changed nick to Slereahphone. 12:01:14 -!- tromp has joined. 12:02:18 -!- Froox has joined. 12:02:35 -!- Frooxius has quit (Read error: Connection reset by peer). 12:04:34 -!- lexande has quit (Read error: Operation timed out). 12:07:02 -!- lexande has joined. 12:14:13 -!- yorick has joined. 12:16:15 -!- Slereahphone has quit (Remote host closed the connection). 12:16:59 -!- Slereahphone has joined. 12:41:08 -!- Slereahphone has quit (Remote host closed the connection). 13:07:42 -!- Sgeo has quit (Read error: Connection reset by peer). 13:11:19 -!- nisstyre has quit (Ping timeout: 264 seconds). 13:29:52 -!- Slereahphone has joined. 13:50:49 -!- shikhout has joined. 13:53:45 -!- Slereahphone_ has joined. 13:54:31 -!- Slereahphone has quit (Ping timeout: 264 seconds). 13:54:42 -!- Slereahphone_ has changed nick to Slereahphone. 13:55:54 -!- password2 has quit (Read error: Connection reset by peer). 14:03:54 -!- shikhout has quit (Read error: No route to host). 14:04:36 -!- shikhout has joined. 14:28:09 It amuses me tremendously that many people have an app on their phones that send messages that will self-destruct in 5 seconds 14:28:13 And then use it for selfies 14:41:32 -!- oerjan has joined. 14:53:54 -!- nisstyre has joined. 14:54:12 -!- Slereahphone has quit (Remote host closed the connection). 14:54:28 -!- Slereahphone has joined. 15:03:38 -!- impomatic has quit (Ping timeout: 240 seconds). 15:16:00 -!- shikhin has quit (Disconnected by services). 15:16:02 -!- shikhout has changed nick to shikhin. 15:17:07 -!- shikhout has joined. 15:24:49 -!- ^v has joined. 15:24:56 -!- nisstyre has quit (Ping timeout: 246 seconds). 15:34:15 -!- Bike has joined. 15:35:39 -!- ais523 has quit. 15:45:42 -!- nisstyre has joined. 15:58:40 -!- shikhin has quit (Read error: No route to host). 15:58:40 -!- shikhout has changed nick to shikhin. 15:59:32 -!- shikhout has joined. 16:04:15 -!- shikherr has joined. 16:06:31 * oerjan skips the rest of log reading today 16:07:07 -!- shikhin has quit (Ping timeout: 264 seconds). 16:07:09 -!- shikherr has changed nick to shikhin. 16:07:23 -!- shikherr has joined. 16:07:27 nooooo 16:07:29 -!- shikhout has quit (Ping timeout: 254 seconds). 16:08:41 but i have too many tabs open already :( 16:08:56 and too little time. shaving -> 16:13:00 -!- shikherr has changed nick to sortin. 16:13:32 -!- sortin has changed nick to shikhout. 16:14:49 -!- nisstyre has quit (Ping timeout: 240 seconds). 16:19:55 -!- nooodl has joined. 16:32:13 -!- Slereahphone has quit (Quit: Colloquy for iPhone - http://colloquy.mobi). 16:40:38 Taneb: selfies and dick pics (or are those a kind of selfie?) 16:41:26 -!- FireFly has quit (Excess Flood). 16:42:01 I'd say those are another kind of selfie 16:42:41 -!- FireFly has joined. 16:43:57 -!- jconn has quit (Ping timeout: 255 seconds). 16:47:14 snapchat is a rare example of a product with DRM-like features that are actively desired by the user 16:48:29 -!- Slereahphone has joined. 16:48:50 -!- shikhin has quit (Disconnected by services). 16:48:53 -!- shikhout has changed nick to shikhin. 16:49:29 -!- shikhout has joined. 16:53:02 <^v> "There are 5,232 registered users, but most of them are spambots." xD 16:53:03 -!- Slereahphone has quit (Remote host closed the connection). 16:53:53 -!- Slereahphone has joined. 16:54:10 -!- tertu has joined. 16:56:34 it says 5,235 now hth 16:57:09 also no one registered in between. 16:57:11 -!- xpt_ has joined. 16:57:43 -!- xpt_ has changed nick to xp. 16:57:48 -!- xp has quit (Client Quit). 16:58:36 <^v> http://esolangs.org/wiki/%E2%99%A6 16:58:40 <^v> can someone explain this? 17:00:27 ∟○∟ 17:01:25 "wat" -- elliott 17:01:30 ____ 17:02:28 ♦/~ and ♦ should be swapped or something 17:02:34 it's a dumb page to have at the top level 17:02:43 and not categorised and stuff 17:03:32 Why is ♦ not a character of ♦ 17:03:58 Few languages have their name as one of their instructions 17:05:01 hm there has to be one 17:05:43 There is HQ9+ 17:05:44 well, Esme counts, CLEARLY 17:06:00 that's not _one_ of its instructions, Jafet 17:11:20 -!- constant has changed nick to trout. 17:14:10 -!- password2 has joined. 17:19:04 -!- Slereahphone has quit (Write error: Broken pipe). 17:21:43 -!- oerjan has quit (Quit: Spyong). 17:38:31 <^v> anyone make hello world in clusterfuck (utilizing the added chars ofc) 17:53:34 @tell oerjan Also Ook! 17:53:34 Consider it noted. 17:54:13 @tell oerjan At least more or less, if not quite. 17:54:13 Consider it noted. 17:56:10 preffy useless, just change <> in any brainfuck version to ^v 17:56:14 *preffy 17:56:22 <^v> :P 17:57:23 kmc: what kind of DRM-like features? 17:58:21 "Esme is an esoteric programming language[citation needed]" 17:58:27 i already like it 17:58:33 dick pic suppression 18:15:04 FireFly: deleting photos from the receiver's device after n seconds 18:21:29 heh. 18:23:27 kmc: I feel like they're trying to sort of emulate the notion of a night out, or sitting around chatting with friends. 18:23:38 kmc: People would get super mad if you had a recording device running at all times. 18:23:49 (not that I use any of these services, just speculation) 18:25:28 -!- Slereahphone has joined. 18:29:00 yeah 18:39:04 <^v> agony is neat 18:40:13 "most of the time backwards compatible with Brainfuck" ! 18:42:56 SELECT. has its name as an instruction 18:45:21 -!- not^v has joined. 18:45:52 pop eax; cmp byte ptr [esi], dh 18:48:26 -!- ^v has quit (Ping timeout: 252 seconds). 18:51:08 -!- FireFly has quit (Excess Flood). 18:53:07 did someone push something on the stack earlier, or did you just underflow the stack? 18:53:16 -!- FireFly has joined. 18:53:51 it's relevant to Few languages have their name as one of their instructions 18:57:17 c++ sort of does? at the very least, its name contains one of its instructions... 18:59:59 which it stole from C ;-) 19:01:28 http://24.media.tumblr.com/b0551c10cef630285d16b973731d77f0/tumblr_n2gltz0yJc1rugltbo1_1280.png bitcoin 19:04:50 welp 19:05:13 Shark Jumped 19:06:28 I can see the connection: Both are a matter of belief. 19:07:10 int-e: By that logic, you could say jesus loves nearly any currency 19:08:04 "what is caesar's is caesar's. everything else? mine" 19:08:26 maurer: ask the catholic church, they will agree. 19:10:08 *googles* "Render to Caesar the things that are Caesar's; and to God the things that are God's." 19:11:05 AMD64\n (in long mode) is xor al,0xa with four nonsense prefixes 19:17:02 ... useful. 19:20:08 -!- password2 has quit (Ping timeout: 246 seconds). 19:22:43 -!- Bike has quit (Ping timeout: 264 seconds). 19:32:49 -!- tertu has quit (Ping timeout: 240 seconds). 19:32:57 -!- tertu has joined. 19:55:39 "Z80" in z80 is "ld e, d; jr c, $+50". 19:58:17 -!- MoALTz has quit (Ping timeout: 246 seconds). 19:58:47 -!- conehead has joined. 20:06:22 -!- Bike has joined. 20:06:34 -!- FireFly has quit (Excess Flood). 20:06:45 -!- Bike has changed nick to Guest66962. 20:07:46 -!- Guest66962 has changed nick to Bike. 20:08:04 -!- nooodl has quit (Excess Flood). 20:08:04 -!- FireFly has joined. 20:10:22 -!- nooodl has joined. 20:14:49 -!- Slereahphone has quit (Quit: Colloquy for iPhone - http://colloquy.mobi). 20:22:29 https://twitter.com/Xythar/status/445426997313806336/photo/1/large the anime community attempts security 20:29:20 i was wondering why only 1 in 4billion of adamants files checked out 20:32:44 -!- MindlessDrone has quit (Quit: MindlessDrone). 20:55:13 -!- Bike has quit (Ping timeout: 240 seconds). 21:10:20 -!- not^v has changed nick to ^v. 21:11:03 <^v> Bike, ._. stupeid 21:19:13 -!- Bike has joined. 21:24:26 -!- shikhout has quit (Disconnected by services). 21:24:30 -!- shikhin has changed nick to shikhout. 21:25:36 -!- shikherr has joined. 21:29:38 -!- shikherr has changed nick to shikhin. 21:30:41 -!- shikhout has quit (Ping timeout: 246 seconds). 22:04:26 -!- shikhout has joined. 22:07:24 -!- shikhin has quit (Ping timeout: 255 seconds). 22:07:26 -!- shikhout has changed nick to shikhin. 22:10:41 <^v> i made an agony inturpreter http://esolangs.org/wiki/Agony and the hello world example only prints "Hello" 22:11:00 <^v> the brainfuck one works fine though 22:12:32 <^v> ah, its because only hello was encoded into it 22:12:45 <^v> anyone mind if i change it? 22:17:03 <^v> wait 22:17:04 <^v> wat 22:17:22 <^v> decoded it and its 0A 12 64 6C 72 6F 57 20 6F 6C 6C 65 48 22:17:31 <^v> :< i must be doing something wrong 22:19:18 -!- boily has joined. 22:21:50 <^v> sweet it works now 22:22:11 -!- oerjan has joined. 22:31:22 hellørjan. 22:38:08 <^v> :D oerjan <3 22:41:30 -!- Sellyme has quit (Excess Flood). 22:43:25 -!- Sellyme has joined. 22:44:36 heily^v 22:45:02 @messages-loot 22:45:02 fizzie said 4h 51m 28s ago: Also Ook! 22:45:02 fizzie said 4h 50m 49s ago: At least more or less, if not quite. 22:47:29 I think... that was my question? 22:49:34 Bike: hahaha 22:53:04 am i evil for even _considering_ that we could put up Esme as featured April 1 language 22:53:16 (yes, obviously) 22:53:41 if not, Ook! could be a good alternative. 22:53:56 (i don't think any of them are official candidates, or are they? 22:53:58 ) 22:54:09 what is fungot's choice? 22:54:09 boily: i am just as confused. you, in that line, that i have gone totally wanting, and then you can choose fnord, but don't step on cursed items. his most distinctive features are. this explanation assumes that if the teen is getting sexually excited. right. i'm not doing anything to decrease the number of 22:54:37 I choose fnord! (without stepping on cursed items, of course.) 22:55:02 we don't actually have a language named Fnord yet 22:55:09 -!- Sprocklem has joined. 22:57:01 but, but... 22:57:28 it's possible to correct that, i believe. 23:01:44 -!- Sorella has joined. 23:04:01 Oculus Rift Development Kit 2 http://youtu.be/OlXrjTh7vHc 23:06:19 What do you guys think about Benio http://benkreger.com/Benio.txt 23:08:56 i want one that's pinku (that's japanese for pink) 23:10:56 -!- idris-ircslave has quit (Ping timeout: 252 seconds). 23:11:53 -!- Melvar has quit (Ping timeout: 252 seconds). 23:14:38 -!- Melvar has joined. 23:15:51 <^v> <3 agony 23:15:51 <^v> .encagony :3 this converts text into agony cod 23:15:52 <^v> <^v> ping, <[.<]$$$,$[~<~*~>{$+.~]~*~+~}{$~*+<~]~.{$+<+-~@+<{$+>+<+{~@+~~]~*~>{$+>~.~-+<{$>>>, 23:16:10 <^v> so, what should i code next 23:16:17 what's all this then 23:16:23 eodermdrome hth 23:16:53 <^v> i added agony to my bot 23:17:21 are there any esolangs where SAT solvers are the only viable implementation strategy? 23:17:26 eodermdrome might be one 23:17:50 there are some non-eso langs where the typechecker uses a SAT/SMT solver 23:29:16 dammit. I never should have opened that page → http://gabrielecirulli.github.io/2048/ 23:34:54 boily: well guess _why_ i didn't have time to read the logs earlier today 23:41:55 http://ov3y.github.io/2048-AI/ http://doge2048.com/ http://www.csie.ntu.edu.tw/~b01902112/9007199254740992/ http://hczhcz.github.io/Flappy-2048/ 23:42:14 I am sleepy 23:46:42 -!- tromp has quit (Remote host closed the connection). 23:47:13 -!- tromp has joined. 23:51:25 kmc: you are a vile, very vile person. 23:51:31 Taneb: you are a sleepy person. 23:51:33 -!- tromp has quit (Ping timeout: 265 seconds). 23:51:43 Yes 23:53:09 I saw kmc's message about 2048 and my first thought was "that's isomorphic to multiplication" 23:53:33 ? 23:55:24 I don't know either 23:58:10 <^v> hey, where can i get a useful inturpreter 23:58:27 /usr/bin/perl 23:59:00 * boily tries out the doge-mille-quarante-huit version. ow. 23:59:03 <^v> http://esolangs.org/wiki/Useful! 23:59:49 boily: the background color really makes it 23:59:58 it doesn't even need javascript!