Teodor Heggelund
Teodor Heggelund
Found another surprising behavior:  When I write `(last [1 2 3])` and press cmd+enter, I can't get it to evaluate. It just says nil.
I believe I hit this issue too. ## The full namespace where I hit the error https://github.com/teodorlu/play.teod.eu/tree/fe70f7ed3fc6f997669b5356925f220d0c6e5038/how-much-is-that-second-dice-worth/second_dice.clj I hit it when implementing `Sample` for `Dice`. The protocol already existed, and...
My thoughts on how to store bbin script metadata (copied from https://github.com/babashka/bbin/issues/62#issuecomment-1751995807, edited for brevity): I think @borkdude's proposal of having one EDN file per installed script and an operation...
Perhaps something like: > Tablecloth is a fast, ergonomic data table library for Clojure ? I feel like tablecloth's advantage is speed and ergonomics. Faster than maps, easier than raw...
I'd say it's still relevant. I can't see anywhere from the helptext to find the `neil dep versions` command. As of `neil 0.1.48`, 1. I don't see any mention of...
Fixed as of #155.
Also wanted to say that I'm learning _a lot_ working through a migration setup in my project. I really appreciate Ragtime giving me the core concepts, rather than a pre-packaged...
OK! I'll take resizing into account. Not promising anything, but I'll have a go :)
Two questions to start off: 1. How do we represent units in data? 2. Are there test cases or examples for the units scheme code? I'll dig a bit.
Scheme examples from [units/system.scm][1]: [1]: https://github.com/Tipoca/scmutils/blob/master/src/units/system.scm#L297-L310 ```scheme (with-units->expression SI &foot) ;Value: (& .3048 &meter) (with-units->expression SI (& 2 &foot)) ;Value: (& .6096 &meter) (with-units->expression SI (/ (* :k (& 300...