racket-rash
racket-rash copied to clipboard
The Reckless Racket Shell
Hi, I have a problem using regexes in grep. Following examples don't terminate when started from `rash-repl`: ``` grep -i "computer.*store" purchases.csv grep -i "computer.*?store" purchases.csv grep -i "computer.+?store" purchases.csv...
A pipeline like `yes | head -n 1` should make `yes` return 141 because it gets sigpipe. But in Rash it returns `1` and prints a message to stderr about...
Whenever I would read about "scheme shell" or something like that, I'd try to replace bash with it and always be disappointed, so this is pretty exciting. I'm looking forward...
I added a startup hint feature meant to be reminiscent of video games that give a hint on startup or in a loading screen. I feel that such a feature...
When calling `raco pkg install rash`, it seems that some packages, such as `overeasy` and `mcfly` are downloaded via plain HTTP, no SSL... Could this open a possibility of MITM...
I wrote a `#lang rash` script and wanted for my `display` statements to go to stderr by default, so I changed ``` (module+ main (apply main (vector->list (current-command-line-arguments)))) ``` to...
Apologies for the most useless issue raised ever, been following this project a while and eager to set how racket and it's projects evolve in the next year or three,...
IMO the special meaning of the question mark character '?' in racket should be ignored if it occurs in a string: ``` > echo "hello ? where are you?" 16:19...
First of all, I love this - it's like emacs' eshell but for a real terminal, and more scheme-y, which is great. I just had some general thoughts - I...
While working on reproducible builds for openSUSE, I found that our `rash` [package](https://build.opensuse.org/package/show/openSUSE:Factory/rash) varies when comparing builds from 1-core-VM and a 4-core-VM. Two builds from 1-core-VMs are identical though, so...