Josh Glover

Results 7 issues of Josh Glover

As per my [Stack Overflow question](http://stackoverflow.com/questions/23659446/can-cheshire-omit-keys-without-values), I'm generating some JSON for data structures like this: ``` (require '[cheshire.core :refer [generate-string]) (generate-string {:id 123, :foo "something", :bar nil}) ``` Which produces...

enhancement

**version** v0.8.156 **platform** Linux (Nix) **problem** Specifying the global `--force` option before the `tasks` subcommand results in Babashka trying to execute a file called `tasks` rather than the `tasks` subcommand....

I need to exchange public keys between an Erlang service and AWS Key Management Service (KMS). KMS exports public keys in DER format, using the `SubjectPublicKeyInfo` field. erlang-jose is able...

bug

I should be able to run a single test using `--only`, like so: ``` bb test --only quickblog.api-test/migrate ``` However, `bb test` ignores the `--only` arg and happily runs all...

It would be amazing if a post could have a link to the previous and next post by date. So amazing!

When creating a new post, I would like to have it look something like this: ``` markdown Title: Test Date: 2024-01-19 Tags: clojure Image: assets/test-preview.png Image-Alt: FIXME Discuss: FIXME Preview:...

This may be related to #146. I added this test to `md_test.cljc`: ``` clojure (deftest link (is (= "github" (entry-function "[github](http://github.com/some--stuff.html)")))) ``` Running the tests yields: ``` : markdown-clj; bb...