[racket] Racketcon website video archives

2014-05-28 Thread Evan Donahue
I can't seem to find out who in particular maintains the racket website, so in the hopes that this message finds its way to the right person, it seems that, unless I am mistaken, the 2012 distributed places video link points to the honu video. Thanks, Evan Racket Users list:

Re: [racket] Whalesong questions

2014-03-27 Thread Evan Donahue
Try git instead of http raco pkg install git://github.com/dyoo/whalesong.git On Thu, Mar 27, 2014 at 10:56 AM, J G Cho wrote: > First question is about installation. > > 1) Tried > > raco pkg install https://github.com/dyoo/whalesong.git > > Failed, it di

Re: [racket] Dynamic module loading

2014-02-05 Thread Evan Donahue
e way. Thanks. On Tue, Feb 4, 2014 at 11:22 PM, Evan Donahue wrote: > Thanks for the response. The dynamic-require + rerequire seems to handle > that issue, and with the addition of some module-begin code I have > successfully hidden the construction of the hash from the end user. There

Re: [racket] Dynamic module loading

2014-02-04 Thread Evan Donahue
gt; so that after you attempt to reload, then you pull out the 'alias-ht > value from either the new or old version of the module > > Jay > > > On Fri, Jan 31, 2014 at 3:37 AM, Evan Donahue wrote: > > Hello. I've been trying to get a particular use case for module load

[racket] Dynamic module loading

2014-01-31 Thread Evan Donahue
Hello. I've been trying to get a particular use case for module loading to work, and, while I have a mostly functional solution, I am unsure whether I am using the best infrastructure for the task. The explanation is a bit involved, but the basic question is what is the right way to update a runnin

Re: [racket] Client-side cookies

2014-01-11 Thread Evan Donahue
Out of curiosity, are there any extant plans or efforts beyond Jay's work on http-client aimed at net/ related functionality? Just wondering, Evan On Thu, Jan 9, 2014 at 5:08 PM, Roman Klochkov wrote: > I'm making fully RFC6265 compliant cookie support for net/url and http. > https://github.c

Re: [racket] Client-side cookies

2014-01-08 Thread Evan Donahue
I don't know the specifics of your task, but I have been working on a sort of soup to nuts web crawling system. The system itself allows for pretty concise specification of most types of web crawling that I've encountered, and depending on what you need it contains a functional http-browser that ma

[racket] Datalog extensions

2013-12-29 Thread Evan Donahue
Hello, I am curious about the current status and future plans for the datalog package. I am working on an interactive system that uses datalog for its internal data storage, and am finding it difficult to map dynamic user actions onto the available datalog syntactic abstractions even with the rack

Re: [racket] rackunit question

2013-12-21 Thread Evan Donahue
check out the main submodule. On Sat, Dec 21, 2013 at 10:47 PM, Manfred Lotz wrote: > Hi there, > In a small program I like to have the test cases in the same file. How > can I prevent the 'main' function of my program to be run when I do a > raco test? > > > Here is a minimal example: > > #lang

Re: [racket] Parameterizing tables in Datalog queries

2013-12-20 Thread Evan Donahue
That would be a welcome change for me as well. It would be nice to be able to interact with the theory more readily from an embedding, interactive application. Thanks, Evan On Fri, Aug 16, 2013 at 11:29 AM, Jay McCarthy wrote: > You could eval the datalog macro to do it at runtime. > > I could

Re: [racket] net/http-client

2013-09-24 Thread Evan Donahue
Valid. I guess I shouldn't pin too much faith on something that introduces itself in the comments as a "wanna be library." On Tue, Sep 24, 2013 at 12:13 PM, Jay McCarthy wrote: > On Tue, Sep 24, 2013 at 12:31 PM, Evan Donahue wrote: > > Hmm, I'm no expert on h

Re: [racket] net/http-client

2013-09-24 Thread Evan Donahue
/http/cookie would be better than the interface it > provides. > > Jay > > > On Mon, Sep 23, 2013 at 8:21 PM, Evan Donahue wrote: > > As long as people are discussing http client libraries, I've been > wondering > > what the status of net/cookie is. It seems that

Re: [racket] net/http-client

2013-09-23 Thread Evan Donahue
As long as people are discussing http client libraries, I've been wondering what the status of net/cookie is. It seems that it's geared towards server-side cookie management (and I don't see an obvious way to generate Cookie: headers from net/cookie structs since none of the accessors are exported)

Re: [racket] Preventing get-impure-port from url-encoding the query

2013-07-11 Thread Evan Donahue
am Tobin-Hochstadt > wrote: > >> I'm not sure which spec you're looking at from there, but the URL spec > >> that I linked to is the most current work on precisely specifying > >> URLs. > >> > >> On Thu, Jul 11, 2013 at 2:14 PM, Jay McCarthy >

[racket] Preventing get-impure-port from url-encoding the query

2013-07-10 Thread Evan Donahue
Hello, I am trying to use the racket networking libraries for a basic set of get and post requests. I need to send a url of the form: http://foo.com/?url=http://bar.com?baz=1000 (NOT form encoded) however, the standard get-impure-port procedure seems to enforce url-encoding, which ends up submitt