Bitlocker can be "paused", which really means the key is written unprotected to disk. This can be done by the user, but also happens temporarily during updates that would change bootchain measurements, because those measurements are used by the TPM to decrypt the key (hence changing them would make the key undecipherable).
HN user
kerneis
https://www.linkedin.com/in/gabrielkerneis
Can you really unlock the bootloader? I see it mentioned a lot as an upcoming feature (since 2024…) but couldn't find documentation about it.
Thank you! This is a very useful one-pager, answers many questions I had I couldn't find in their documentation (being on mobile I couldn't test with SSH).
https://newsletter.pnote.eu/p/life-in-weeks and it's interactive (you can make your own timeline)
What do you mean exactly by "push as a comment" and "pulls text comments"? Is it some sort of custom logic specific to your work place?
Not sure if it was DARPA, but the web server used Tame, a custom event-driven framework at a time where the thread vs. events debate was all the rage in the academic community. (I did a PhD on the topic and that's how I learned about Ok Cupid!)
You can read the paper they published: "events can make sense" https://www.usenix.org/legacy/events/usenix07/tech/krohn.htm...
I met some ex-OkCupid engineers at a later company who said the framework was smart but a pain to maintain in then long run.
Both exist.
Trivia time: Laeticia (née Laetitia) was married to Johnny, the famous French rock singer; Estelle was married to David, son of Johnny. Note that Johnny is dead now, Laeticia has been remaried twice but kept Johnny's last name, Estelle is divorced, and David is not the son of Laeticia as Johnny got married several times (David's mother is the French actress Sylvie Vartan).
The asahi project is working on improving speaker support: https://social.treehouse.systems/@marcan/109914949041457536 https://social.treehouse.systems/@marcan/109917995005981968
They're still used in France even if mostly by old people.
Slight tangent: it looks like Crisp is also available on Linux, according to their website.
OK, that makes a lot of sense. Thanks for taking the time to clarify!
But as joatmon-snoo correctly said, the more important point is demonstrating how bad backend churn is with this algorithm.
Yes, again the overall point came across clearly, but faced with specific examples I like to dive into the details to check my understanding of how things work. Otherwise, it's easy to overlook key but subtle details.
Other typos: Bbackend; missing math formula in "(for a frontend task m, this is )" — should be ⎣m/L⎦ I guess. Proofreading at ACM seems to be lacking.
There are several points in the article where the examples didn't make sense at all to me. Overall an interesting article, but I'm either a bit dense this morning, or it's sloppy in the details and explanations
For instance, in table 3, it looks like they excluded backend tasks {0,1} (for frontend tasks {0, 1}) then {2,3} (for frontend tasks {2,3}) in the N=10 case, but backend tasks {1,2} then {3,4} in the N=11. Why the discrepancy? I get that it helps them make the point about task 3 changing subset, but it's inconsistent with excluding left-overs in a round-robin fashion presented in the previous paragraph.
Another sentence that I couldn't make sense of is: "If these [tasks 2 and 4] carry over to the subset of the next frontend task, you might get the shuffled backend tasks [7, 2, 0, 8, 9, 1, 4, 5, 3, 6], but you can't assign backend task 2 to the same frontend task. " The "same frontend task" as what? Obviously note the one task 2 was already assigned to (the most intuitive reading to me), since precisely task 2 was not assigned and is a left-over. But then again, what does this mean?
I found the blog post slightly confusing because it never explicitly spells out that endorsing a new node is a manual operation that the administrator has to perform from one of the trusted nodes. Of course this is what you'd want, anything automatic would ruin the purpose of tailnet lock. But still not seeing it mentioned, neither in the text nor in the pictures, made me wonder what I had missed, until I watched the video which features that very step as part of the demo.
All pages on the site return:
Service Unavailable
The sysadmin has decided the site isn't going to run today. If you care, you should shut down your stuff, too.
It doesn't provide more detail; is this related to the recent Supreme Court decision?I use Zotero for this and it shines at pdfs. It does webpage snapshots too. Discussed below: https://news.ycombinator.com/item?id=31849987
Kernel ASLR. User-space has ASLR enabled and working, in addition to shadow stacks and a number of other hardening techniques.
Also from the start they introduce a bug in the kernel (in the TimerDispatcher implementation), and this is the very bug they focus on and eventually write an exploit for.
They explain why they do so, and the article is extremely valuable as a first step and tutorial to get started in Zircon kernel hacking. They also find some actual issues, including one CVE. But I disagree the article shows how "unsecure Fuchsia is as a result of being unfinished".
Thanks, I looked for it by URL and was surprised not to find it, didn't think it would be reposted on another blog.
It's also a routing protocol: https://en.m.wikipedia.org/wiki/IS-IS
Mappy.cz has a layout to visualize CZ with a 19th century map: https://en.mapy.cz/19stoleti?x=13.9488027&y=50.4665536&z=12
It would be awesome to have a similar style available there. I wonder how much work it would entail.
It won't help you learn C++ from scratch, but once you know a bit about it, the Abseil tips published by Google are a remarkably useful resource to learn best practices and modern C++: https://abseil.io/tips/
They are one of the main tools used internally at Google to ensure engineers who have to use C++ stay on top of language evolution and avoid common pitfalls.
I guess this was meant as a joke, but you may want to read about the reign of Terror and how it led people from all social classes to rat each other out: https://en.wikipedia.org/wiki/Reign_of_Terror
See also how people had to get a "certificate of civism" lest them be considered suspect by default: https://en.wikipedia.org/wiki/Certificate_of_civism
Here is the blog post with the details of how they started making enough money in the recent years:
Qt applications are maintained and packaged separately:
pip install woob-qt
And, of course, they're free.
In France, banks let you choose if you want to make an instant or regular SEPA transfer, and there's typically a 1€ fee for the instant version.
I can't quickly refind the customizable font project with source code, where you recompile the typeface with the options you want.
Following-up on irrelevancy: what made you stick? We had the same experience, but gave up after 6 weeks because breastpumping was exhausting, and switched to bottles and artificial milk which our daughter loved immediately.
I don't know a lot about Capsicum, but from what I remember (and see from their website) it adds capabilities to FreeBSD but doesn't make them mandatory. As such, it is a tool to build compartimentalized applications. It does not provide a comprehensive solution to sandbox existing applications, and does not remove the ambiant-authority model. It is a better, safer chroot(). Fuchsia, on the other hand, is built on top of capabilities from the ground up, ensuring that you don't even have a concept of "file descriptor" or "centralized filesystem" to begin with.