David Ernst

Results 77 comments of David Ernst

I have been playing with this, I was able to get some basic JS working to find the most recent reply and read it aloud using the built in SpeechSynthesizer...

Got this working! By adding to the `main.js` custom user script file: ```js document.addEventListener('visibilitychange', () => document.getElementsByTagName('textarea')[0]?.focus() ) ```

Looking into where in the code this file is written, in order to make a PR so others can benefit from this as a new default. Looks like this is...

You could add a hotkey that triggers the focus, similar to code here: https://github.com/lencx/ChatGPT/issues/550 And here's another one showing how to add custom hotkeys: https://github.com/lencx/ChatGPT/issues/109#issuecomment-1834698327 (you'd want it to trigger...

> Each user is also expected to put down a deposit; if anyone publishes a signature of their own address with the private key, they can steal the deposit and...

If the deposit amount could be partially burned, if and only if it was being stolen, that could be a partial mitigation. - Currently 100% of the deposit is given...

This is pretty frustrating— any tips to correct this?

![image](https://user-images.githubusercontent.com/6340841/72552444-bd6d9700-384b-11ea-968c-17438299d796.png)

In MacOS, anyone can now [create a standalone app](https://support.apple.com/en-us/104996) by opening the site in Safari, then going to `File > Add to Dock`:

Adding `type File = unknown` to the top of the complaining `node_modules/openai/dist/api.d.ts` file silenced the 24 errors for me. Quick and dirty solution as long as you're not calling any...