Tootfinder

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

@aral@mastodon.ar.al
2026-02-14 19:32:13

Still using `npm init -y`?
May I introduce you to `npm init --init-type=module --init-license=AGPL-3.0-only -y`?
:awesome:👍 Free software license (makes “open” as in ”open for business” folks squirm)
:awesome:👍 ES modules (because it’s 2026)
#nodeJS #npm

@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.

@sean@scoat.es
2026-03-21 15:36:06

The RPi that runs #yulbbs crashed and wouldn't reconnect early on Thursday (overnight).
This morning I managed to get it running again by playing Apollo 13 and moving devices between USB busses and gently pushing the power supply/consumption until it would init everything safely.
Really bummed that I missed the CF-18s/F-16s escorting the passenger jets on Thursday, though.

@teledyn@mstdn.ca
2026-02-20 17:28:01

I am guessing no one here can confirm or deny this #java #JVM crash-on-keystore-decrypt which, if true, is a VERY SERIOUS BUG that could not be trusted in a production environment, and then has gone unfixed for decades? That does not seem very likely, does it?
As it is, keytool says there is nothing wrong with my keystore or its password, and watching the process launch I see after the init, it sits, idle, a few seconds later its Time value in top only increments the millisecs, and within a minute, it is gone, voom, not a trace in any logs as to why.
I do, truly, LOATH this technology. It is so fucking fragile; a life-sentence for the sr developers and sysadmins in production systems (that's why they often don't get holidays)

@thesaigoneer@social.linux.pizza
2026-03-21 08:05:31

The worst thing about moving is the end of it. Our stuff will be arriving Monday; we moved into the Cave today. So, how about that relentless distrohopping of the last 2 weeks? That's gotta stop now 😩 CachyOS, Zena, Zirconium, Origami, Arch proper, Garuda: it's been a pleasure! I'll manage to squeeze one final one in and then it's back to the proper init systems 😝
#archlabs

@penguin42@mastodon.org.uk
2026-03-16 13:14:44

Nice! I reported a #digikam 9 crash on #fedora44 's build - and it was fixed in less than 2 days.
(This was a classic problem of a library, jasper, that had a one time init function, in a program with plugins and that links every other known library - who knows what else will want to init…

@GroupNebula563@mastodon.social
2026-03-14 02:18:07

ok i got my init back and hopefully also updated apt while i was over there. this better work :P

@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).
<…