This guide is for anyone who is curious about machine learning but has no idea where to start. I imagine there are a lot of people who tried reading the wikipedia article, got frustrated and gave up wishing someone would just give them a high-level explanation.
The ptrace(2) system call is usually associated with debugging. It’s the primary mechanism through which native debuggers monitor debuggees on unix-like systems. It’s also the usual approach for implementing strace — system call trace. With Ptrace, tracers can pause tracees, inspect and set registers and memory, monitor system calls, or even intercept system calls.
Plaid increasingly found that logs-based monitoring system isn’t scaleable for them. They struggled to determine what the right replacement would be and how to get it built. This post dives into how we answered these questions and what they had learn.
Exceptions occur in various erroneous situations, for example when accessing an invalid memory address or when dividing by zero. To catch them, we have to set up an interrupt descriptor table that provides handler functions.
Walk through an entire setup focused around VPC networking, private/public subnets, and NAT gateways.
A quick reference of the big O costs and core properties of every data structure: array, dynamic array, linked list, queue, stack, hash table, tree, graph.
Quick guide to do pen testing Postgres with Metasploit
A fascinating study of the problems people get into when using ORMs to handle persistence concerns in their web application. Visiting links randomly for 2 hour, parse the log and break down database processing time.
JIT is a hot topic nowsday. It’s how JavaScript get fast. The author create their own JIT language call Vaiven: GC, an interpreter, a first pass assembler, and hot code gets optimized via an SSA optimization pipeline.
This paper is an attempt to explain all the matrix calculus you need in order to understand the training of deep neural networks. We assume no math knowledge beyond what you learned in calculus 1, and provide links to help you refresh the necessary math where needed
BetterDev Link
Every Monday