Qais Yousef

@qyousef
39 Followers
49 Following
159 Posts
Geek/Engineer - Kernel Hacker - Low Level Software. Opinions my own. https://layalina.io

After tomorrow we'll cover what it takes to get Sched QoS finally done. Having one scheduler that is scalable and portable is not a myth. But to do so we need some help from userspace. And a bunch of other things. Join us in the refereed track at LPC to journey through the various bits and pieces that must be done to get there. Along with a bunch of proposals to tackle some of the trickier areas.

https://lpc.events/event/19/contributions/2089/

Linux Plumbers Conference 2025

The Linux Plumbers Conference (LPC) is a developer conference for the open source community. The LPC brings together the top developers working on the plumbing of Linux - kernel subsystems, core libraries, windowing systems, etc. - and gives them three days to work together on core design problems. The conference is divided into several working sessions focusing on different plumbing topics, as well as a general paper track.

Indico

Tomorrow we'll discuss the need of having performance inheritance enabled for locks by default. As it stands kernel work via Proxy Execution is not enough on its own if userspace does not opt in to take advantage of this facility. Come and join us in this discussion, especially if you work with libc or language interpreter (e.g java or go)

https://lpc.events/event/19/contributions/2244/

Linux Plumbers Conference 2025

The Linux Plumbers Conference (LPC) is a developer conference for the open source community. The LPC brings together the top developers working on the plumbing of Linux - kernel subsystems, core libraries, windowing systems, etc. - and gives them three days to work together on core design problems. The conference is divided into several working sessions focusing on different plumbing topics, as well as a general paper track.

Indico

The dream of safe C/C++ code is here.

I have been following this development, and I am in awe at how much has been achieved, now available as a package:

https://fil-c.org/install_optfil

You can get drunk on the details here:

https://fil-c.org

Installing The `/opt/fil` Distribution

'I witnessed war crimes' in Gaza, former worker at GHF [Gaza Humanitarian Foundation] aid site tells BBC.

"I witnessed the Israeli Defense Forces shooting at the crowds of Palestinians," Anthony Aguilar told the BBC.

He added that in his entire career he has never witnessed such a level of "brutality and use of indiscriminate and unnecessary force against a civilian population, an unarmed, starving population".

https://www.bbc.com/news/videos/cy8k8045nx9o

#Gaza #Genocide

Gaza: 'I witnessed war crimes,' former worker at GHF aid site tells BBC

A retired US soldier reveals why he quit working at Israel and US-backed Gaza Humanitarian Foundation aid hubs.

Seems pretty fascism-y

Let it be known that I too will accept $2 billion in funding on the promise that I will not release anything until I have created God.

https://pivot-to-ai.com/2025/03/06/ilya-sutskever-ex-openai-gets-2b-funding-not-to-release-anything-until-he-has-super-intelligence/

Ilya Sutskever, ex-OpenAI, gets $2b funding not to release anything until he has ā€˜super intelligence’

Ex-OpenAI cofounder Ilya Sutskever’s new startup Safe Superintelligence just closed another funding round. For $2 billion, Sutskever promises not to release any product at all until SSI has develop…

Pivot to AI

Columbia University's OWN faculty were targeting Mahmoud Khalil. One of those faculty was, surprise surprise, Shai Davidai.

The university has faculty & students who physically & chemically attacked students, & we are seeing what has happened to this particular student here being abducted.

Khalil knew that these people were working to bring ICE to terrorize him & wrote an email to the interim president asking for action REPEATEDLY. Shame on this shameful university.
https://zeteo.com/p/scoop-emails-show-mahmoud-khalil-ask-columbia-protection-ice

SCOOP: Emails Show Mahmoud Khalil Asked Columbia for Protection a Day Before He Was Detained

"I haven’t been able to sleep, fearing that ICE or a dangerous individual might come to my home. I urge you to intervene and provide the necessary protections to prevent further harm."

Zeteo
Meanwhile at Harvard, nothing special, just invited leaders of genocidal countries joking about sending exploding pagers to dissenting students during their speech on campus.

Can't keep track of the latest abomination from Unit 8200?

Neither can I, but here is another one.

https://www.972mag.com/israeli-intelligence-chatgpt-8200-surveillance-ai/

Israel developing ChatGPT-like tool that weaponizes surveillance of Palestinians

The Israeli army is building an AI language model using millions of intercepted conversations between Palestinians, accelerating incrimination and arrest.

+972 Magazine

CPU code optimization is always fun. Those statements are all true statements:

- Doing more isn't slower than doing less
- Simpler code isn't faster than complex code
- Executing only one logical branch in an if-else isn't faster than executing both branches and picking the right result later.
- Branching isn't slower than not branching at all.

Premature optimization includes also "obvious" things, because you'll be wrong if you don't benchmark it.

It always depends on the exact thing.