Tootfinder

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

No exact results. Similar results found.
@jevinskie@mastodon.social
2024-05-23 04:37:34

@…
I saw your LLVM WASM build RFC. Awesome! It would be super cool if point 4 (-fintegrated-lld) could be implemented - I’ve been wanting to add Clang/LLVM/LLD as an optional CModule (or then CXXModule!) backend for Frida instead of TCC and that’s one chunk of the required work.

@crell@phpc.social
2024-04-26 18:43:06

Come on, Naperville!
#RankedChoiceVoting

@migueldeicaza@mastodon.social
2024-03-20 22:14:30

An important Godot for iPad milestone.
These are two instances of a full-blown Godot running side-by-side in the same process.
The next step on the virtualization idea that I shared on the blog post [1]
But this time, rather than being one-at-a-time, they are simultaneous.
This was necessary to support debugging of Godot apps on the iPad (and soon Vision).
[1]

@EarthOrgUK@mastodon.energy
2024-04-09 19:51:02

On Smart Heating For Small Buildings in the UK (2012) - What would be 'smart' heating circa 2012 for our homes, schools, community centres and shops? - earth.org.uk/note-on-smart-hea

@mgorny@social.treehouse.systems
2024-03-15 15:53:20

As promised, another blog post: "Optimizing parallel extension builds in PEP517 builds"
"""
The distutils (and therefore setuptools) build system supports building C extensions in parallel, through the use of -j (--parallel) option, passed either to build_ext or build command. Gentoo distutils-r1.eclass has always passed these options to speed up builds of packages that feature multiple C files.
However, the switch to PEP517 build backend made this problematic. While the backend uses the respective commands internally, it doesn't provide a way to pass options to them. In this post, I'd like to explore the different ways we attempted to resolve this problem, trying to find an optimal solution that would let us benefit from parallel extension builds while preserving minimal overhead for packages that wouldn't benefit from it (e.g. pure Python packages). I will also include a fresh benchmark results to compare these methods.
"""
blogs.gentoo.org/mgorny/2024/0

@unchartedworlds@scicomm.xyz
2024-03-14 08:12:29

Diane Abbott in her own words
"Over the nearly 40 years that I have been an MP, under any speaker of the House of Commons that I can remember, I would have been called. ... Hester’s abusive comments about me had led the news bulletins that day, and I was referred to several times in PMQs itself."
Her article also refers back to the Forde Report, which documented Labour politicians' horrible comments about her.
#DianeAbbott #LindsayHoyle #racism #FordeReport #UK

@mgorny@social.treehouse.systems
2024-03-20 19:51:35

There's an open discussion in #Python packaging how `pyproject.toml` and `PKG-INFO` should interact in sdist. Long story short, new version of #Hatchling started taking `PKG-INFO` for granted. For distribution packagers, this means that patching `pyproject.toml` after unpacking sdist suddenly stopped working, and e.g. if you fixed dependency pins in it, hatchling would instead silently used pinned dependencies from `PKG-INFO`.
The discussion is still open, but there's already been some worrying comments, such as people should modify package versions when they patch them…
#Gentoo #PEP517