I have been came across the material from time to time, but never really dive into it. But this may be a good resource:
https://news.ycombinator.com/item?id=40571500&utm_source=tldrwebdev
Here's the paste of their comments so far, in case it gets lost:
sshine 1 day ago | next [–] If you want to "go low" in the operating system, you could write a Linux kernel module:https://sysprog21.github.io/lkmpg/https://blog.sourcerer.io/writing-a-simple-linux-kernel-modu...If you want to "go low" in the way hardware works, you could try and write an interrupt handler on an embedded device.If you want to "go low" in how optimizations work in application development, you could try and implement microbenchmarks and look at flamegraphs.https://github.com/brendangregg/FlameGraphhttps://bheisler.github.io/criterion.rs/book/index.htmlreply |
kjuulh 1 day ago | prev | next [–] If you want something on the more application side, I.e. utilization of low-level techniques, I can highly recommend looking into game engine development, even if you aren't interested in games per say.I've recently enjoyed Game Engine Architecture, mostly because there is an interesting mix using low level techniques to solve problems a normal application wouldn't be required to fix.Game development in general is case for tuning yourself to when you should utilize high level programming techniques, and when required dropping into low level optimization to solve local problems.reply |
mandliya 1 day ago | prev | next [–] CUDA programming (writing CUDA kernels) might be a good direction too.GPU race is getting really hot and there is a lot of work being done to squeeze every ounce of performance especially for LLM training and inference.One resource I would recommend is “Programming massively parallel processors” [1]I am also learning it as my hobby project and uploading my notes here [2][1] https://shop.elsevier.com/books/programming-massively-parall...[2] https://github.com/mandliya/PMPP_notesreply |
lelanthran 1 day ago | prev | next [–] Low-level means different things to different people:1. The best source of low-level information on things like operating systems (writing your own) etc is https://wiki.osdev.org/Expanded_Main_Page2. Compiler related low-level should include a read through Crafting Interpreters (https://craftinginterpreters.com/), even if all you're going to do is create compiled languages.3. Hardware type low-level (where you build your own logic) is a long and ultimately non-rewarding path. I would suggest https://eater.net/8bit/All those links are only starting points; use them to find a direction in which to head.[EDIT: I also recommend writing a eBPF module for linux - easier than writing a kernel module, with just as much low-level hooks as you might need].reply |
abnercoimbre 1 day ago | prev | next [–] Join the Handmade Network [0]. Much can be learned by hanging out with the right kind of competent/enthusiastic crowd. And if you allow the plug, I run the conferences [1].[0] https://handmade.network[1] https://handmadecities.comreply |
makz 11 hours ago | parent | next [–] This is one of the coolest things ever.reply |
visil 1 day ago | parent | prev | next [–] It seems that I've been on a right track in some sense - I stumbled upon Handmade Network a few weeks ago!reply |
mikewarot 1 day ago | prev | next [–] It's nowhere near all the way down to the bottom of the stack*, but it is a lot closer... try out Nand2Tetris[1], where you start with a fairly low level construct... the NAND logic gate, and work your way up to a CPU, Memory, and make a virtual PC, then write an assembler and programs for it.[1] https://www.nand2tetris.org/* - Lower levels include transistor logic, analog electronics, electromagnetism, chemistry and the equilibrium equation (how transistors work), quantum mechanics (how atoms and chemistry works).reply |
junon 1 day ago | prev | next [–] Game engine development or going even lower and dabbling in embedded. Embedded in particular helped me to understand computers way more in depth than I would have just sticking even to application-side C.Also, learn Rust.reply |
sph 1 day ago | prev | next [–] Maybe side-step into the most fun hobby in low-level computing: OS development.https://wiki.osdev.org/Main_PageIt will give you a much more holistic view of computers-as-hardware and the low-level intricacies, that are in my opinion more useful and more foundational than just being good at optimising a hot-loop.I did it in my teenage years, and it's my first true and only love. Now almost 20 years later I'm back at it, this time with all the accumulated experience in software engineering. There is nothing quite like it. Any basic, trite design (i.e. the usual POSIX clone) will teach you a great deal about the entire stack.reply |
koliber 1 day ago | prev | next [–] Implement some none-trivial algorithm and then try to optimize the heck out of it. Focus on the concrete CPU, architecture, cache, and memory in the hardware you have in front of you. Forget portability for a moment.This comes to mind: https://www.morling.dev/blog/one-billion-row-challenge/Read how others have done it. Here's an example in Java that goes relatively low-level to squeeze out performance: https://questdb.io/blog/billion-row-challenge-step-by-step/reply |
marckerbiquet 1 day ago | prev | next [–] Agner Fog's optimization manuals https://agner.org/optimize/ are x64 oriented but are a very valuable resource for C++ and assembly programming.reply |
cladopa 1 day ago | prev | next [–] What do you want low programming for?I learned assembly so I could disassemble and understand programs.I learned C so I could use all the libraries that people had made and their frameworks than later because C++, Objective C, C#, java, python and other derivatives.I wanted to manipulate images, speech and video and using high level programming language was so inefficient so I continued using C.I learned FPFGAs again because I needed efficiency or the things I wanted to do like controlling robots did not work at all(they moved so sluggishly).I love learning things, but that was never enough for me to learn something deeply when problems appear.reply |
slyfox125 1 day ago | parent | next [–] While there are a ton of replies here with great ideas, you make the most important point: most of the best work (across disciplines) is done when you have an objective. Find an issue in need of a solution (or better solution) and use the tools available (or make better ones) to accomplish the task at hand.My suggestion would be to find something that can be improved on in daily life and then learn the skills necessary to make that improvement, to include the trades more physical in nature, such as woodworking, 3D printing, etc. Then, combine those skills with, say, programming embedded devices, etc. or whatever else is needed to accomplish the task.This ultimately provides a diverse skill-set, feeds the desire to learn, and provides legitimate improvements to quality of life - both tangible and intangible.reply |
muzani 12 hours ago | prev | next [–] I'm surprised nobody has mentioned mobile yet. While native mobile works through the Android/iOS API, it's often quite close to the minimum abstraction level.Here's a doc you can dig around with https://source.android.com/docs/coreYou get a high level overview, then it explains how everything connects right down to the hardware. It's open source too, so you can go in there and poke around.If you want something that can make money, I'd say look at camera and Bluetooth, because these are the things that need the most customization. Neural network API could see a lot of use in the future too.But there's plenty of fascinating stuff, like how it renders fonts, how it handles hearing aids, and so on.Edit: TIL Android has a category of 'rich haptics', where it gives tiny haptic feedback when you swipe your finger across a surface or to the beat of music. Very few app devs know this, so it's not integrates well into apps.reply |
afr0ck 1 day ago | prev | next [–] Git pull the Linux kernel source tree (with lxr or cscope for code navigation). Open the Linux kernel mailing list, get some patch you're interested in (e.g. memory management), apply it to your tree, study the patch and participate in solving subsequent/related problems.reply |
zamalek 1 day ago | prev | next [–] Arduino/embedded, but forego the "drivers" - interact with the registers directly. I recommend anything RP2040-based (the Pi Pico is the first-party option) because the datasheet stands completely alone in terms of quality.reply |
pabs3 15 hours ago | prev | next [–] Look at how to bootstrap a compiler, kernel etc from source when you don't have any binaries for compilers, kernels etc.https://bootstrappable.org/ https://github.com/fosslinux/live-bootstrap/ https://bootstrapping.miraheze.org/wiki/Stage0reply |
aetimmes 1 day ago | prev | next [–] Read through Understanding Software Dynamics by Richard Sites and work through the example problems in the book.He discusses exactly what you're describing (L1/2/3 cache hit rates, their performance implications, how compiler optimizations can fool us into thinking we have a good hit rate, etc).Also take a look into Intel VTune and Processor Tracing to understand how performance counters like Instructions per Cycle are calculated.reply |
Brightwise 1 day ago | prev | next [–] I would recommend either to build up some RTOS/OS knowledge or excercise your skills in Low-levelish game programming with maybe C and SDL. I found especially these two very rewarding and I'm also making a living on the former for 15 years.https://wiki.osdev.org/ is a good source for getting a hold in OS developmentreply |
1ark 1 day ago | prev | next [–] I love Kip Irvine's book on x86 assembly. Very practical for building small programs, with questions and exercises. It is in the Windows environment though, but I don't think it matters significantly much, instructions are the same after all.http://asmirvine.com/index.htmreply |
rwmj 1 day ago | prev | next [–] FPGA + a RISC-V core. There are loads around, the simplest is probably https://github.com/YosysHQ/picorv32Learn how it works, try adding a new instruction or implementing an extension.reply |
dprophecyguy 1 day ago | prev | next [–] Here is the chronologically laid out resources i'll recommend.Start with this - https://bottomupcs.com/Then do this - https://www.youtube.com/playlist?list=PLhy9gU5W1fvUND_5mdpbN...and finally this https://diveintosystems.org/book/introduction.htmlreply |
pietmichal 1 day ago | prev | next [–] Give Performance-Aware Programming series by Casey Muratori a try!https://www.computerenhance.com/p/table-of-contentsreply |
4pkjai 1 day ago | prev | next [–] If you like game progrmaming I recommend some of the low level C courses by Pikuma. I've done the 3D graphics from scratch course and will do the Playstation 1 Programming course next.reply |
kfreds 22 hours ago | prev | next [–] > I'm just interested in how it all works under the hood.Learn everything there is to learn about the Tillitis TKey. It's the most open-source software and hardware USB security token there is. It is FPGA-based, and contains a tiny RISC-V core.Full disclosure: I'm involved in the project.reply |
camgunz 1 day ago | prev | next [–] I'm a little behind where you are (bad assembly knowledge) and I've always thought my next steps were learning about SPI and I2C, if that helps.reply |
visil 1 day ago | parent | next [–] Not so sure about you being behind me - one minute ago I had little to no idea what I2C or SPI even mean 🙂reply |
ydnaclementine 1 day ago | prev | next [–] Thanks for asking this. I was thinking very similarly after reading comments in the post about the new AMD processors yesterday and not understanding most of them, and another about some networking stuffreply |
ReleaseCandidat 1 day ago | prev | next [–] > What should I read or learn next to be able to reason about things like cache usage of a C program or possible low-level microoptimizations?Learn how to use a profiler like Linux' perf, VTune or Apple's Instruments. Which means interpreting the results of it to optimise your code.reply |
greytape 1 day ago | prev | next [–] https://csprimer.com/reply |
alexdowad 1 day ago | prev | next [–] From your description of your current level, reading Patterson's "Computer Architecture: a Quantitative Approach" would be a next good step.reply |
moeadham 1 day ago | prev | next [–] Go all the way down, grab an FPGA dev board and learn Verilog/VHDL!reply |
sakex 1 day ago | prev | next [–] An emerging (not-so) low-level programming discipline is AI/ML. So you could try implementing decoder only transformers using CUDA.reply |
hnaccountme 8 hours ago | prev | next [–] Look into bfp toolsreply |
shivc 1 day ago | prev | next [–] Might not exactly be very low level but I really liked the learn c programming by dr. chuck youtube course on freecodecamp youtubereply |
gauravkumar37 1 day ago | prev | next [–] https://cpu.land/reply |
keyle 1 day ago | prev | next [–] RTOS, robotics, virtual machines, bare metal games. Or move on to the GPU and pick up CUDA?reply |
DoingIsLearning 1 day ago | parent | next [–] Unless you are working on firmware for the actual actuators I would argue that nowadays robotics is not that low level as OP is aiming for.reply |
palata 1 day ago | root | parent | next [–] Nowadays robotics is about throwing stuff (including ROS, necessarily) in docker containers and running them on an Ubuntu 24.04 onboard the robot, and then adding GPUs and say "so that we can do AI in the future", right?At least that's my experience :-).reply |
zabzonk 1 day ago | prev | next [–] to be honest, i think you have it all there - now write something useful using itreply |
gravescale 1 day ago | parent | next [–] This is really the key. Grinding something you don't actually enjoy or find useful is pretty deathly, even if you get actively paid for it. "Low level", as others have said, is a very, very broad field and if you have an general interest in lower-level stuff, home in on what specifically interests you by trying to achieve some actual goal of use or interest to you.It doesn't really matter what it is, it could be porting FeeeRTOS to your toaster, writing a kernel driver for something, reversing some device protocol, implementing something on an FPGA or building some embedded device or hacking another one into something else. Just get stuck into something and feel the gravity of your open interests.Nothing you learn along the way will be a waste.reply |
boffinAudio 1 day ago | prev | next [–] What you're basically after is some "Tooling and Methodology" studies for embedded. You've got the basics, but now you need to learn some more tools and the methods that make those tools really useful to the embedded/low-level context.Some simple things you can do:* Get yourself a suitable embedded development system - I would recommend anything ESP32'ish that suits your fancy such as a Liligo or Watchy ESP32-based watch, or PineTime if thats more up your alley - and then write some little apps for it.* Get to know Godbolt with a great deal of intimacy, just as a general approach to understanding what is going on:https://godbolt.org/* Invest a little workbench time in some of the various embedded frameworks out there - platformio, FreeRTOS, etc. and, very important: learn the Tooling And Methodology techniques that these frameworks manifest.* Invest some workbench time in the RETRO Computing Scene. Seriously, you can still learn extremely valuable principles of tooling and methodology from an 8-bit retro system from the 80's. Get your favourite platform, get all its tools onboard, engage with its community - you will learn a lot of things that are still entirely relevant, in spite of the changes over the decades.* Get into the F/OSS tooling/methdology flow - find software projects that are interesting to you, find their repositories, learn to clone and build and test locally, and so on. There are so many fantastic projects out there for which low-level skills can be developed/fostered. Get onboard with something that interests you.Good luck!reply |
anonymoushn 1 day ago | prev | next [–] Proceed to highload.fun. Read the resources in the highload.fun wiki.reply |
082349872349872 22 hours ago | prev | next [–] Have you tried -nostdlib yet?reply |
blankx32 1 day ago | prev | next [–] Read Petzolds book Code Read NAND 2 Tetris bookreply |
latenightcoding 1 day ago | prev | next [–] an optimizing Lua or Lisp compilerreply |
boffinAudio 1 day ago | parent | next [–] Yes: +1, this.Learning Lua is a great way to get introduced to a lot of low-level concepts, from bytecode to VM's to language design and beyond.reply |
visil 1 day ago | root | parent | next [–] Ironically, I've been avoiding learning Lua for quite some time for some reason. I guess it's finally time to give it a try!reply |
boffinAudio 9 hours ago | root | parent | next [–] Lua is one of the most amazing bits of programming tech you can use... I have done all sorts of crazy things with it, from applications-with-databases to realtime scientific analysis, games engines and games ahoy, simple automation tooling for devops, and more. I recently decided to sit down and organize a few hundred directories, each with more than 20,000+ files in them, and I've now built a system that my colleagues are asking about installing for themselves..Its just such a great tool, please don't deny yourself this wonderful experience. Get the VM, put it in something - or find a VM somewhere in something already, and have a lot of fun. And don't forget to make sure you know what a sparse array is, and why pairs() and why ipairs() .. you'll be glad you did!PS - don't fall for the hype, you can do someTable[0] = "first", someTable[1] = "second" all you like .. 🙂reply |
jiggawatts 1 day ago | prev | next [–] https://godbolt.org/Not only will it show you how C/C++/Rust, etc... language statements map to CPU instructions, but it can also show you how CPUs execute those instructions! There are advanced views that show the various pipeline stages, execution ports, etc...E.g.: https://godbolt.org/#g:!((g:!((g:!((h:codeEditor,i:(filename...The right-most tab should show you the CPU execution pipelinereply |
jeffrallen 1 day ago | prev | next [–] Go to oswiki and find out how to use an off the shelf real-mode boot loader to get qemu-system-x86_64 to boot into some code you write that adds 1 and 1 and leaves it in the A register. Find out how to use qemu to single step and see your 2 in the register.Then write your own OS.reply |
azubinski 1 day ago | prev | next [–] Low level is mostly not about processing core even if you are using assembly language. Yes, you can reach guru level in assembly language of some target platform but to do something really useful at the lower level you need to know and be able to use the peripheral.And the hardest things are in peripheral.Any modern microcontroller it will give you the opportunity to learn a lot of useful things about peripheral devices. You can start with any really good modern 8-bits micro like Microchip's 2nd generation of ATTiny, so you'll have in your hands a lot of very powerful interesting smart peripherals: hardware event system, small programmable logic, different timers, good ADC etc.The only rational additional consideration here is that your target platform should be popular, well documented and supported by the manufacturer.Then will be time for some Cortex-M0 device with DMA.Then you'll decide where to go further 🙂reply |
exe34 1 day ago | prev [–] my approach is always to pick an idea for a project that I care about and go full autistic not-invented-here in implementing it. i never finish such things, nothing I'd show/publish, but by the time I'm sick of it, I've learnt a huge amount. |