Ivan Voras
Ivan Voras
The `libdracodec_unity.so` files for Android are shipped with debug symbols! Because of that they are over 25 MB in size, and all of that goes into the APK file, increasing...
``` Traceback (most recent call last): File "./gethrpc.py", line 2, in from ethjsonrpc import EthJsonRpc File "/usr/local/lib/python3.5/dist-packages/ethjsonrpc/__init__.py", line 1, in from ethjsonrpc.client import (EthJsonRpc, ParityEthJsonRpc, File "/usr/local/lib/python3.5/dist-packages/ethjsonrpc/client.py", line 7, in...
I keep my PCM audio samples as `[]int16`, and while learning to use this library, it seemed natural to use it like this: ``` data := []int16{...} enc := wav.NewEncoder(f,...
A simple patch to use TinyWireM on ATtiny85/45/25 MCUs, like those on the Digispark and many other boards.
I've noticed that django-json-field treats my floating point data as Decimal type. I've seen why you did it by looking at the issues history of the project on GitHub, but...
Hello! Reading the MFRC522 data sheet, it seems like it supports several power-saving modes, including a "soft power-down" mode (http://www.nxp.com/documents/data_sheet/MFRC522.pdf). Is there a way to use this functionality from this...
I'm building an app where almost all text is set during runtime, using `t.text=something`. I've tried replacing TextMeshProUGUI with RTLTextMeshPro, but it just doesn't work. Here are some screenshots: *...
I'm using timex.Date (https://github.com/invzhi/timex) to work with DATE fields in PostgreSQL, and I'm receiving en error when I try to load a null Date field (with the intent of it...
I'm having a hard time finding how to handle db errors in bun. Specifically, how to check for unique index violations? I think this deserves both examples and a documentation...
I am setting up a microservice project where each microservice will manage its own tables, but all will connect to the same database. Ideally, this would use Bun's migration system,...