(thread asv)
brett
|
A webapp for logging running distance I made with arc
(tracksruns.com)
cached 7 days ago
|
|
cached 8 days ago
start the server in a new thread
|
|
cached 11 days ago
you don't really need callcc as much as just storing proc closures
here's a ruby version a bit closer to the original. there's a bunch of support and then process roughly corresponds to said above
|
|
cached 10 days ago
It's not really a bug as much as an artifact of the REPL. You are seeing what the call to (link ...) prints and then the return value of the same call printed right after it by the REPL.
Changing the return value illustrates the point:
It might not be optimal that link (or really tag) always returns "", but I'm not sure it matters.
|
|
cached 7 days ago
It's sort of an alternate ending to http://dontbreakthechain.com which I made last year.
The source is at: http://goods.tracksruns.com/runs.arc.txt I'm new to lisp, I welcome (encourage even) tips/pointers/recommendations. |
|
cached 5 days ago
|
|
cached 12 days ago
|
|
cached 22 days ago
Some sort of http://en.wikipedia.org/wiki/Reverse_proxy
I got it to work behind apache with mod_proxy. One gotcha I never got around to fixing was getting the arc app to pay attention to the X-Forwarded-For header instead of just using 127.0.0.1 as the remote ip address. |
|
cached 12 days ago
It's definitely getting the the point where Ken's page deserves a permanent link somewhere on this forum or the arc home page.
|
|
cached 10 days ago
I've been running http://tracksruns.com (source http://goods.tracksruns.com/runs.arc.txt) behind apache on ubuntu with mzscheme 360. It gets virtually no traffic but has been up without problems since I started it a month or so ago. I launched it using screen so I can get back to the REPL whenever I want. The server uses some globals that are interesting to look at like optimes*.
It's still on arc0. The main gotcha is that it thinks all requests are from 127.0.0.1 because it does not pay attention to apaches's X-Forwarded-For header. |
