bo-tato

Results 45 comments of bo-tato

It's worth noting hu.dwim.defclass-star which also offers shorter class definition macro is already included in CIEL as a dependency of fof, and nyxt browser is using https://github.com/atlas-engineer/nclasses which is their...

Interesting info, and yea it seems you're right about `slot-value`, I found [this discussion](https://groups.google.com/g/comp.lang.lisp/c/JYQZPkqrRo8/m/dTd1JDTbh_YJ) which says: > Nope, it's not. WITH-SLOTS uses SLOT-VALUE, which is unspecified for objects with metaclass...

I also got confused by this when reading through the FAQ. I asked on reddit and [someone pointed out](https://old.reddit.com/r/ruby/comments/15i8f5m/proc_parameters/jv38j4e/) that before ruby 1.9.1 modifying a proc parameter would modify the...

I think I experienced the same issue and it's not related to flycheck but to the possibly unexpected but configurable behaviour of the `next-error-find-buffer` function, I posted in more detail...

I realize if we're ok with depending on `expand-region` it has another method that makes `ruby-block-send` even simpler, just: ``` (-let (((start . end) (er/get-ruby-block))) (ruby-send-region start end)) ```

Interesting, I'm just starting to learn ruby but I can see now some might expect the current behavior for the first example, that send block sends the next complete block...

same in the documentation for [valuesConfig](https://swaydb.simer.au/configuration/valuesConfig/?language=java), I had to use `blockIOStrategy` instead of `ioStrategy`

btw, for my usecase I care about storage size on disk, not really about speed, with swaydb settings of prefixcompression, removing duplicates, and compression, it's using under half the space...

see https://github.com/jtmoulia/elisp-koans/issues/22 it seems after https://github.com/jtmoulia/elisp-koans/pull/16 it broke a lot of koans a lot of functions now have `cl-` prefix in `cl-lib` like equalp is called `cl-equalp`

oops it seems that is a convenience macro added by doom emacs, that can be replaced with: `(with-temp-buffer (insert-file-contents ...))` I also used `when-let` and I think some other functions...