crocket
crocket
https://janet-lang.org/docs/bindings.html and https://janet-lang.org/docs/functions.html don't explain how multiline doc strings are formatted by doc string formatter.
## What I expect ``` showDisplayItem :: DisplayItem -> IO String showDisplayItem (Item dt (MixerControl m c mi) l) = flip catch (const warn) $ AM.withMixer m $ \m' ->...
Radio.m3u8 ``` #EXTM3U #EXTINF:-1,name 1 http://url 1:8000 #EXTINF:-1,name 2 http://url 2:443 #EXTINF:-1,name 3 http://www.url 3.com ``` With mpd-0.21.8 ``` mpc playlist Radio name 1 name 2 name 3 ``` With...
This is ncmpcpp's playlist editor  I disabled all editing keyboard shortcuts and use ncmpcpp's playlist editor as a playlist browser. ncmpc doesn't allow me to browse inside m3u...
The only example on anchor macro is ``` anchor:tiger-image[Image of a tiger] ``` I don't know where to put this macro.
Pastebins usually allow users to set garbage collection schedule when submitting a new pastebin. I want predictability.
Subscribe to a node ``` sentinelcli tx subscription subscribe-to-node \ --home "${HOME}/.sentinelcli" \ --keyring-backend os \ --chain-id sentinelhub-2 \ --node https://rpc.sentinel.co:443 \ --gas-prices 0.1udvpn \ --from ``` I couldn't figure...
"eclipse with-source=true" doesn't attach javadocs. Can you make a command line option "with-javadoc=true"?
Abstract UNIX domain sockets don't exist on filesystem. Regular UNIX domain sockets do. It's good to support abstract UNIX sockets and regular UNIX sockets.
``` *** Exception: Network.Socket.connect: : does not exist (Connection refused) ``` I think it's supposed to return `Left (ConnectionError e)` instead of raising an `IOException`. For now, I work around...