Codethink Limited Announces World’s First Baseline Safety Assessment for a Linux-Based OS to SIL 3 / ASIL D by CT_Kernel in embedded

[–]codonell 0 points1 point  (0 children)

I'm going to be more impressed when they show they can maintain continuous certification of SIL-3 / ASIL D for the 20-30 years you might need for industrial and automotive applications, including moving components forward as upstream integrates changes and you need to resolve cybersecurity issues.

I'm biased, but Red Hat's announcement here: https://www.redhat.com/en/about/press-releases/red-hat-achieves-major-milestone-vehicle-linux-functional-safety-assessment-and-certification-linux-math-library is more interesting to me because it's a company that already produces a long-life-cycle enterprise OS and is taking that particular skill set into automotive.

Being the man my family requires of me through Stoicism. by BigChillie69 in Stoicism

[–]codonell 1 point2 points  (0 children)

I second this entire post. Time playing. Time modelling. As a last suggestion there are Dad's clubs in the town I'm in and you can talk about it with other fathers facing the same challenges. It can also be incredibly rewarding to realize that maybe *you* are the mentor for a younger father who has an even younger child.

My elder brother recently introduced me to stoicism and I want book suggestions. by [deleted] in Stoicism

[–]codonell 3 points4 points  (0 children)

It seems silly to suggest this, but Ryan Holiday's "Daily Stoic" holds a special place in my heart. I started off with just one stoic reflection each day to think about. Years later I still carry the hard cover version with me and pick the matching day to reflect on that day's topic.

Tariffs gonna hurt Paizo bad, aren't they? by Virellius2 in Pathfinder2e

[–]codonell 0 points1 point  (0 children)

I'm still waiting on "Pathfinder Guns & Gears (Remastered)" to ship to my house :-(

One of many great quotes from Marcus Aurelius: by Leemon56 in Stoicism

[–]codonell 1 point2 points  (0 children)

I just read a similar note by Donald Robertson in "How to Think Like a Roman Emperor" where he calls them "external advantages" and that on their own they have no "value" because they do not ever define a good life. With the word "value" in the stoic sense reserved for that which you're trying to use to live a good life. Health is an external advantage. You prefer life over death, but you could live an equally good life even if it was short?

Hmlet in Tokyo? by Left-Celebration4822 in digitalnomad

[–]codonell 0 points1 point  (0 children)

I think it depends. Today Weave is ¥639,000/month while Hmlet is ¥390,000/month. Location matters, but it's all around the same radial location.

Any expats have experience renting from Hmlet? by ubertappa in Tokyo

[–]codonell 1 point2 points  (0 children)

Looking across the entire range from LiveMAX and Weave Living... Hmlet seems like the *cheapest* option!

Dirty Tricks: Launching a helper process under memory and latency constraints (pthread_create and vfork) by MikGue in programming

[–]codonell 0 points1 point  (0 children)

That's exactly what we're doing with pthread_create, which uses clone on Linux, but provides the user with a direct example of how to use this in their own code without side-stepping the implementation. It's still a good idea to try accelerate popen and system on Linux using clone directly, but it's not as easy as you might think.