Tootfinder

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

@cyrevolt@mastodon.social
2025-09-11 21:27:36

IT WORKS! ZOMG IT WORKS!!!!
🥳
Turns out, I have to use `internal/runtime/atomic` instead of sync/atomic`` for the `atomic.Bool`.
Then this here will _not_ happen lol:
gist.github.com/orangecms/7f98

@Techmeme@techhub.social
2025-10-09 06:21:12

A teardown of the $800 Meta Ray-Ban Display reveals a system of mirrors enabling its "geometric" waveguide tech, setting it apart from other AR glasses (Elizabeth Chamberlain/iFixit News)
ifixit.com/News/113543/theres-

@cyrevolt@mastodon.social
2025-09-11 16:05:49

Took me a good while now to find a way to
- configure a Linux kernel
- find a suitable QEMU command
- build a corresponding initramfs
for 32-bit Arm Linux supporting Arm v7.
It is such an utter mess lol
Addendum:
In the end, I went with the RPi2 target.
My defconfig and notes are here:

@arXiv_csSE_bot@mastoxiv.page
2025-09-10 08:38:01

PatchSeeker: Mapping NVD Records to their Vulnerability-fixing Commits with LLM Generated Commits and Embeddings
Huu Hung Nguyen, Anh Tuan Nguyen, Thanh Le-Cong, Yikun Li, Han Wei Ang, Yide Yin, Frank Liauw, Shar Lwin Khin, Ouh Eng Lieh, Ting Zhang, David Lo
arxiv.org/abs/2509.07540

@Techmeme@techhub.social
2025-10-08 16:15:57

Germany's Federal Cartel Office opens an investigation into whether Temu is influencing the pricing of third-party merchants, potentially stifling competition (Mark Hallam/DW News)
dw.com/en/germany-investigatin

@steve@s.yelvington.com
2025-10-08 15:59:36

My blog -- which I haven't updated since 2019 -- was off the air for an unknown amount of time due to a Debian update that removed MariaDB. Finally got around to fixing that today. It "only" has posts going back to 2005, when I switched to Drupal. Before that I posted hundreds of entries over several years using software I wrote for myself. Somewhere I might have those files.

@markhburton@mstdn.social
2025-09-03 12:14:25

This from IPPR on the greatly increased costs of UK government debt servicing seems reasonable from IPPR.
1) Tax the big 4 banks on the windfall profits that the government is, effectively, funding.
2) Slow down the QE buy-back.
I would also think that the government/bank could, as an exceptional measure, buy back some of the long term gilts using 'monetary financing' aka 'printing money'.
Not something to be done willy-nilly, but here it could get govt ou…

@rasterweb@mastodon.social
2025-08-18 02:58:49

I wrote up a post about fixing a watch band because I really need to remember it's better to repair the things you have instead of binning it and buying a new one...
rasterweb.net/raster/2025/08/1

@michabbb@social.vivaldi.net
2025-09-04 08:35:01

@… it's free, so use it for the mass, not for the difficult tasks... Fixing simple phpstan errors for example works very well...

@cowboys@darktundra.xyz
2025-10-29 22:34:11

Girls Talk, ‘Boys Talk: Fixing the Force dallascowboys.com/podcast/girl

@penguin42@mastodon.org.uk
2025-10-30 01:53:20

Right; mail server upgraded to #debian Trixie; I did it by recreating it in a local VM first; package install to match, and then tested a restore from my encrypted backups - which was a good exercise in its self. Then a dist-upgrade; fixing up Dovecot was the hairiest bit - they've randomly changed the name of a bunch of options. mail_location is now mail_driver/home/path/inbox_path and t…

@arXiv_hepth_bot@mastoxiv.page
2025-09-05 09:56:31

Quantum carrollian bosonic strings
Jos\'e Figueroa-O'Farrill, Emil Have, Niels A. Obers
arxiv.org/abs/2509.04397 arxiv.org/pdf/2509…

@arXiv_csSE_bot@mastoxiv.page
2025-10-08 09:53:29

Explaining Code Risk in OSS: Towards LLM-Generated Fault Prediction Interpretations
Elijah Kayode Adejumo, Brittany Johnson
arxiv.org/abs/2510.06104

@catsalad@infosec.exchange
2025-08-14 15:50:54

The kind of IT support we deserve

They sent this guy to fix my laptop.

Video of a small kitten laying on its back on someone's lap next to a laptop which the kitten is "fixing". Go ahead and eat Copilot while you're at it, little guy!
@mgorny@social.treehouse.systems
2025-09-20 17:00:29

I've probably mentioned that I'm working on switching #Gentoo from our half-broken eselect-ldso logic to #FlexiBLAS. This also involves a transition period where both setups would be supported.
A good thing is that the switch is ABI-compatible with the previous state (or at least it's supposed to be — we're working with upstream on fixing function coverage). Since libblas.so, liblapack.so and the rest are replaced by symlinks, programs that link to them will simply start using FlexiBLAS. So far, so good.
Unfortunately, switching the other way doesn't work as well. Stuff newly built against our libblas.so & co. symlinks naturally reads FlexiBLAS's SONAME from them, and links to libflexiblas directly. So should you decide to switch back, some packages will stay linked to FlexiBLAS and will need to rebuilt.
In order to avoid this, I would have to replace the symlinks with wrapper libraries, having libblas.so.3 and so on SONAMEs, and linking to libflexiblas. Unfortunately, a dummy wrapper isn't going to work — the linker will complain about using indirect symbols from libflexiblas.so. So I would probably have to "reexport" their symbols somehow, and ideally split into appropriate libraries, so that `-Wl,--as-needed` wouldn't drop some of them. But how to do that?
Well, let's look at the existing logic for eselect-ldso — clearly both BLIS and OpenBLAS create some wrappers. So I've spent some time investigating upstream Makefiles, and literally couldn't find the respective targets. I mean, these are quite complex Makefiles, but I'm grepping hard and can't find even a partial match.
As it turns out, these Makefile targets are added by Gentoo-specific patches. And these patches are just horrible. In case of OpenBLAS, they create the wrapper libraries by linking all the relevant .o files from OpenBLAS build, plus the shared OpenBLAS library. So the OpenBLAS symbols relevant to each interface end up duplicated in libblas.so, liblapack.so, etc., and apparently the symbols needed by them are taken from libopenblas.so. The individual interface libraries aren't even linked to one another, so they expose their own duplicate symbols, but use the implementation from OpenBLAS instead.
BLIS is even worse — the patch is simply creating libblas.so and libcblas.so, using all BLIS objects directly, plus symbol visibility to hide symbols irrelevant to the library. So yes, libblis.so, libblas.so and libcblas.so are roughly three separate copies of the same library, differing only in symbol visibility. And of course libcblas.so doesn't use libblas.so.
Truly #GSoC quality.

@NFL@darktundra.xyz
2025-09-29 12:24:14

Can the Ravens right their 1-3 ship? Barnwell breaks down their two biggest issues that need fixing espn.com/nfl/story/_/id/464139

@arXiv_mathPR_bot@mastoxiv.page
2025-09-04 09:09:51

An iterated $I$-projection procedure for solving the generalized minimum information checkerboard copula problem
Ivan Kojadinovic, Tommaso Martini
arxiv.org/abs/2509.02829

@memeorandum@universeodon.com
2025-08-15 01:06:04

Trump claims credit for fixing Social Security as it barrels to insolvency (Meryl Kornfield/Washington Post)
washingtonpost.com/politics/20
memeorandum.com/250814/p133#a2

@jamesthebard@social.linux.pizza
2025-09-14 16:28:18

Went on a fun adventure "fixing" an issue with a Slay the Spire mod. And by "fun" I actually mean fun. Even managed to fix the issue on the first try. However, it was a pain to get everything setup to work on the mod.
blog.jamesthebard.net/posts/bu

@rasterweb@mastodon.social
2025-08-22 21:07:21

I was feeling pretty drained last night and wasn't sure if I should bike to work today. My knee was really bugging me going up steps (more than usual) and I decided I would wait til morning to decide, based on how I felt.
I felt totally fine this morning. Reset! I think it's because I walked nearly 5 miles yesterday, and also spent a lot of time on the floor fixing a laser cutter.

@arXiv_grqc_bot@mastoxiv.page
2025-08-25 09:31:50

Semiclassical polymer field with a cubic potential in cosmology
Ahsan Mujtaba, Syed Moeez Hassan
arxiv.org/abs/2508.16416 arxiv.org/pdf/250…

@NFL@darktundra.xyz
2025-09-18 12:19:14

'Until we win games ... it doesn't matter': Why Dolphins are fixing a broken team culture espn.com/nfl/story/_/id/462841

@cowboys@darktundra.xyz
2025-09-23 20:56:45

Former NFL Head Coach Goes on Epic Rant Over Cowboys’ Defense heavy.com/sports/nfl/dallas-co]

@arXiv_mathOC_bot@mastoxiv.page
2025-08-14 08:37:42

Optimal Transport on Lie Group Orbits
Bahar Taskesen
arxiv.org/abs/2508.09377 arxiv.org/pdf/2508.09377

@mgorny@social.treehouse.systems
2025-10-16 18:16:45

I've filed a report about a minor problem with a #Python package, namely that the source distribution contained some trailing junk that breaks GNU #tar. On one hand, I'm happy that upstream took the issue seriously. On the other hand, I'm terrified of how much #AI slop was involved in the response.
I mean, my short bug report yielded a few walls of text of #LLM analysis of what the cause of the problem might be, of suggested solutions… and praise of the author's fix. These are interspersed with short comments from the author, all pasted under their own personal account. And the linked pull request is also huge, with "verification code" that's quite sloppy (bits that don't do anything, conditions that will never be true… but at least it seems to do what it was supposed to do).
Honestly, I don't know what to do. Not that I ever planned using this package, but at this point I will definitely stay away from it. It's in #Gentoo, and I'll have to continue maintaining it for the sake of reverse dependencies, but I feel like it's unfair to expose our users to packages that have clearly proven to accept AI slop without reviewing it properly. Or rather, AI slop that's being reviewed… by AI. How can anyone think this a good idea?!
There were multiple times in my life when I've considered retiring from Gentoo, for variety of reasons. There were also multiple times when I wanted to get away from computers altogether. Unfortunately, we're living in a truly fucked up world, and there is no escape. The best you can do is put an ever increasing effort to keep fixing all that crap that will just keep piling on faster and faster.
#FreeSoftware #OpenSource