Bernhard Caspar

Results 11 comments of Bernhard Caspar

Well yes you can manually assign a display name, but this PR would provide some convenience out of the box without needing that manual step. Also there may be some...

I experimented a bit with this.. it seems like macOS automatically spreads out the menu bar icons evenly once they get close to the notch. This behaviour also occurs when...

Looks like Apple fixed it in 12.3! 🎉

The way it is currently implemented, it can't work on a hosted version, even if you remove the `(process.env.NODE_ENV !== "production")` condition. The problem is that the request to the...

@Bortus-AI Is Ollama instance on your server accessible from your local machine? E.g. if you are running Ollama on the standard port, `http://your-server-ip-or-domain:11434/api/tags` should return a JSON with your Ollama...

There is an env variable for Ollama to allow CORS, try to set: OLLAMA_ORIGINS=*  (On the server running Ollama) Also make sure not to use Firefox, it always blocked the...

I think this must be a configuration issue, when using the Whisper OpenAI Cloud API it doesn't translate by default. If you run WhisperKit with this custom prompt it also...

I searched around for a bit, and this seems to be the only proper alternative now: https://github.com/johnfactotum/foliate-js

As a workaround you could do the following: ``` const ids = [1, 2, 3, 4]; const placeholders = ids.map(() => "?").join(","); db.run(`SELECT * FROM table WHERE table.id IN (${placeholders})`,...

I came across this issue because I just discovered in horror that my whole home directory was mounted into the VM while playing around with `colima ssh`. I've actually used...