00:00:37 Sgeo: Yes 00:00:50 Sgeo: because it's Lisp 00:21:40 -!- RoboGregorR has quit. 01:10:46 -!- GregorR has joined. 01:11:41 -!- GregorR has quit (Remote closed the connection). 01:12:56 -!- GregorR has joined. 01:14:27 -!- CXI has joined. 01:29:01 -!- GregorR has quit (Remote closed the connection). 01:29:47 -!- GregorR has joined. 01:33:01 -!- GregorR_ has joined. 01:35:21 -!- GregorR has quit (Remote closed the connection). 01:44:26 -!- nameless has joined. 01:45:17 does a language who is not comprehensible cause the syntax but cause the programming method can be considered like an esoteric language ? 01:45:41 Some do, some don't, sort of depends. 01:45:43 -!- GregorR_ has changed nick to GregorR. 01:48:00 -!- GregorR has quit (Remote closed the connection). 01:48:01 nameless: Yes. 01:48:12 -!- GregorR has joined. 01:48:24 ok 01:48:39 Smetana is a great example 01:49:22 !wiki smetana 01:49:25 -!- GregorR has quit (Remote closed the connection). 01:49:31 !doc smetana 01:49:33 -!- GregorR has joined. 02:06:39 -!- nameless has quit ("Leaving"). 02:34:17 Ah, yes. Smetana. 02:35:30 -!- GregorR has quit (Remote closed the connection). 02:35:59 -!- GregorR has joined. 02:36:41 «A mí me lo gusta también.» 02:36:47 Is that correct? 02:51:54 -!- lindi- has quit (Remote closed the connection). 02:52:00 -!- lindi- has joined. 04:00:24 -!- GregorR has quit (Remote closed the connection). 04:01:20 -!- GregorR_ has joined. 04:50:35 -!- ihope has quit ("Chatzilla 0.9.69.1 [Firefox 1.5.0.1/2006011112]"). 05:25:16 -!- GregorR_ has quit (Remote closed the connection). 05:25:57 -!- GregorR_ has joined. 05:26:22 -!- CXII has joined. 05:40:31 -!- Sgeo has quit (Read error: 110 (Connection timed out)). 05:44:17 -!- CXI has quit (Connection timed out). 05:54:44 -!- GregorR_ has quit (Remote closed the connection). 05:54:59 -!- GregorR_ has joined. 06:22:54 -!- GregorR_ has quit (Remote closed the connection). 06:23:33 -!- GregorR_ has joined. 07:10:39 -!- Arrogant has joined. 07:18:29 -!- GregorR_ has quit (Remote closed the connection). 07:18:52 -!- GregorR_ has joined. 07:26:21 -!- GregorR_ has quit (Remote closed the connection). 07:26:59 -!- GregorR_ has joined. 07:59:59 -!- clog has quit (ended). 08:00:00 -!- clog has joined. 08:26:36 -!- Arrogant has quit ("Leaving"). 08:28:14 -!- GregorR_ has quit (Remote closed the connection). 08:37:05 -!- GregorR___ has joined. 08:37:44 -!- mtve has joined. 08:49:36 -!- GregorR___ has changed nick to GregorR. 08:58:03 -!- GregorR has quit (Remote closed the connection). 08:58:48 -!- GregorR has joined. 09:03:08 -!- GregorR has quit (Remote closed the connection). 09:04:10 -!- GregorR has joined. 09:05:09 -!- GregorR has quit (Remote closed the connection). 09:06:38 -!- GregorR has joined. 09:17:06 -!- GregorR has quit (Remote closed the connection). 09:17:41 -!- GregorR has joined. 09:25:03 -!- jix has joined. 09:27:38 moin 09:48:06 SYN 10:18:50 -!- CXII has quit (Connection timed out). 11:48:59 SYN, ACK 12:08:50 ACK 12:10:07 Very good, but come to think of it, I don't really have anything much to say. FIN 12:15:15 FIN ACK 12:18:29 ACK 12:19:33 0o 12:24:20 jix: read up on IP 12:24:33 SimonRC: i don't want to 12:31:15 never mind then 12:43:13 -!- GregorR has quit (Remote closed the connection). 12:43:34 -!- GregorR has joined. 12:56:50 -!- GregorR has quit (Remote closed the connection). 14:12:12 -!- nooga has joined. 14:12:19 urgh 14:12:27 lisp hackers are so annoying 14:36:54 No, Java3D is annoying. 14:37:12 It is not designed for me to use. 14:37:24 java is designed to be annoying 14:37:47 Java is designed for the average programmer in a large group. 14:43:04 coding java without intellisense(tm), and good IDE is impossible 14:45:00 I think the Java3D api was desigend to drive me nuts. 14:45:11 You can't even compose two rotations without having to give each one a name. 14:45:40 omg 14:46:27 You have to create the first, create a temporary rotation, set the angle and axis of each, then ask the first to multiply itself by the second. 14:47:20 and of course, the methods to set the angle and axis return void, so you can't do this: 14:49:38 "trans1 = new Transform3D().rotX(0.5).mul(new Trransform3D().rotY(0.2));" 14:50:11 omigosc 14:50:14 moigosh 14:50:16 lol 14:50:18 omigosh 14:51:10 :-) 14:51:21 No, you have to do this: 14:51:25 Transform3D rot = new Transform3D(); 14:51:25 rot.rotX(pu/12); 14:51:25 Transform3D subRot = new Transform3D(); 14:51:25 subRot.rotY(pu/8); 14:51:26 rot.mul(subRot); 14:51:40 (pu = 2pi) 14:51:55 that sucks ALOT 14:53:12 Likely Haskell: rot = rotY (pu/8) .*. rotX (pu/12) 14:53:37 where .*. composes transformations (like functions) 15:03:51 hm eeee 15:05:32 hm... do you think that making function a type in sadol will help it to be functional? 15:06:14 like :f~1+#_01 instead of ~f1+#_01 15:06:26 and apply: )f2 {=>3} 15:11:22 yeah, but... 15:11:27 wlah? 15:11:37 you will end up with a gazillion )))) in your program 15:11:40 what else? cons? 15:11:51 solution: take a leaf from the book of common lisp. 15:11:57 SimonRC: eh, lisp is worse with those () 15:12:01 nonono 15:12:03 I mean:... 15:13:00 what do you mean " take a leaf from the book of common lisp."? 15:13:30 Common Lisp puts functions in a seperate namespace. Not a good idea here, but the idea of functions (typically called) being separate from values (typically passed to them), is a good idea... 15:13:46 so, most functions act like already. 15:14:05 most variables act like variables, as already.. 15:15:21 but, you can make a function be parsed like a variable (being a leaf not a branch node in the parse tree) or a variable act like a function (be a branch not a leaf in the parse tree) 15:15:39 could even be mad backward-compatible 15:15:50 hm 15:16:28 so application would be natural, fxy {f(x,y)} onlu if f has a type FUNCTION ? 15:17:20 yeah 15:17:32 more of a parsing flag than a type, though 15:17:52 in fact, it should *only* be a parser thing, and not relevent at runtime 15:18:08 yea 15:18:42 ha, check out my placeholder: http://stainworks.com/ 15:21:52 brb ;/ 15:23:12 well, looks cool so far 15:23:31 What content will it have? 15:42:18 erm, my homepage, blog and portfolio ;] 15:56:57 who wants a pro webpage for $750 ? 16:20:16 noone? ;\ 16:24:13 -!- ihope has joined. 16:36:16 what name would be better: shame? or ulisp? ;] 16:36:31 (for my new esolang of crs.) 16:36:41 ulisp -> uncommon lisp 16:37:04 shame resembles scheme ;> 16:37:20 ulisp 16:37:26 LITHP? 16:37:38 (S is not allowed) 16:39:22 why lithp? 16:41:29 -!- ihope has quit (Read error: 104 (Connection reset by peer)). 16:46:03 why s isn't allowed? 16:48:05 http://groups.google.co.uk/group/net.general/msg/e809b92fdcc92888 16:48:15 (see near the bottom) 16:50:33 but ulisp will be bery stupid lisp dialect ;p 16:50:38 very* 16:51:17 (you realise that is a joke, right?) 16:51:35 nooga: only s and k? 16:55:19 yeah, almost 17:39:16 -!- nooga has quit. 17:50:56 -!- Sgeo has joined. 18:00:27 * SimonRC goes home 18:25:38 -!- calamari has joined. 20:55:59 -!- GregorR has joined. 21:05:18 -!- ihope has joined. 21:06:09 I find it cute how a short string of gibberish, like "36 F.Supp.2d 191" or "0-380-75947-0", can uniquely identify something. 21:06:39 9DEDB891-8361-461C-9ED5-BDF0C8460EA9 21:06:46 Yes, that too. 21:06:50 Just a second... 21:07:03 and they are able to uniquely identify something without a centralized db 21:07:13 Yep. 21:07:18 What's 9DEDB891-8361-461C-9ED5-BDF0C8460EA9? 21:07:32 thats an uuid 21:07:34 man uuidgen 21:07:58 F1ED2D44-14E5-473B-96A4-395874541C27 21:07:59 4082D87F-1CC0-49D1-AC25-5D9D10D4821B 21:08:00 BA41A38F-0712-486E-B0E4-0F2AB266A492 21:08:39 Those aren't version 1 UUID's, are they? 21:08:50 i don't know 21:08:57 you could check the version bits 21:09:14 What're those, and where? 21:09:24 http://de.wikipedia.org/wiki/UUID 21:09:28 wait 21:09:34 http://en.wikipedia.org/wiki/Universally_Unique_Identifier 21:09:35 ;) 21:10:02 Yeah, I can't read Dutch. ;-) 21:10:08 german 21:10:16 * ihope smiles 21:11:05 So Dutch is NL. How logical. 21:11:15 Spanish is ES, German is DE... 21:11:26 well german in german is deutsch 21:11:33 Yep. 21:11:39 spanish in spanish is españ.... 21:11:47 ...ol 21:11:58 * jix doesn't speak spanish 21:12:05 And Nederlands. 21:12:09 and no i'm using version 4 21:12:30 The random version? 21:12:38 yap 21:14:04 So can you tell me what 0-380-75947-0 is? 21:15:31 something us specific? 21:15:41 I don't think so. 21:15:52 telephone number? 21:16:03 Nope. 21:16:16 random number? 21:16:25 wait some bar-code 21:16:28 Nope :-) 21:16:33 Yes... 21:16:37 isbn? 21:16:41 Yep. 21:16:53 maybe it's a phone number too ;) 21:16:59 :-) 21:17:51 what is this? "36 F.Supp.2d 191" 21:18:19 Try a Google search. 21:19:35 ah 21:20:04 Blerr 21:20:34 Blerr is located at http://www.nationalesports.com/index.php?op=viewuser&userid=9828 21:42:05 So, GregorR, you're not Greg Orr, are you? 21:44:11 No 21:44:13 Gregor Richards 21:44:22 I have a far more robust name than that X-P 21:44:36 Greg Orr is just the guy who stole my domain name *sobs* 21:46:18 -!- Arrogant has joined. 21:57:31 Ackermann function, anyone? 21:58:21 I could go for a piece of pi.. still hungry ;) 21:59:04 Mmm, pi. 21:59:32 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679 21:59:34 8214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196 21:59:35 4428810975665933446128475648233786783165271201909145648566923460348610454326648213393607260249141273 21:59:37 724587006606315588174881520920962829254091715364367892590360011330530548820466521384146951941511609 21:59:47 Exactly--that's not an approximation. 21:59:48 :-P 21:59:50 yum 22:00:29 Oh, right, the musical pattern thing... 22:01:02 Play this note sequence: CDCECDCFCDCECDCGCDCECDCFCDCECDCACDCECDCFCDCECDCGCDCECDCFCDCECDCB 22:01:42 * calamari loads gw-basic 22:02:54 -!- calamari has quit (Remote closed the connection). 22:03:56 -!- calamari has joined. 22:04:19 and that's hwhat happens when you accidentally press ctrl alt backspace 22:04:45 :-) 22:05:52 ihope: i played it... nothing happened 22:06:19 Did you hear anything? 22:06:28 C C C Ab Eb C Ab Eb C 22:06:30 ummmmm 22:06:33 yes? 22:06:38 the notes i played? :) 22:06:50 :-) 22:08:16 -!- GregorR_ has joined. 22:09:08 -!- GregorR has quit (Remote closed the connection). 22:09:57 does anybody have a recording of "manha de carnaval" with singing? 22:22:00 -!- fuse has joined. 22:22:16 hello 22:22:50 Hi. 22:23:18 how's things, ihope? 22:23:21 Good. 22:23:53 We were just arguing frantically over whether A001511 makes good music. 22:24:15 oh well, i can't join that discussion. 22:24:38 Hmm... then again, we weren't. 22:24:40 ;-) 22:24:53 hahah. 22:41:41 ihope: i bought "the little schemer" the other day 22:42:19 Bought what? 22:42:47 ihope: it's a book 22:43:18 ihope: it's a book on scheme; it's laid out as a children's book and it has all these cute drawings of elephants 22:43:24 :-) 22:43:54 Sounds nice. 22:44:41 ihope: and it still manages to present some pretty deep cs concepts; for instance, it presents turing's argument for the indecidability of the halting problem with little scheme programs 22:45:02 ihope: yeah it's great 22:48:07 ihope: http://www.bookpool.com/covers/992/0262560992_500.gif 22:48:17 i'm in love with this book 22:49:12 What would happen if I threw that in with all the other children's books at some library? 22:50:41 if we were born in the right universe, it /would/ be a children's book; unfortunately we were born in the alternate universe in that star trek episode where everyone's evil and spock has a goatee 22:51:21 Mmm, goatee. 22:52:06 hah. 22:54:44 ihope: the book has a page that says, "This space reserved for JELLY STAINS!" 22:54:55 :-D 22:55:42 fuse, without spock having a goatee we wouldn't have the band spock's beard 22:56:25 Arrogant: well, you have a point 22:57:06 speaking of which, i think i will turn it on 22:57:31 * fuse plays spock's beard - revelation.mp3 22:59:30 You know I have run into fairly few Spock's Beard fans 22:59:40 Then again I have never really looked for them 23:00:05 well, i like prog 23:00:34 * Arrogant does too. 23:00:48 Porcupine Tree is my favorite. 23:06:54 ihope: where's that haskell book you recommended again? 23:07:05 I reccomended a Haskell book? 23:07:41 ihope: well, yes, an on-line book 23:07:56 Ah, right. 23:08:09 http://en.wikibooks.org/wiki/Programming:Haskell 23:08:12 That, I think. 23:08:24 thanks 23:14:10 -!- GregorR__ has joined. 23:15:56 -!- fuse has quit ("ircII EPIC4pre2.500 -- Accept no limitations"). 23:18:05 -!- GregorR_ has quit (Remote closed the connection). 23:30:20 this sucks 23:30:28 i want to learn a song, and can't find its melody anywhere 23:31:51 CDCECDCFCDCECDCGCDCECDCFCDCECDCACDCECDCFCDCECDCGCDCECDCFCDCECDCB 23:32:19 no 23:32:23 not that one 23:32:54 :-) 23:34:51 :( 23:35:11 maxwell's silver hammer? 23:37:38 yayyyyyyyy i think i found it 23:37:42 downloading :) 23:50:02 -!- jix has left (?).