This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#dark_filter { | |
border: 1px solid #aaa; /*To show the boundaries of the element*/ | |
} | |
#dark_filter:before { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
content: ''; | |
background: rgba(0,0,0, 0.5); /*partially transparent image*/ | |
pointer-events: none; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
QMAKE_CXX.INCDIRS = \ | |
/home/mathben/git/mxe/usr/lib/gcc/i686-w64-mingw32.static/5.4.0/include/c++ \ | |
/home/mathben/git/mxe/usr/lib/gcc/i686-w64-mingw32.static/5.4.0/include/c++/i686-w64-mingw32.static \ | |
/home/mathben/git/mxe/usr/lib/gcc/i686-w64-mingw32.static/5.4.0/include/c++/backward \ | |
/home/mathben/git/mxe/usr/lib/gcc/i686-w64-mingw32.static/5.4.0/include \ | |
/home/mathben/git/mxe/usr/lib/gcc/i686-w64-mingw32.static/5.4.0/include-fixed \ | |
/home/mathben/git/mxe/usr/i686-w64-mingw32.static/include | |
QMAKE_CXX.LIBDIRS = \ | |
/home/mathben/git/mxe/usr/lib/gcc/i686-w64-mingw32.static/5.4.0 \ | |
/home/mathben/git/mxe/usr/i686-w64-mingw32.static/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# French Guide : https://github.com/FredBezies/arch-tuto-installation | |
# Install ARCH Linux with UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/ | |
# Copy to a usb-drive | |
dd if=archlinux.img of=/dev/sdX bs=16M status=progress && sync # on linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Guide | |
# https://www.digitalocean.com/community/tutorials/how-to-install-the-apache-web-server-on-debian-9 | |
# apt install apache2 | |
# Guide https://websiteforstudents.com/install-mediawiki-ubuntu-17-04-17-10-nginx-mariadb-php/ | |
# Github mediawiki : https://github.com/wikimedia/mediawiki | |
git clone git@github.com:wikimedia/mediawiki.git | |
# Installation | |
https://www.mediawiki.org/wiki/Manual:Installation_guide |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt install htop iotop vim sudo git python3 python3-pip postfix mainutils | |
adduser user | |
usermod -aG sudo user | |
su user | |
# Guide : https://www.ssh.com/ssh/keygen | |
ssh-keygen -t ed25519 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# error about postgresql and utf8 | |
# http://siripong-computer-tips.blogspot.com/2011/11/postgres-createdb-invalid-locale-name.html | |
# Installation guide : http://taigaio.github.io/taiga-doc/dist/setup-production.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[time] | |
disabled = false | |
[cmd_duration] | |
min_time = 500 | |
[python] | |
disabled = true |