Comment by lormayna

Comment by lormayna 6 days ago

6 replies

* Kernel development and eBPF: I tried many time to go deep on those topics, but never became proficient

* Bayesian statistics: I know the basics and the theory, but I am not able to understand how to use it in a real world problem

ddelnano 5 days ago

For kernel dev and eBPF, what kinds of resources or tutorials have you tried in the past? Have you ever tried building something small or contributing to an existing project?

Curious to hear what hurdles you ran into.

  • lormayna 4 days ago

    For kernel, I have tried to write simple modules and it's okay. But when I am going deep in the internals, things become really complicated and my memories from OSes exam are rusty. For eBPF, I wrote a quite simple DNS visibility tools and while I am okay with the logic, I struggled on writing low-level C code that parse the network packet. Moreover, I found documentation incomplete and really confusing, for example: I would like to understand how the different queues are working and the only solution was to read the code. Right now, anyway, it seems that this aspect is improved; probably it's the time to play again with that!

    • ddelnano 3 days ago

      For Linux kernel dev, I found Linux Kernel Programming: A Comprehensive Guide to Kernel Internals to be a really helpful resource. For eBPF, the early chapters of Brendan Gregg’s BPF Performance Tools gave me the context I needed to get started.

      From there, what’s helped me most is a cycle of reading new material, building prototypes and exploring how an open source system solves similar problems. I've definitely hit that wall as systems programming can get confusing fast.

      I’ve also noticed that I sometimes get stuck trying to make something perfect before I’ve even started experimenting. Forcing myself to build the lowest-effort version of an idea has been surprisingly productive. Debugging things that don’t work is frustrating, but that failure often reveals insights I wouldn’t have discovered if I were overanalyzing.

      You’ve probably seen some of these resources already, but just sharing in case any of it’s useful. I work with eBPF full-time and had many similar challenges along the way, but recommend jumping back in when you have the time.

      • lormayna 10 hours ago

        Thank you! I already know Brendan Gregg, but never read his book.

        > I’ve also noticed that I sometimes get stuck trying to make something perfect before I’ve even started experimenting.

        Exactly, this is something that I am struggling with too.

nextos 5 days ago

> Bayesian statistics

Look into real-world examples in e.g. The Bugs Book (Lunn et al) or any of Gelman's books. Pyro and PyMC also have good real-world examples in their tutorials.

  • lormayna 4 days ago

    Thank you for suggestions. I will give them a look :)