oliverpool
oliverpool
FYI I am giving a try to a larger refactoring in a dedicated package (loose fork): https://code.pfad.fr/gopim/vcard/ Main differences for users: - use slices instead of maps (preserves original ordering...
#35 should address this: ```go card.Set( vcard.FieldGeolocation, &vcard.Field{ Value: vcard.FieldValue(fmt.Sprintf("geo:%f,%f", info.Location.X, info.Location.Y)), // set raw value Params: map[string][]string{ vcard.ParamType: {vcard.TypeWork}, }, Group: "", }, ) ``` (you could also split...
@saurabhjadhav1911 I showed a possibility to use github action in #47. Here is the demo repo: https://github.com/oliverpool/blender-cpu-image I also had issues with libxkbcommon: https://github.com/oliverpool/blender-cpu-image/commit/e380167f5f7e297e443d8c42245cf8fa8365364a
I also purchased a TS101 recently (edit: actually Aug 2024, so not soooo recent). The stock firmware worked fine (forgot to write down the version), DFU indicates 1.05. I upgraded...
Stupid question: which file did you put on the device? (language and extension)
ts101_en.hex sounds good. When flashing, what is displayed as DFU version? You get the .rdy file after flashing, right? (sorry if those questions sound stupid, but I am looking to...
In the meantime, maybe an hint could be added to the README in the "Miniware TS101" notes, linking to this issue: > [OLED issues with DFU:1.06](https://github.com/Ralim/IronOS/issues/2063)
My current state: 1. Don't use css-caldavtest, use https://github.com/CalConnect/caldavtester instead (better organized, not so many quirks, better logging) 2. Nix is able to install unsupported software (like Python 2) and...
Which compositor are you using? I saw a similar behavior with niri, but `swayidle` started via [systemd](https://github.com/nix-community/home-manager/blob/release-25.05/modules/services/swayidle.nix) seems to behave properly (unlike the one that I started on the command...
I think I got it working with the dbus system interface `org.freedesktop.login1.Manager`. I took the code from https://git.madhouse-project.org/algernon/ala-lape/src/branch/main/src/ala_lape/inhibitors/logind.rs (EUPL-1.2 license ⚠️ ) and plugged it here. swayidle behaved correctly: ```...