Latest bookmarks (page 2 of 14)

7 Nov www.waveshare.com
ESP32-S3-Touch-AMOLED-1.8 is a high-performance MCU board designed by Waveshare. Despite its compact size, it integrates a 1.8inch capacitive touch AMOLED, power management chip, 6-axis IMU sensor (3-axis accelerometer and 3-axis gyroscope), RTC, TF slot, microphone, speaker and various other peripherals on board for easy development and embedding into the product.
7 Nov github.com
A small homemade motorcycle computer based on ESP32 controller to show some usefull information. The project has been done thinking on the modularity, so new features can be added (or removed).
6 Nov stackoverflow.com
Stack Overflow. How to use Python's Multiprocessing Managers to instantiate a Proxy class to access to the methods of the child process. You can pass params, so why to bother with all the hassle of the Queues?
6 Nov stackoverflow.com
Several approaches in Stack Overflow to colorize the logs in Python.
6 Nov stackoverflow.com
You have to include your chats to the "parts" list to make gemini to remember their chat history.
1 Nov www.bikebound.com
Article about a customized Honda NX650 Dominator
29 Oct deepwiki.com
This document explains how to set up and use live microphone input with the Vosk speech recognition system. It covers capturing real-time audio from microphones in both Python and Node.js, passing the audio data to the Vosk recognition engine, and processing the results
18 Oct stackoverflow.com
An example of how to achieve concurrency with Python beyond multiprocessing. The description mentions that nowadays in Python this is used besides multiprocessing that communicate with queues.
18 Oct stackoverflow.com
This tangential issue in StackOverflow shows actually how to define an own ONNX Session outside Piper TTS, and then pass it to the PiperVoice instance. This could solve the issue with multiprocessing (can't pickle the ONNX session)
Also, explains that ONNX already manages its own threads already. Maybe it's not worth to make it work in a separate Process.