View dark filter css size under element
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; |
View mxe_qt5_error_missing_module
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 |
View gist:7e5f31a9f17b798d66aaaed11b2cf0a0
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 |
View installation_debian_server.txt
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 |
View Mediawiki installation server
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 |
View archlinux_installation_ux370u_full_disk_encrypted.sh
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 |
View gist:3d13c5cc74f3904618c955cab9bb99ee
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 |