00:07 (quit) mithos28: Quit: mithos28 00:46 (quit) mwolfe: Ping timeout: 272 seconds 01:03 (join) mwolfe 01:07 coyo: master? 01:07 (quit) dnolen: Quit: dnolen 01:11 Lajla: coyo, yeah. 01:11 Lajla: Doesn't it? 01:13 coyo: it kindof does 01:13 coyo doesnt mention any proclivities of his own 01:16 (join) tony_ 01:21 (quit) mwolfe: Remote host closed the connection 02:10 Lajla: coyo, why not. 02:10 Lajla: Spit it out boy. 02:36 em: hallo Lajla 02:37 Lajla: Hallo em. 02:37 Lajla: Spreek je tegenwoordig Nederlands? 02:37 em: No but it always sort of amazes me how I can sometimes read languages I don't speak. 02:39 MK_FG: em, אתה מדבר עברית? 02:40 em: There is this project I have in mind that will eventually need some sort of GUI or web gui or something. But I do not yet know how to make GUIs. Would it be a waste of time to start making the procedures that work 'under the hood' or should even the backend stuff be made with some vision of how the gui hooks up to it? 02:40 em: MK_FG: hehe i guess that doesn't happen with Hebrew. 02:40 MK_FG: ;) 02:40 em: i know "beareshit" 02:41 Lajla: em, how about 'tegenwoordig' 02:41 Lajla: It literally means 'against-wordy' I realize now, but it means 'currently' or 'nowadays' 02:43 coyo returns 02:43 coyo is in a technical channel, this isnt really the place for it 02:43 coyo: lajla: in regards to the why not 02:46 em: are there any ideas about that? re: do you have to know who guis work before you start making the procedures that do the real work? 02:53 MK_FG: em, Decoupling interface from the real work is a good idea, but I think you still need to know what control to expose to the UI, so you should have some skatch at least, to know that 02:53 (quit) MK_FG: Remote host closed the connection 02:54 (join) MK_FG 03:02 (quit) tony_: Quit: Page closed 03:08 (quit) coyo: Quit: KVIrc 4.0.2 Insomnia http://www.kvirc.net/ 03:41 (quit) jonrafkind: Ping timeout: 240 seconds 04:17 (join) jonrafkind 04:25 eli: em: bear shit? 04:31 (join) PLT_Notify 04:31 PLT_Notify: racket: master Eli Barzilay * c4661de (2 files in 2 dirs): Bump version numbers of mzscheme and mred. ... - http://bit.ly/gHWxQl 04:31 (part) PLT_Notify 04:32 (quit) jonrafkind: Ping timeout: 240 seconds 04:33 (join) PLT_Notify 04:33 PLT_Notify: racket: release Eli Barzilay * cc4c928 (1 files in 1 dirs): Try to kill the test thread after a minute, and exit after another minute. ... 04:33 PLT_Notify: racket: release Eli Barzilay * bfae2d4 (1 files in 1 dirs): Proxy the irc logs from pre.racket-lang.org. ... 04:33 PLT_Notify: racket: release commits 968eb41...bfae2d4 - http://bit.ly/gLn2uC 04:33 (part) PLT_Notify 05:56 (quit) drhodes: Ping timeout: 255 seconds 06:18 rapacity: so erm I'm getting this error on typed racket and I'm not sure what it means, "../plt/racket/collects/typed-scheme/typecheck/tc-app-helper.rkt:28:7: car: expects argument of type ; given #f" is that a bug? 06:20 rapacity: the code is some function that returns 2 values, if I do (call-with-values func values) it returns 2 values 06:21 rapacity: but when I do (call-with-values func (λ (e a) a)) I get that error 06:23 MK_FG: rudybot, (call-with-values (lambda () (values 1 2)) (lambda (e a) a)) 06:23 rudybot: MK_FG: your sandbox is ready 06:23 rudybot: MK_FG: ; Value: 2 06:26 rapacity: I'll paste my code 06:28 rapacity: https://gist.github.com/577427374e924b3dc1c6 06:35 clklein: rapacity: Looks like a bug to me. 06:36 rapacity: ok, I'll look through the current reports to see if its been reported and, I'm updating my build to see if it's already fixed 06:46 (join) masm 06:55 (join) drhodes 07:37 (quit) masm: Ping timeout: 255 seconds 07:44 (join) masm 08:02 (quit) masm: Ping timeout: 240 seconds 08:08 (quit) alexsuraci`: Ping timeout: 255 seconds 08:13 (join) masm 08:18 MK_FG: Is there a simple way to wrap some object's method call (without knowing it's arguments) in racket? 08:19 MK_FG: I mean, something like "(curry send object method-id)", only working ;) 08:20 (join) alexsuraci` 08:22 MK_FG: My goal here is to pass this "callable" as a procedure, so caller won't have to check whether passed thing is a simple procedure or an object with an extended interface (used elsewhere) 08:24 rapacity: srfi/26/cut 08:24 rapacity: have you tried that? 08:24 (join) MayDaniel 08:25 MK_FG: Nope, looks like the solution indeed, thanks 08:31 (join) mithos28 08:38 (quit) MayDaniel: Read error: Connection reset by peer 08:48 MK_FG: Pity it doesn't pass keywords though 09:01 rapacity: does anyone know how cut works :p? haha 09:02 rapacity: I just took a look at the expansion of (cut send object method-id) 09:02 rapacity: well I used (cut send frame show) 09:02 rapacity: (lambda () and that was in the definition 09:03 (join) mceier 09:03 rapacity: I don't understand how the arguments are getting passed to the generated function :p 09:11 rien_: rudybot: (map (cut string-append "moar " <>) (list "sauce" "pics")) 09:11 rudybot: rien_: your r5rs sandbox is ready 09:11 rudybot: rien_: error: reference to an identifier before its definition: cut in module: 'program 09:14 rapacity: hmm nvm it's working as expected now o_O, I wonder if I hallucinated the whole thing 09:16 (quit) mithos28: Quit: mithos28 09:22 (join) coyotama 09:24 rapacity: I must've imagined myself typing the ((cut send frame show) #t) and getting it to work, I blame it on sleep deprivation 09:25 rien_: haha, that happens 09:28 (join) PLT_Notify 09:28 PLT_Notify: racket: master Matthew Flatt * ab588eb (1 files in 1 dirs): fix doc bug ... 09:28 PLT_Notify: racket: master Matthew Flatt * 913f6b5 (1 files in 1 dirs): fix dc<%> ... 09:28 PLT_Notify: racket: master Matthew Flatt * 5d1b783 (1 files in 1 dirs): cocoa: fix problems with `radio-box%' in no-selection mode ... 09:28 PLT_Notify: racket: master commits c4661de...5d1b783 - http://bit.ly/eYQF4X 09:28 (part) PLT_Notify 09:55 (join) dnolen 09:56 (join) mithos28 10:05 (quit) mithos28: Quit: mithos28 10:32 (join) PLT_Notify 10:32 PLT_Notify: racket: release Matthew Flatt * c10d0a6 (1 files in 1 dirs): fix doc bug ... 10:32 PLT_Notify: racket: release Matthew Flatt * 4e33afc (1 files in 1 dirs): fix dc<%> ... 10:32 PLT_Notify: racket: release Matthew Flatt * 9721ad1 (1 files in 1 dirs): cocoa: fix problems with `radio-box%' in no-selection mode ... 10:32 PLT_Notify: racket: release commits bfae2d4...9721ad1 - http://bit.ly/hc0vU4 10:32 (part) PLT_Notify 10:32 samth: jeapostrophe, ping 10:35 (join) PLT_Notify 10:35 PLT_Notify: racket: master Casey Klein * fe0525b (1 files in 1 dirs): Reduces the memory used by the randomized tests - http://bit.ly/i1LeRX 10:35 (part) PLT_Notify 10:46 (join) coyotama|2 10:47 (quit) dnolen: Quit: dnolen 10:49 (join) offby1 10:49 (quit) coyotama: Ping timeout: 240 seconds 10:59 em: eli: yeah, "in the beginning" there was bear shit. Apparently. 11:02 offby1 stares blankly 11:07 (quit) samth: Read error: Connection reset by peer 11:09 (quit) jao: Read error: Connection reset by peer 11:10 (quit) alexsuraci`: Read error: Operation timed out 11:13 (join) alexsuraci` 11:15 (join) mwolfe 11:19 (join) jeeve 11:21 (join) PLT_Notify 11:21 PLT_Notify: racket: master Matthew Flatt * e1303dc (1 files in 1 dirs): cocoa: change `radio-box%' implementation of no selected buttons ... 11:21 PLT_Notify: racket: master Matthew Flatt * 8f404a4 (1 files in 1 dirs): win32: fix horizontal `radio-box%' ... 11:21 PLT_Notify: racket: master commits fe0525b...8f404a4 - http://bit.ly/fTnhRs 11:21 (part) PLT_Notify 11:23 (quit) jeeve: Client Quit 11:26 (join) samth 11:40 (join) corruptmemory 11:40 (join) carleastlund 11:57 (quit) coyotama|2: Ping timeout: 246 seconds 12:25 (join) mithos28 12:27 (join) MayDaniel 12:46 (quit) MayDaniel: Read error: Connection reset by peer 12:51 (quit) _danb_: Quit: ERC Version 5.3 (IRC client for Emacs) 12:58 (quit) em: Quit: Reconnecting 12:58 (join) em 13:14 (join) jonrafkind 13:20 (join) anRch 13:38 (quit) anRch: Ping timeout: 240 seconds 13:44 (join) anRch 13:49 (quit) anRch: Client Quit 14:01 (join) anRch 14:08 (join) PLT_Notify 14:08 PLT_Notify: racket: master Robby Findler * 74f8b0e (2 files in 1 dirs): add a little more about quasiquote to the guide ... - http://bit.ly/gHC0qn 14:08 (part) PLT_Notify 14:16 (join) tony_ 14:50 (nick) samth -> samth_away 15:05 (quit) mithos28: Quit: mithos28 15:33 (quit) anRch: Quit: anRch 15:41 (join) PLT_Notify 15:41 PLT_Notify: racket: master Matthew Flatt * b4ce4bb (2 files in 2 dirs): add `file/resource' - http://bit.ly/eiHgLz 15:41 (part) PLT_Notify 15:47 jonrafkind: anyone know how to manipulate margins in scribble? 15:47 jonrafkind: i have an image that is indented but will only fit on the page if its unindented 15:58 (quit) tony_: Ping timeout: 245 seconds 16:03 (join) MayDaniel 16:16 (join) mithos28_ 16:18 (quit) mithos28_: Client Quit 16:36 (quit) MayDaniel: Read error: Connection reset by peer 16:47 (join) PLT_Notify 16:47 PLT_Notify: racket: master Matthew Flatt * 3375005 (3 files in 3 dirs): `file/resource': improve compatibility ... - http://bit.ly/hrjrxE 16:47 (part) PLT_Notify 16:48 (join) seangrove 16:58 (join) Petey 17:01 (join) saint_cypher 17:37 (join) mithos28 17:53 (quit) jonrafkind: Ping timeout: 240 seconds 17:57 (join) PLT_Notify 17:57 PLT_Notify: racket: master Ryan Culpepper * 755b3d2 (3 files in 2 dirs): improve rackunit gui performance 17:57 PLT_Notify: racket: master Ryan Culpepper * 2c1d49d (1 files in 1 dirs): fixed macro stepper bug ... 17:57 PLT_Notify: racket: master commits 3375005...2c1d49d - http://bit.ly/gnH6qS 17:57 (part) PLT_Notify 18:00 (join) PLT_Notify 18:00 PLT_Notify: racket: release Matthew Flatt * 08ff71d (1 files in 1 dirs): win32: fix horizontal `radio-box%' ... 18:00 PLT_Notify: racket: release Robby Findler * 1fba9e4 (2 files in 1 dirs): add a little more about quasiquote to the guide ... 18:00 PLT_Notify: racket: release Ryan Culpepper * ae73336 (1 files in 1 dirs): fixed macro stepper bug ... 18:00 PLT_Notify: racket: release commits 9721ad1...ae73336 - http://bit.ly/eMvRLN 18:00 (part) PLT_Notify 18:02 (quit) Petey: Quit: leaving 18:07 (quit) mithos28: Quit: mithos28 18:56 (join) mithos28 19:00 (quit) corruptmemory: Ping timeout: 255 seconds 19:01 (quit) mceier: Quit: leaving 20:00 (quit) masm: Quit: Leaving. 20:12 (quit) mithos28: Quit: mithos28 20:22 (quit) carleastlund: Quit: carleastlund 20:32 (quit) misterm: Ping timeout: 255 seconds 20:35 (quit) mwolfe: Remote host closed the connection 20:37 (quit) evhan: Ping timeout: 245 seconds 20:51 (join) mithos28 21:17 (quit) mithos28: Quit: mithos28 21:59 (join) mudzane 22:04 (join) mithos28 22:07 (quit) mithos28: Client Quit 22:31 (quit) mudzane: Ping timeout: 240 seconds 22:36 (join) mithos28 22:46 (join) misterm 23:13 (join) masm 23:22 (quit) masm: Quit: Leaving.