Tootfinder

Opt-in global Mastodon full text search. Join the index!

@TFG@social.linux.pizza
2026-01-26 13:06:19

Hey #fedihelp :)
I'm tinkering with #nextcloud in my #homelab a bit.
Just tried to get AppAPI running with Docker Socket Proxy.
I can register the daemon but the test d…

Screenshot of a log file with the text:

Init was called
TRACE:    127.0.0.1:59836 - ASGI [3] Send {'type': 'http.response.start', 'status': 200, 'headers': '<...>'}
INFO:     127.0.0.1:59836 - "POST /init HTTP/1.1" 200 OK
TRACE:    127.0.0.1:59836 - ASGI [3] Send {'type': 'http.response.body', 'body': '<2 bytes>'}
Try default url to report the init status: https://somecloud.example.local
TRACE:    127.0.0.1:59836 - HTTP connection lost
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed…
@scott@carfree.city
2025-12-29 07:04:58

Details on the California #wealthTax proposal:
lao.ca.gov/BallotAnalysis/Init
It's a one-time 5% wealth tax but can be spread over 5 ye…

@dr2chase@ohai.social
2026-01-28 15:38:18

Dear adventurous Go users who are playing with SIMD in 1.26 pre-release. Coding your feature checks like this:
```
func init() {
useAVX512 = archsimd.X86.AVX512()
}
```
will yield not-best code, because the compiler is looking for guards that check archsimd.X86.AVX512() in order to (whenever there is a choice) enable the AVX512 versions of operations, e.g., mask registers versus bit masks, that sort of thing. (512-bit vectors will also force AVX512).
<…

@azonenberg@ioc.exchange
2025-11-20 10:16:50

Poking more at the STM32MP2.
I have CPU2 (the M33) booting from flash, reading a bunch of fuse registers and printing them, doing all the hardware init, etc.
I'm gonna call that reasonably brought up. My current flasher hard codes a few addresses but it's good enough to get the job done while I am tinkering before I make a more permanent solution.
I think I'm ready to start looking into bringing up the A35 next.

@stf@chaos.social
2026-01-23 12:48:54

#Klutshnik v0.4.1 is out.
Klutshnik is a Key Mgmnt Service 4 data-at-rest. Keys r stored in a threshold setup& r never reconstructed only used in operations that hide their values. These keys r cheaply&securely updatable without reencrypting the encrypted data, providing forward-secrecy&post-compromise security. Klutshnik servers can use TLS, USB or BLE.

@hakona@im.alstadheim.no
2025-11-17 17:55:14
Content warning: #ComputerNerding

This can't be normal :
# time /etc/init.d/fail2ban start
Starting Authentication failure monitor: fail2ban.
real 113m45.854s
user 0m0.234s
sys 0m0.034s

@azonenberg@ioc.exchange
2025-11-19 14:45:29

STM32MP2 bringup progress: I have a "FSBL" (really my whole firmware) image booting from QSPI flash, doing some very low level init, then hanging before it starts the UART.
But it's able to open up debug access without needing ST's wrapper. I hard code a few pointers for SFRs that I don't have structs for but it's enough that I can get gdb attached and the code isn't TOO ugly.
Now I need to figure out why Timer::Sleep() is being derpy in BSP_InitUART…