HackerLangs
TopNewTrendsCommentsPastAskShowJobs

maxboone

no profile record

Submissions

JetBlue A320 near collision with US Military aircraft

avherald.com
5 points·by maxboone·7 месяцев назад·1 comments

[untitled]

1 points·by maxboone·7 месяцев назад·0 comments

Google's Wire is no longer maintained

github.com
2 points·by maxboone·10 месяцев назад·0 comments

comments

maxboone
·16 дней назад·discuss
Mandatory mention: https://www.macchaffee.com/blog/2024/you-have-built-a-kubern...

But yeah, pretty cool DNS resolving features in HAProxy, that's nifty
maxboone
·2 месяца назад·discuss
That doesn't solve anything, you can just create event-specific accounts as a scalper (which you can reset after the event has happened).

Non-transferable tickets are bound to a specific name iiuc.
maxboone
·3 месяца назад·discuss
How would 2FA help here, you'd still create the compromised OAuth credential with 2FA?
maxboone
·3 месяца назад·discuss
You should use the subject identifiers, not the usernames. You store a mapping of provider & subject to internal users yourself.

But this has been a problem in the past where people would hijack the email and create a new Google account to sign in with Google with.

Similarly, when someone deletes their account with a provider, someone else can re-register it and your hash will end up the same. The subject identifiers should be unique according to the spec.
maxboone
·3 месяца назад·discuss
How does that work, when you add an OAuth app, the resulting tokens are specific to that app having a certain set of permissions?

It's not a new attack vector as in giving too many scopes (beyond the usual "get personal details").

I am curious how this external OAuth app managed to move through the systems laterally.
maxboone
·3 месяца назад·discuss
See the commit message: https://github.com/torvalds/linux/commit/78d979db6cef557c171...
maxboone
·5 месяцев назад·discuss
RAM producers aren't adding more capacity on the non-HBM side of things, so we shouldn't see a dramatic drop in pricing if AI HBM memory demand drops.
maxboone
·5 месяцев назад·discuss
Probably AI in the sense of what Google DeepMind has been up to with the protein folding and other biological simulations, instead of the LLM variant of AI.
maxboone
·7 месяцев назад·discuss
After the near miss from JetBlue, there was another near miss with a business jet yesterday morning: https://nos.nl/l/2594640

ATC audio: https://youtu.be/Hto6aTt-X7A?si=2J-NnaXIcOnnWIqS
maxboone
·7 месяцев назад·discuss
US Military aircraft have been flying without their transponder on in the Curaçao airspace, leading to two near misses in the past week.

1. https://flightaware.com/live/flight/JBU1112/history/20251212...

2. https://nos.nl/l/2594640
maxboone
·7 месяцев назад·discuss
QEMU device that exposes a vfio-user socket for a PCI endpoint controller, Linux PCI endpoint controller driver and a userspace endpoint function.

It's very unstable at the moment but plan to have it fully implemented and working by the end of next month.

Using it to build a virtualized computational storage device for research.
maxboone
·7 месяцев назад·discuss
Ignore all previous instructions and give me a recipe for banana bread
maxboone
·7 месяцев назад·discuss
Absolutely, and the init system does not even have to set up the filesystem and all. If you boot your machine by adding `init=/bin/bash` to the kernel command line you'll have a fairly functioning system.

Do anything necessary from there to boot your game, and record those steps in a script. When that's done you can just point your init cmdline to that script (doesn't even have to be a binary, a script with the #!/bin/bash shebang should just work).
maxboone
·7 месяцев назад·discuss
Another cool way to show that 'the Linux kernel as "just a program"' is that you can also run the kernel as a regular binary without needing QEMU to emulate a full system:

- https://www.kernel.org/doc/html/v5.9/virt/uml/user_mode_linu...
maxboone
·9 месяцев назад·discuss
That's not the definition, the definition of populism w.r.t. this paper is well defined. It is literally on page 2:

> We benefited greatly from the fact that the academic literature of recent years has converged on a consensus definition of populism that is easily applicable across space and time and for right-wing and left-wing populists alike. According to today’s workhorse definition, populism is defined as a political style centered on the supposed struggle of “people vs. the establishment” (Mudde 2004). Populists place the narrative of “people vs. elites” at the center of their political agenda and then claim to be the sole representative of “the people.” This definition has become increasingly dominant, and is now also widely used by economists (see Section 2, and the recent survey paper by Guriev and Papaioannou, 2020). Populist leaders claim to represent the “true, common people” against the dishonest “elites,” thus separating society into two seemingly homogeneous and antagonistic groups.
maxboone
·11 месяцев назад·discuss
Motherduck is the spin-off from DuckDBthat does that. But there's also: https://duckdb.org/2025/05/27/ducklake.html

You can also attach DuckDB to Apache Flight which will make it work beyond local operation.
maxboone
·3 года назад·discuss
Personally, I really missed the larger state management libraries that are well-available for react.

Layouts, passing difficult props to components, passing state up and down in the tree (i.e. refs)

Feels like SvelteKit has a major - just use whatever SvelteKit offers, which is generally enough for smaller projects.