7 private links
Machine learning lib
Learn c++ template
Compile the program wich need to be link with: -Wl,-rpath="."
Beware it will search for all the lib in the current folder -> easy to preload libc
how to sur bash
Recherche la signification d'un instruction assembleur
Like dilandau
Type it yourself !
Learn web language
Sécuriser un serveur web d'attaque ddos etc
Ctrl + Shift + M
Valve porting steam under linux
0, 1, 2, ... The positional parameters starting from parameter 0. Parameter 0 refers to the name of the program that started bash, or the name of the shell script if the function is running within a shell script. See the bash man pages for information on other possibilities, such as when bash is started with the -c parameter. A string enclosed in single or double quotes will be passed as a single parameter, and the quotes will be stripped. In the case of double quotes, any shell variables such as $HOME will be expanded before the function is called. You will need to use single or double quotes to pass parameters that contain embedded blanks or other characters that might have special meaning to the shell.
- The positional parameters starting from parameter 1. If the expansion is done within double quotes, then the expansion is a single word with the first character of the IFS special variable separating the parameters, or no intervening space if IFS is null. The default IFS value is a blank, tab, and newline. If IFS is unset, then the separator used is a blank, just as for the default IFS.
@ The positional parameters starting from parameter 1. If the expansion is done within double quotes, then each parameter becomes a single word, so that "$@" is equivalent to "$1" "$2" ... If your parameters are likely to contain embedded blanks, you will want to use this form.The number of parameters, not including parameter 0.