The Art of Computer Programming (Knuth)
Programming Pearls (Bentley)
Data Structures and Algorithms (Aho, Hopcroft, Ullman)
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
''' | |
ex.py | |
expand pattern and return sequence. | |
Kosei Moriyama <[email protected]> |
""" | |
The Web Hammer | |
Usage: | |
webhammer [--requests=<num> --interval=<ms>] <url> | |
Options: | |
-h --help Show this screen. | |
--version Show version. | |
-r <num>, --requests <num> Number of requests to make [default: 15] |
@ This is Linux/arm EABI system call sample program. | |
@ | |
@ Build with following command: | |
@ as -o arm-mmap.o arm-mmap.s | |
@ ld -o arm-mmap arm-mmap.o | |
@ | |
@ You can see the program issues system calls by following command: | |
@ strace ./arm-mmap | |
@ |
You might want to read this to get an introduction to armel vs armhf.
If the below is too much, you can try Ubuntu-ARMv7-Qemu but note it contains non-free blobs.
First, cross-compile user programs with GCC-ARM toolchain. Then install qemu-arm-static
so that you can run ARM executables directly on linux