http://www.oracle.com/technetwork/articles/servers-storage-dev/oom-killer-1911807.html
See example in the sources of OpenSSH.
http://www.oracle.com/technetwork/articles/servers-storage-dev/oom-killer-1911807.html
See example in the sources of OpenSSH.
| sudo apt-get install imagemagick | |
| # To rename files with spaces: | |
| find -name "* *" -type f | rename 's/ /_/g' | |
| ls page*.png | sort -n | tr '\n' ' ' | sed 's/$/\ mydoc.pdf/' | xargs convert |
| let (=>) left right = print_char (if left = right then '.' else 'F') | |
| open Printf | |
| let id x = x | |
| let const x = fun _ -> x | |
| let sum = List.fold_left (+) 0 | |
| let (>>) f g x = g (f x) | |
| let () = |
| /* | |
| * levmarq.c | |
| * | |
| * This file contains an implementation of the Levenberg-Marquardt algorithm | |
| * for solving least-squares problems, together with some supporting routines | |
| * for Cholesky decomposition and inversion. No attempt has been made at | |
| * optimization. In particular, memory use in the matrix routines could be | |
| * cut in half with a little effort (and some loss of clarity). | |
| * | |
| * It is assumed that the compiler supports variable-length arrays as |