bo-tato
bo-tato
``` begin puts "outer" # cursor on this line begin puts "inner" end puts "outer again" end ``` here if we do ruby send block with the cursor on the...
in the [documentation](https://swaydb.simer.au/configuration/sortedKeyIndex/?language=java) it says `PrefixCompression.Enable`, while I had to use `PrefixCompression.On`, and I had to use `blockIOStrategy` instead of `ioStrategy`. After that it worked great, thanks for the db
thanks for these koans, they're really helpful to get started, makes emacs lisp a lot less intimidating and I feel confident to try debugging and editing plugins now :smiley: At...
I include a brief description of what threading macros are in case anyone hasn't seen them, as they aren't standard in common lisp, but are popular in clojure, and pipe...
I was debugging a multi-threaded program where some threads would hang at 100% cpu so I added some extra info to the thread view to spot it easier. It is...
`slynk-pprint-values` forgets to pass the stream to `terpri` when it prints a newline between values, so when you eval in emacs for example `(parse-integer "243")` it shows as 2433, with...
Thanks for the cookbook it is an awesome resource. In the section on debugging under advise and watch it says: > They do exist in SBCL but are not exported....
if you start pry with: `pry -e 'END {puts "last result was: #{_}"}'` if I exit pry with Control-D (EOF) it prints the second to last result: ``` [2] pry(main)>...
**Describe the bug** "create test" can insert tests in middle of code where it shouldn't, if there's unsaved changes in the test file **To Reproduce** Steps to reproduce the behavior:...
Cider debugger's move here command doesn't work in cases like: ``` (foo 7) (defn bar [] (let [x 7 y 9] (-> x (+ 1) #break (doto println) (* 2)...