00:04 (join) B4R0n 00:09 B4R0n: how i get html code from an page? 00:09 offby1: (require (planet htmlprag)) 00:10 offby1: http://planet.plt-scheme.org/display.ss?package=htmlprag.plt&owner=neil 00:18 B4R0n: thx offby1 .. will see 00:22 (join) jeapostrophe 00:23 (quit) jeapostrophe: Client Quit 00:27 (part) B4R0n 00:34 (join) jeapostrophe 00:36 (quit) jeapostrophe: Client Quit 01:04 (join) jeapostrophe 01:11 (quit) jeapostrophe: Quit: jeapostrophe 01:31 (quit) dnolen: Quit: dnolen 01:36 (join) dnolen 01:39 (join) realitygrill 01:46 (quit) lvilnis: 02:09 (quit) jonrafkind: Ping timeout: 240 seconds 02:40 (quit) dnolen: Quit: dnolen 02:57 (join) hkBst 02:58 (join) MayDaniel 03:32 (join) egnarts-ms 03:42 (join) MayDaniel_ 03:42 (quit) realitygrill: Quit: realitygrill 03:44 (quit) MayDaniel: Ping timeout: 260 seconds 03:46 (join) noelw 03:47 (quit) MayDaniel_: Read error: Connection reset by peer 03:49 (quit) egnarts-ms: Quit: Page closed 03:50 (join) RacketCommitBot 03:50 RacketCommitBot: [racket] plt pushed 1 new commit to master: http://git.io/eIqUOg 03:50 RacketCommitBot: [racket/master] New Racket version 5.1.3.6. - Eli Barzilay 03:50 (part) RacketCommitBot 03:53 (join) mceier 04:02 (join) tfb 04:03 (quit) tfb: Client Quit 04:07 (join) tfb 04:14 (quit) tfb: Quit: gone 04:16 (join) tfb 04:18 (quit) tfb: Client Quit 04:19 (join) tfb 04:24 (join) DGASAU 04:28 (quit) DGASAU: Remote host closed the connection 04:30 (join) DGASAU 05:23 (join) realitygrill 06:05 (quit) realitygrill: Quit: realitygrill 06:54 (join) MayDaniel 07:37 (join) jeapostrophe 07:44 (quit) neilv: Ping timeout: 245 seconds 08:35 (join) dnolen 09:01 (part) shofetim: "ERC Version 5.3 (IRC client for Emacs)" 09:21 (quit) jeapostrophe: Quit: jeapostrophe 10:11 (join) jeapostrophe 10:43 (quit) dnolen: Quit: dnolen 10:45 (join) jonrafkind 10:45 (quit) hkBst: Remote host closed the connection 10:48 (nick) ohwow_ -> ohwow 11:15 (join) RacketCommitBot 11:15 RacketCommitBot: [racket] plt pushed 2 new commits to master: http://git.io/8vCDQQ 11:15 RacketCommitBot: [racket/master] fix `define-runtime-paths' and `raco exe' - Matthew Flatt 11:15 RacketCommitBot: [racket/master] change `raco exe' to disable collection lookup by default - Matthew Flatt 11:15 (part) RacketCommitBot 11:15 (quit) Burlingk: Quit: Leaving 11:18 (nick) samth_away -> samth 11:26 stamourv: B4R0n, offby1: According to neilv's blog, htmlprag is being obsoleted by some new packages he uploaded. 11:26 stamourv: http://www.neilvandyke.org/weblog/2011/08/#2011-08-21 11:32 (join) neilv 11:32 (quit) neilv: Changing host 11:32 (join) neilv 12:11 (join) realitygrill 12:12 (join) dnolen 12:15 (quit) noelw: Quit: noelw 12:29 (quit) tfb: Quit: sleeping 13:17 (join) turbofail 13:19 (join) anRch 13:19 (quit) MayDaniel: Read error: Connection reset by peer 13:34 (join) MayDaniel 13:34 (join) RacketCommitBot 13:34 RacketCommitBot: [racket] plt pushed 3 new commits to master: http://git.io/wSOMow 13:34 RacketCommitBot: [racket/master] remove non-existent files from the 'open recent' menu (but only when the file is selected) - Robby Findler 13:34 RacketCommitBot: [racket/master] change the menu shortcuts so that file|close becomes -shift-w when there - Robby Findler 13:34 RacketCommitBot: [racket/master] add the roots to the links info line in the bug report form - Robby Findler 13:34 (part) RacketCommitBot 13:51 (quit) MayDaniel: Read error: Connection reset by peer 14:01 (join) masm 14:19 (join) RacketCommitBot 14:19 RacketCommitBot: [racket] plt pushed 3 new commits to master: http://git.io/ziUrcQ 14:19 RacketCommitBot: [racket/master] Support vector arguments to `datum->syntax'. - Sam Tobin-Hochstadt 14:19 RacketCommitBot: [racket/master] Properly parse `Values' in types. - Sam Tobin-Hochstadt 14:19 RacketCommitBot: [racket/master] Revise `require/typed' docs. Closes PR 11890. - Sam Tobin-Hochstadt 14:19 (part) RacketCommitBot 14:20 (quit) jeapostrophe: Quit: jeapostrophe 14:39 (join) RacketCommitBot 14:39 RacketCommitBot: [racket] plt pushed 1 new commit to master: http://git.io/L7GTnQ 14:39 RacketCommitBot: [racket/master] The "Profile" pane in DrRacket can now be dragged to resize. - lvilnis 14:39 (part) RacketCommitBot 14:44 (quit) anRch: Quit: anRch 14:48 clklein: I have a macro that expands into (begin (define x ....) (define y ....)), where x is an id supplied to the macro and y is a constant used in every invocation of the macro. 14:49 clklein: Is this a bad idea? It seems to work, presumably because each y comes from a different expansion step, and thus is a different y. But I'm wondering if there's a pitfall I haven't encountered. 15:00 (join) jao 15:10 samth: clklein: no, that should work just fine 15:10 neilv: if x is a procedure that needs y, but no one else needs y, you can do this: (define x (let ((y ...y-value...)) ...x-value...)) 15:27 (join) RacketCommitBot 15:27 RacketCommitBot: [racket] plt pushed 4 new commits to master: http://git.io/Vgwdyw 15:27 RacketCommitBot: [racket/master] added db library - Ryan Culpepper 15:27 RacketCommitBot: [racket/master] db: added list-tables, table-exists? (except for ODBC, so far) - Ryan Culpepper 15:27 RacketCommitBot: [racket/master] db: improved listing of db/base exports in docs - Ryan Culpepper 15:27 (part) RacketCommitBot 15:28 neilv: that's significant news 15:31 jonrafkind: thats funny 15:37 neilv: "here's that cross-rdbms database support you asked for a few days ago. sorry it took so long" 15:37 samth: neilv: it's an import of his db.plt planet library, i think 15:38 neilv: that was my guess, but it still looks funny 15:59 eli: (Which part is funny?) 16:00 (quit) si14: Remote host closed the connection 16:00 neilv: just the responsiveness 16:00 (join) si14 16:01 eli: Ah. 16:01 (join) cb` 16:01 eli: It's partly coincidental, we've been talking about it before the current thread on the list. 16:04 (quit) si14: Remote host closed the connection 16:05 (join) si14 16:06 (quit) si14: Remote host closed the connection 16:41 (join) dnolen_ 16:43 (quit) neilv: Ping timeout: 245 seconds 16:44 (quit) dnolen: Ping timeout: 252 seconds 17:02 (quit) masm: Quit: Leaving. 17:03 (quit) realitygrill: Ping timeout: 258 seconds 17:05 (quit) rudybot: Read error: Connection reset by peer 17:06 samth: offby1: ping 17:06 samth: offby1: accidentlly killed rudybot 17:08 (join) si14 17:14 (quit) jao: Remote host closed the connection 17:30 (join) realitygrill 17:35 (join) anRch 17:37 (join) neilv 17:37 (quit) neilv: Changing host 17:37 (join) neilv 17:38 (join) milos_7878 17:45 (join) jao 17:49 (quit) milos_7878: Quit: Page closed 18:03 (quit) neilv: Quit: Leaving 18:05 (join) WarWeasle 18:15 (quit) mceier: Quit: leaving 18:22 (quit) anRch: Quit: anRch 18:29 (quit) WarWeasle: Remote host closed the connection 18:34 (quit) dwaynecrooks: Ping timeout: 245 seconds 18:35 (join) dwaynecrooks 19:06 (quit) dnolen_: Ping timeout: 252 seconds 19:11 (nick) samth -> samth_away 19:11 (join) RacketCommitBot 19:11 RacketCommitBot: [racket] plt pushed 2 new commits to master: http://git.io/F9v6gA 19:11 RacketCommitBot: [racket/master] Repair type of `find-relative-path'. - Sam Tobin-Hochstadt 19:11 RacketCommitBot: [racket/master] Initial support for standard optional arguments. - Sam Tobin-Hochstadt 19:11 (part) RacketCommitBot 19:33 (quit) martinhex: Read error: Connection reset by peer 19:41 (quit) sstrickl: Quit: sstrickl 19:42 (join) martinhex 20:00 offby1: samth_away: shame 20:01 offby1: samth_away: his last words were "about to suspend in atomic mode", whatever that means. 20:01 (join) rudybot 20:08 (nick) mattmight -> matt 20:08 (nick) matt -> Guest7459 20:08 (nick) Guest7459 -> mattmight 20:33 (quit) jonrafkind: Ping timeout: 246 seconds 21:50 (join) neilv 22:13 (quit) turbofail: Ping timeout: 250 seconds 22:20 (quit) cb`: Ping timeout: 250 seconds 22:55 (join) jonrafkind 23:06 (join) Demosthenes 23:26 (join) cb` 23:30 (join) dnolen 23:31 (quit) cb`: Ping timeout: 264 seconds 23:32 (quit) dnolen: Client Quit 23:54 (join) bmp 23:55 (join) RacketCommitBot 23:55 RacketCommitBot: [racket] plt pushed 1 new commit to master: http://git.io/fbfKbQ 23:55 RacketCommitBot: [racket/master] fix a bug where drracket was not moving the menu underscores around - Robby Findler 23:55 (part) RacketCommitBot 23:57 (quit) bmp: Client Quit 23:58 (join) bmp