John Clements

Results 36 issues of John Clements

I'm in the process of setting up split-tunneling on a Debian 10 machine, and I'm ... concerned? ... about a possible conflict between iptables and nftables. Specifically, I've set up...

enhancement

Per discussion on racket discourse, this pull request adjusts the error message associated with an assertion failure to use ~e rather than ~v

### What version of Racket are you using? 8.5 ### What program did you run? #lang typed/racket (vector-ref (vector 3 4 5) (+ 1 1)) ;;; ... with syntactic test...

### What version of Racket are you using? 8.0.900 ### What program did you run? ``` #lang racket (module foo typed/racket (provide f) (define-type Untidy (U (Pair 1 Any) (Pair...

bug

Here are the current results for checking release regressions: ### Build Failures ##### Package no longer exists These all are, or depend on, packages whose source doesn't exist. - [x]...

**What version of Racket are you using?** 8.3 **What program did you run?** It appears to me that changes to the repository subpath in the catalog information do not trigger...

1) install a package you don't mind deleting. Hopefully it has no dependencies. let's call it bogo ``` > raco pkg install bogo ``` 2) start drracket 3) Use shift-option-o...

I just found a fun little bug that appears to go back to at least racket v7.5. It appears that under some circumstances, opening a file not written in the...

This program signals an error that doesn't make sense to me, but I think it might be because -> is secretly a synonym for =>: ``` #lang racket (require nanopass/base)...

Here's a simple program that's missing an unquote: ```racket #lang racket (require nanopass/base) (define-language R1a (terminals (symbol (s))) (Ilos (l) (null) (cons s ... l))) (define-pass all-to-a : R1a (l)...