Notas Hellout

Results 144 comments of Notas Hellout

`:bp:bd#` or `:bn:bd#` works better because after the first `:b#:bd#` the buffer `#` is not defined until you change to another open buffer and if you try to run that...

Add [`ffsend`/`send`](https://github.com/timvisee/send/blob/master/docs/encryption.md) to list of prior art.

Insertion only: At each node remember: - a counter initialized to the size of its subtree - a counter initialized to 0 When inserting a new node increment the second...

migrated from https://github.com/aureooms/js-algo/issues/22

migrated from https://github.com/aureooms/js-algo/issues/20

> Kinda don't know the best approach to solve this, any suggestions? This is the last hurdle. It's able to build and tests pass with newer D3 libs but don't...

```diff // .lintstagedrc.js module.exports = { - '**/*.js?(x)': (filenames) => filenames.map((filename) => `prettier --write '${filename}'`), + '**/*.js?(x)': (filenames) => filenames.map((filename) => ['prettier', '--write', filename]), }

Maybe this should not be unnecessarily restricted to function configurations? For instance ```js module.exports = { '*.x': ['a b c d', 'e f g h'], '*.y': [['a', 'b', 'c', 'd'],...

Would it also make sense to allow objects `{title: string, command: string[]}` or similar? `title` would allow displaying a custom string for a command, in case an autogenerated one is...

Thanks @multivoltage. I understand that `microbundle`'s goal is to produce bundles that are as small as possible. I am interested in small bundles, but I am even more interested in...