Results 26 comments of Robby Zambito

Here is another variation of this issue. Eval also doesn't work on quoted `defreader` expressions: ```hy => (hy.eval '(defreader test-read 4)) Traceback (most recent call last): File "stdin-9c2f1d3ec148efcda0919c267909cf9c75870184", line 1,...

I decided to add stdin support for adding tasks to my own todo program, inspired by this one (out of respect I wont link it, but if you stalk me...

I wrote this little hack to work around this issue for anyone interested: ```scheme (import (rename (ironscheme) (read primitive-read))) (define (read . port) (let* ((p (if (null? port) (current-input-port) (car...

I have recently been playing around with Radicle, which is a decentralized git source forge. It takes advantage of pushing to specific refspecs for features like creating patches. I haven't...

Oops, I should have done more testing. No, RSA keys also do not seem to work. I'm not sure what else I should try to diagnose this.

I was able to poke with it more, and I noticed the issue is that I was using a `ssh://host/path` URL instead of `user@host:path` for my remote. Switching to the...

I am having the same issue compiling on Arch Linux.

Also noteworthy: I have tried simply using the text "Person" rather than the Org Roam link to the Person node. The same thing occurs with plain text "Person" in place...

I realized that a better workflow for me is to put my private daily captures in a separate file, that is a subfolder of my dailies. This allows me to...

Hi Marc, > "It is an error" if the first argument to eval is not a Scheme datum value. Where is this stated? This is what I can find on...