This file contains hidden or 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
abruti | |
nique | |
niqué | |
encule | |
enculé | |
foutre | |
batard | |
bâtard | |
biatch | |
bite |
This file contains hidden or 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
<?php | |
/* | |
Plugin Name: utf8mb4-convert | |
Version: 1.0 | |
*/ | |
function update_db_to_utf8mb4() | |
{ | |
set_time_limit(MINUTE_IN_SECONDS * 30); |
This file contains hidden or 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
deb http://deb.debian.org/debian/ stable main contrib non-free | |
deb-src http://deb.debian.org/debian/ stable main contrib non-free | |
deb http://deb.debian.org/debian/ stable-updates main contrib non-free | |
deb-src http://deb.debian.org/debian/ stable-updates main contrib non-free | |
deb http://deb.debian.org/debian-security stable/updates main | |
deb-src http://deb.debian.org/debian-security stable/updates main | |
deb http://ftp.debian.org/debian stretch-backports main |
This file contains hidden or 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
deb http://ftp.fr.debian.org/debian/ unstable main contrib non-free | |
deb-src http://ftp.fr.debian.org/debian/ unstable main contrib non-free |
This file contains hidden or 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
#!/bin/sh | |
ip1=8.8.8.8 | |
ip2=208.67.222.222 | |
tries=3 | |
if [[ -z $1 ]]; then | |
logger -t watchdog "Missing interface name" | |
exit 1 | |
fi |