Results 10 comments of Charlie

[Here](https://privatebin.net/?6b186d5714473af2#7t8Z4UPzfhhq63AiRWFoUSfCGWFtYTbg4EwUWziZLWnV) are the contents of the `neutralino.config.json`:

Node v16.15.0 Vitejs v3.0.0 Vitest v0.18.0 50/50 Getting these unhandled rejection errors both locally and on a WoodpeckerCI server even though my tests are shown to still pass. ``` ✓...

I love using this crate for my terminal projects. I don't remember exactly, but I was looking for similar NodeJS/Deno terminal prompt libraries and I stumbled upon `inquire`. I've made...

I'd like to add my file encryption software [crypto_rs](https://github.com/CM-IV/crypto_rs/tree/fltk) to this list. The program makes use of the [age](https://crates.io/crates/age) encryption library to encrypt your provided file and generate a password....

I think I'm also getting something similar to this issue. I'm using `Astro` with a `Tauri` Rust application and only doing client-side rendering where SolidJS and your library is concerned....

I'm getting `OpenAIException - Error code: 404 - {'detail': 'Not Found'}` when trying to run this via `oobabooga/text-generation-webui`, which exposes an OpenAI compatible API locally. It works with `Ollama` hosted...

You can use .node (Node-API modules) in both Deno and Bun, but you cannot do `bun build --compile` or `deno compile` with them. So that just means not building or...

I could be wrong, but this might help with people already using Sqlite in their applications with the `sqlx` crate as well. I tried this a bit ago and ran...

You're iterating through the array of numbers and printing the prompt for each number. You have 10 numbers in it, so hitting `ctrl + c` 10 times would exit out...

I have never seen the selection prompt used like this, but I suppose you could do the following: ```ts import { createSelection } from 'bun-promptx' [1, 2, 3, 4].map((item) =>...