[racket-users] pkg.racket-lang.org account creation / recovery failing

2020-08-16 Thread Marc Burns
Hi all, I'm currently getting a stack trace starting with "subprocess: process creation failed" when I try to get a code to sign up for pkg.racket-lang.org. The stack trace shows up right after I enter my email and hit "Email me a code". I've tried a few different email addresses and browsers.

[racket-users] LinuxCon

2016-08-22 Thread Marc Burns
Hi Racketeers, Is anyone at LinuxCon this week? Want to meet up during or after events today? Cheers, Marc -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [racket-users] Re: Racket Docker images from Alpine

2016-07-13 Thread Marc Burns
Hi Juan, > Great work!. Just a few comments: > ... Thank you; I've integrated your suggestions. I'll open a PR to get rid of these patches when I come back to this tonight. I've pushed a new image. Cheers, Marc -- You received this message because you are subscribed to the Google Groups

[racket-users] Racket Docker images from Alpine

2016-07-12 Thread Marc Burns
Hi all, I remember this topic came up on the list a while back. I've made a Docker image of the latest Racket from alpine 3.3 with just musl libc. I had to monkey patch some Racket internals to get this working, so it might be badly and subtly broken. Feedback is appreciated! Dockerfile

Re: [racket-users] Using Racket server in production?

2016-01-24 Thread Marc Burns
ations. Keeping state on the client works brilliantly. Using the Racket webserver has always been a breeze for me. It's easy to do stuff that requires mucking with HTTP and it's easy to build complete, reliable apps. This kind of flexibility really makes my day. Good luck in your endeavor. Cheers

Re: [racket-users] Store value with unsupported type in Postgres?

2016-01-17 Thread Marc Burns
You can cast first to a supported type: (query-exec conn "INSERT INTO some_table (ip) VALUES (inet ($1 ::text))" client-ip) On 2016-01-17 7:35 PM, Alexis King wrote: I would like to avoid interpolating into a query if at all possible, given that this string is not something I control. I

Re: [racket-users] Startup times

2015-09-14 Thread Marc Burns
0.920.37 0 236 read 0.000.00 0 10323 open 0.000.00 079 close … Does it look similar on the Note 4? > On Sep 14, 2015, at 9:00 PM, Marc Burns <m4bu...@uwaterloo.ca> wrote:

Re: [racket-users] Startup times

2015-09-14 Thread Marc Burns
Set the environment variable PLTSTDERR=debug to get more verbose output. Startup involves traversing all the bytecode files that comprise the base environment. How fast is filesystem access on the Note 4 compared to PC? You could use strace to find the latency on different system calls made

Re: [racket-users] postgresql-connect and #:notification-handler

2015-07-14 Thread Marc Burns
Hi Tim, I wanted the same thing a few months ago. I couldn’t find a nice way to modify `db', so I wrote a small C library that links with libpq and some FFI bindings. This was probably not the right thing to do. http://www.convextech.ca/~m4burns/pqnotify/

Re: [racket-users] time_t and size_t ffi types

2015-06-16 Thread Marc Burns
What about _size in ffi/unsafe ? On Jun 14, 2015, at 1:39 PM, Eric Dobson eric.n.dob...@gmail.com wrote: I'm currently on working on bindings to a foreign library that has elements in structs that are defined as time_t and size_t. I couldn't find anything in the core ffi types that

Re: [racket-users] accessing a directory local file to a module

2015-05-12 Thread Marc Burns
Check out define-runtime-path in the docs On May 11, 2015, at 10:19 PM, thomas.lynch thomas.ly...@reasoningtechnology.com wrote: I apologize if this posted before, but given a day I don't see it here.. I have a function with a companion data file (data file is part of the collection).