Hack The Kernel
ops-class.org includes slides, hundreds of hours of videotaped lectures, and sample exams: everything you need to learn OS concepts online at your own pace.
View ArticleC for Python programmers
C for Python programmers by Carl Burch is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License. Based on a work at www.toves.org/books/cpy/
View ArticleTutorial – Write a System Call
A while back, I wrote about writing a shell in C, a task which lets you peek under the covers of a tool you use daily. Underneath even a simple shell are many operating system calls, like read, fork,...
View ArticleLupa
Lupa integrates the runtimes of Lua or LuaJIT2 into CPython. It is a partial rewrite of LunaticPython in Cython with some additional features such as proper coroutine support....
View ArticleBasics of Making a Rootkit: From syscall to hook!
WARNING: This tutorial is for educational purposes only, and by NO MEANS should you actually be malicious when (or after) making a rootkit. I thought I’d share how to do this for any security minded...
View ArticleTop 10 algorithms in Interview Questions
In this post “Top 10 coding problems of important topics with their solutions ” are written. If you are preparing for a coding interview, going through these problems is a must. Topics : 1. Graph 2....
View ArticleGoroutines, Nonblocking I/O, And Memory Usage
I am generally a fan of Go’s approach to concurrency: writing code with goroutines is a lot easier than writing traditional nonblocking network servers in a language like C or C++. However, while...
View ArticleEfficient Counter that uses a limited (bounded) amount of memory regardless...
Bounter is a Python library, written in C, for extremely fast probabilistic counting of item frequencies in massive datasets, using only a small fixed memory footprint. Why Bounter? Bounter lets you...
View ArticleRewriting m4vgalib in Rust
If you are a C or C++ programmer somehow still on the fence about whether or not you should take #rustlang seriously, consider this piece from Cliff Biffle an absolute must-read:...
View Article