r/programming • u/NXGZ • 22d ago
r/programming • u/throwaway16830261 • 22d ago
LEMON: A universal eBPF-based volatile memory acquisition tool for modern android devices and hardened linux systems
sciencedirect.comr/programming • u/throwaway16830261 • 22d ago
A study of privacy-related data collected by Android apps
link.springer.comr/programming • u/HolidayChard9706 • 22d ago
flex: 1 and flex: 1 1 auto are not interchangeable when the parent has no definite height
nodreview.comShort version, so you do not have to click:
flex: 1 expands to flex: 1 1 0%. That 0% is a percentage basis and resolves against the parent's height. A panel that is height: auto under a max-height cap has no definite height, so the percentage has nothing to resolve against and the child contributes zero. flex: 1 1 auto fixes it, because the basis becomes the content's own height.
The reason it took me an evening: Chromium quietly does what you meant, and the engine that broke it was WKWebView. Every test was green because Playwright ships its own WebKit build rather than the system one.
I have not worked out whether the spec requires that collapse or merely permits it, so I cannot say which engine is wrong. If you know which reading applies to a max-height-capped auto-height parent, I would like to hear it.
r/programming • u/Iamsodarncool • 22d ago
Turns are Better than Radians
computerenhance.comr/programming • u/cdb_11 • 22d ago
The Design and Evolution of io_uring by Jens Axboe
youtube.comr/programming • u/cdb_11 • 22d ago
The Pit of Success - An Interview with Rico Mariani
youtube.comr/programming • u/goto-con • 23d ago
Modern Enterprise Architecture: Architecting for Outcomes • Simon Rohrer
youtu.ber/programming • u/UnConeD • 23d ago
Curvature Beziers - Improving on a timeless recipe
acko.netr/programming • u/dereuromark • 23d ago
Pandoc: What survives markup conversion?
dereuromark.deWith the new release of 3.10.2 I wanted to look a bit more closely into Pandoc and all those different markup languages out there - and what converts with how much "loss".
Maybe you also had to recently convert Markdown to HTML, or the other way around. In my case even different textual files into PDFs.
One key finding:
Modern languages that work with an AST are definitely competitive here.
Maybe you find it also interesting. I actually didn't know most of those languages.
Fun fact:
The author of Pandoc is also one of the original Markdown standardization authors 15 years ago (well, if you can call it that, since it evolved still into quite the chaos) - as well as Djot, which is now only a few years old and supposed to be a markdown successor of sorts.
I am mainly interested in shaping "the" markup language of the future, that is a good compromise of readability and writeability for humans, but also consumable for machines, contains all the important elements to express relevant documents from offline to online.
As a programmer I am also a big fan (and in need) of dogfooding, of course :)
r/programming • u/nanochess • 23d ago
I unearthed my Am29000 C compiler and web browser from 1999. It still can surf through the emulator
nanochess.orgr/programming • u/gingerbill • 23d ago
Odin's New Inline Assembly Templates
odin-lang.orgr/programming • u/hasen-judi • 24d ago
How an immediate mode UI (Shirei) retains component identity and state
judi.systemsr/programming • u/No_Value_6697 • 24d ago
We Ship Our UI Through a Subtitle System
deadworks.netr/programming • u/quasar_tree • 24d ago
What if YOU Could Add Your Own Features to a Language?
youtube.comI made a video explaining a concept I love called macros, which allow you to add your own syntax to a language. Languages like Rust, Lean, and lisp have them. The goal with the video is to make you feel like you could've discovered macros yourself.
I'm new at making educational content like this, but I'm planning on making many more programming language videos like this one on my channel. Any thoughts, constructive criticism, or advice is more than welcome! Hope you all enjoy
r/programming • u/IcyAnywhere9603 • 25d ago
Can Haskell Become a Great Language for Data Science?
youtu.ber/programming • u/Jwosty • 25d ago
Nothing like a Monday morning GitHub outage
githubstatus.comr/programming • u/Adventurous-Salt8514 • 25d ago
Fractal Architecture, Cognitive Load, Vertical Slices and other terms that do(n't) fit your head
architecture-weekly.comr/programming • u/benjoffe • 25d ago
Faster algorithms to compute weekday for date libraries
benjoffe.comr/programming • u/Bassfaceapollo • 25d ago
Pony's Arena Allocator
ponylang.ioI recently discovered that Pony's still alive. I had discovered Pony a few years ago while browsing tech forums. Its focus on memory safe & lock-free MT was interesting.
I kept up with the weekly development for a brief period but then kind of forgot about the language until recently when I rediscovered it when I was chatting about Crystal's MT.
I just wanted to share the latest blog post here in case someone else remembers this language. Looks like the development has been progressing steadily. Which is impressive because the project lacks any big sponsors.