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
https://heaven.paris | |
https://hopscotchgroupe.com/ | |
https://fr.wikipedia.org/wiki/Hopscotch_Groupe | |
https://hopscotchgroupe.com/wp-content/uploads/2023/04/hopscotch-due-exercice2022-vdef.pdf | |
https://hopscotchgroupe.com/wp-content/uploads/2023/07/cp-vdef-hopscotch-x-itg-communique-de-presse-28072023_-002.pdf | |
https://www.youtube.com/watch?v=ANwE0XJUUrg |
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
[wordpress-xmlrpc] | |
enabled = true | |
filter = xmlrpc | |
action = iptables[name=WordPressXMLRPC, port=http, protocol=tcp] | |
logpath = /var/log/apache2/*access.log | |
bantime = 86400 | |
maxretry = 1 | |
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
git clone https://github.com/letsencrypt/letsencrypt /opt/letsencrypt | |
cd /opt/letsencrypt | |
./letsencrypt-auto --apache -d domaine.com -d www.domaine.com |
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
http://geojsonlint.com/ |
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
http://tympanus.net/Development/DynamicGrid/index2.html |
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
http://dataparis.io/img/map-paris.svg | |
http://dataparis.io/img/metro-paris.svg |
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
$(function () { | |
var lastVal; | |
$('#selecttest').change(function () { | |
var v = $(this).val(); | |
if (v != lastVal) { | |
fireYourRealOnChangeEventHere(); | |
lastVal = v; | |
} | |
}); |
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
add_action( 'init', 'wprew' ); | |
function wprew() | |
{ | |
// Remember to flush the rules once manually after you added this code! | |
add_rewrite_rule( | |
// The regex to match the incoming URL | |
'designers/([^/]+)/?', | |
// The resulting internal URL: `index.php` because we still use WordPress | |
// `pagename` because we use this WordPress page | |
// `designer_slug` because we assign the first captured regex part to this variable |
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
ls -lR | grep ^- | wc -l |