xfcedefault xfce applications menu path is /etc/xdg/menus...
MinGW Cpp Compiling
xp@userr ~
$ g++ -s -fno-rtti -static-libgcc -static-libstdc++ hello.cpp -o hello.exe
xp@usrr ~
$
...
Bash Tips
aruz@Notebook:~$ echo "$((2+2))"
4
aruz@Notebook:~$
...
Linux Directories/boot -> kernel and boot loader files are kept in here.
/usr -> contains user application files.
/tmp -> contains temporary files...
Python Sorting
>>> list=["aaa","pppp","yy","u"]
>>> sorted(list)
['aaa', 'pppp', 'u', 'yy'...