Adam Simpson

Results 14 comments of Adam Simpson

Update: I've tracked this down to the `-sender` flag. Removing this causes the notification to fire correctly. E.g. ``` lisp (defun alert-notifier-notify (info) (if alert-notifier-command (let ((args (list "-title" (alert-encode-string...

@waisbrot ah that makes sense, thank you! I'm going to have to figure out another way to be alerted for `org` related things when I'm _in_ Emacs.

Yep, that’s where I’ve landed as well. It might also make sense to explore a more “native” to Emacs notification approach, but I don’t know what that looks like at...

:joy: Yeah that guy, what a moron :joy:

I can see an argument for having this as an option but by default it might be unexpected/not-desired? VSCode itself seems to make the distinction that extensions are installed "in...

You could probably pull the shell script from the [nixOS wiki](https://nixos.wiki/wiki/Visual_Studio_Code#Remote_SSH) and wrap that in whatever init system you're using inside Docker?

No problem, thanks for the prompt response!

Additional notes: this is the same problem as outlined in #61. However it's not clear to me if the solution ended up being a "self-contained" binary from Go or having...

This looks good and fixes building from source for me. Any chance it can get merged?

[OpenAI](https://platform.openai.com/tokenizer) recommends [gpt-3-encoder](https://github.com/latitudegames/GPT-3-Encoder) to count tokens like so: ```node const {encode} = require('gpt-3-encoder') const string = process.argv[2]; console.log(string); const encoded = encode(string) console.log('# of tokens: ', encoded.length) ``` Compare results...