Results 46 comments of Rogach

@jquense I understand that core react-bootstrap developers are not going to support the v3, and that's okay. But my idea was that the community, like me in this example :)...

What do you think (about community-supported v3 branch)?

FYI - currently static executable builds without issues with x86_64-unknown-linux-musl target and rustc 1.77.0-nightly (only had to update proc-macro2 dependency to avoid the `unknown feature proc_macro_span_shrink` error).

Maybe this will help? https://bugzilla.mozilla.org/show_bug.cgi?id=970346

Possibly related? https://github.com/sbt/sbt/issues/4166 I had metaspace leak problem as well, but after setting `scalaVersion := 2.12.7` and sbt version `1.2.8` the metaspace leak went away.

I think this issue might be solved by #152 - the updated version works for me, keybindings set up with `bind` do not result in preexec hooks running.

It seems that the problem comes from these lines: ```elisp (if (= (line-end-position line) (1- (point-max))) ; special case if the last line is empty (progn (goto-char (point-max)) (newline) (forward-char...

My apologies, I somehow missed that case (despite the comment talking exactly about that). Seems that error happens because `(thing-at-point 'line)` returns incorrect data at that last line (it returns...

+1. That's very interesting point - I made a [question on Programmes.SE](http://programmers.stackexchange.com/questions/283715/what-is-the-preferred-way-to-store-application-configurations) about that, but didn't get sufficiently sane answers yet.

They are encrypting the store data (it seems with AES) using `crypto-js` library. Deobfuscated code is doing something like this: ``` var key = PBKDF2.create({ keySize: 8 }).compute(t._cs, JSON.parse(t._cr)) var...