#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>
#include "utils.h"
Title: Systems programming as a swiss army knife
Duration: 30 minutes
Description:
You might think of the Linux kernel as something that only kernel developers need to know about. Not so! It turns out that understanding some basics about kernels and systems programming makes you a better developer, and you can use this knowledge when debugging your normal everyday Python programs.
We’ll talk about how to use strace, ltrace, /proc, and friends to debug your servers and your misbehaving programs. A few specific tricks we’ll cover:
This isn't an academic machine learning conference. This isn't a business conference. Nobody will tell you "Big data is at the foundation of all the megatrends happening today". This is a conference for people who work with data all day and have stories to tell about it.
This is a conference where we talk about what you do when you have a dataset and a business problem you're trying to solve and
- you're not sure how to map your actual business problem to a metric
- and you have lots of data but 80% of it is unlabelled and how should you handle that
- and you start with a simple model and it does pretty well but could it do even better? and you're not sure.
strace lets you look into the soul of a program and see how it works. Without even seeing the source code! ANY program. I've become kind of obsessed with it and I'd like to share my obsession with you. We'll learn about system calls and go through a couple of practical examples of how to use strace to solve your everyday programming problems.
1: Hello!!!!
2-4 Okay what even is strace?!
stats:
- Bayesian statistics and Markov chains
- ANOVA
- how do you decide what sample size is big enough?
- likelihood ratio tests
- go through all of the different distributions. I only really know the normal one :) (this is a really cool question actually! Understanding what distributions come up in real life and how to handle them is super interesting .)
ML:
Did you see my talk about strace? Do you want to know more? Here's your chance!
If you didn't, and you want to watch it, go watch it! Spying on your programs with strace
- I've written tons of blog posts about strace. I'm a little bit obsessed. You can read them at http://jvns.ca/blog/categories/strace/. If you want an introduction, start with Debug your programs like they're closed source.
- Strace - The Syadmin's Microscope and Strace: The Lost Chapter are both excellent articles by Greg Price
- Brendan Gregg has an excellent article about how strace will slow your processes down, and when it's not appropriate to use it
Yesterday we talked about perf
. Let's start using perf
!
I learned how to make flame graphs with perf
today and it is THE BEST. I found this because Graydon Hoare pointed me to Brendan Gregg's excellent page on how to use perf.
Wait up! What's perf
? I've talked about strace
a lot before (in Debug your programs like they're closed source). strace
lets you see which system calls a program is calling. But what if you wanted to know
- how many CPU instructions it ran?
- How many L1 cache misses there were?