00:23:54 -!- kipple__ has joined. 00:31:52 -!- jix has quit ("Bitte waehlen Sie eine Beerdigungnachricht"). 01:04:11 -!- calamari has quit ("Leaving"). 01:46:48 Oh yeah, my newest hat = el the awesome. 02:38:06 -!- BigZaphod has joined. 06:28:22 -!- kipple__ has quit (Read error: 110 (Connection timed out)). 06:35:58 -!- cmeme has quit ("Client terminated by server"). 06:36:41 -!- cmeme has joined. 06:56:52 -!- calamari has joined. 06:58:19 hi 06:58:50 cool, someone already put a p'' article on the wiki.. good work :) 07:11:03 I think I need to make an esoteric programming language that uses hieroglyphics. 07:19:12 or invent a new writing system and use that 07:20:05 provide no instructions for use, no documentation of any kind.. and make it worse than malbolge 07:20:16 ;) 07:21:37 oh, and source code is for wimps.. provide a binary for some obscure architecture that no one uses anymore 07:24:05 just suggestions, of course :) 07:25:12 that's interesting though.. I wonder what a programming language would look like if the ancient egyptians had computers 07:27:09 bbl 07:27:11 -!- calamari has quit ("Leaving"). 07:59:59 -!- clog has quit (ended). 08:00:00 -!- clog has joined. 09:57:34 -!- jix has joined. 09:57:59 moin 10:23:22 -!- calamari has joined. 10:32:26 <{^Raven^}> calamari: you could provide a rosetta polyglot a few years after release that had the same program transcribed in malbolge and hierogliphs 10:33:42 raven: or the programmer could write it when in an altered mental state.. then hopefully nobody will know how it works :) 10:34:04 <{^Raven^}> calamari: programs could be written using paint or similiar graphics package :) 10:34:47 /clear 10:34:55 can't be reading docs ;) 10:46:50 <{^Raven^}> i'm finding thinking up a new esolang a bit difficult, best i have come up with is a mainstream language expressed in a hard to program way 10:48:14 most of my languages aren't very creative.. make an uncreative one and just don't promote it ;) maybe you'll get some ideas along the way 11:19:17 -!- calamari has quit ("Leaving"). 11:39:35 -!- yrz\werk has changed nick to pnz. 11:41:22 -!- pnz has changed nick to yrz. 11:45:43 -!- Keymaker has joined. 11:45:55 hhi, 11:46:16 dbc! 11:50:43 dbc: looks like awesome quine! 11:55:37 cpressey: i should look the pictures of that book sometime.. 11:55:52 the text i wouldn't understand 12:00:27 -!- kipple__ has joined. 12:16:07 -!- CXI has joined. 12:26:16 <{^Raven^}> I have added a few more constants to http://esolangs.org/wiki/Brainfuck_constants 12:35:55 hmmm.. anyone thought how one could dublicate stuff in brainfuck memory? like first there would be "000brainfuck" in memory and after dublicating it there would be "000brainfuck0brainfuck".. 12:36:21 i can't think of any easy way 12:36:54 hmm 12:37:02 i wonder if i got one idea.. 12:39:10 <{^Raven^}> If the length of the block to be duplicated was fixed it would be simpler 12:39:19 yep, only for finite strings. 12:39:48 that's true 12:40:32 for finite/small the >>>>>>>>>>>>>>>>>>>>>>>>>>>+<<<<<<<<<<<<<<<<<<<..... would be simples 12:40:37 t 12:41:38 i think i got it.. 12:41:48 now it'll take a moment to program.. 12:46:21 this could make up a nice bfcc#2 12:46:45 bfcc? 12:46:53 brainfuck component competition 12:47:09 the first competition i ran 12:47:23 it got nicely entries.. 12:47:28 check bf golf forum 12:47:41 bf golf forum? 12:47:46 yeah 12:47:49 do you know it? 12:47:52 no 12:48:01 brainfuck.sourceforge.net 12:48:05 (iirc) 12:48:08 there select that forum 12:48:13 or link to that forum 12:55:23 -!- CXI has changed nick to Ryu. 12:56:20 -!- Ryu has changed nick to CXI. 13:14:07 mmmh braindamage.. 14:05:28 YEEEEAAAAAHHHHHHHHHHHHHHH!!!!!!!!!!!!!!! 14:05:36 the program works perfectly 14:16:00 what program? 14:16:18 a program that dublicates n non-zero cell(s) in memory 14:16:20 like 14:16:33 0data to 0data00data 14:17:35 128 bytes.. 14:17:46 probably could made shorter 14:18:00 but this is a quick hack.. 14:18:03 [>>[>]<[[>>+<<-]<]<[[>+<-]<]<[[>+<-]<]>>[>]>[>]<[>+>+<<-]>[<<[<] 14:18:03 <[<]<+>>[>]>[>]>-]<<[<]<[<]<[>+<-]>[>]>[>]>>[[<+>-]>]<<[<]<]<[<] 14:18:50 it can be easily modified to make the data form 0data to 0data0data (one 0 instead two) 14:19:02 anyways, this program assumes that; 14:19:21 there is data in memory 14:19:22 that 14:19:33 has at least one zero cell before it 14:19:36 like 0data 14:20:11 and that after that data there are empty cells 14:20:17 (zero) 14:21:13 as well, when starting the program, the program assumes the pointer is the last data cell 14:21:25 like 0 d a t a(p) 14:21:57 actually, what's accidentally left to the version i just posted, is '[>>[>]<' in the very beginning. 14:22:19 hey, wait a bit.. 14:22:38 aarg 14:22:41 nothing nothing!! 14:22:45 don't read what i said 14:22:48 i said wrong 14:22:53 it's vital part of the program 14:23:06 sorry, don't remove it.. everything's as supposed to be, in that code.. 14:23:14 there's no extra 14:23:53 oh, and when the execution ends, the program returns to the first cell, the one on the left side of data, like 0(p) d a t a 14:26:44 notice that this is a code snippet, not "actual" program.. so you need to have some data there (or actually not), but you need to have at least one empty cell on the left of the starting cell.. 14:27:24 so, just add '>' to the very beginning if you want to run that program (it doesn't, however do much with no-data) 15:15:56 -!- yrz_ has joined. 15:27:28 -!- yrz has quit (Read error: 110 (Connection timed out)). 17:06:57 -!- jix has quit (brown.freenode.net irc.freenode.net). 17:06:57 -!- pgimeno has quit (brown.freenode.net irc.freenode.net). 17:08:48 -!- jix has joined. 17:08:48 -!- pgimeno has joined. 20:06:32 -!- J|x has joined. 20:07:08 -!- jix has quit (Nick collision from services.). 20:07:10 -!- J|x has changed nick to jix. 21:16:17 -!- Keymaker has quit (Read error: 104 (Connection reset by peer)). 23:28:01 -!- BigZaphod has quit. 23:28:02 -!- kipple__ has quit (Read error: 54 (Connection reset by peer)). 23:35:28 -!- calamari has joined.