Ce formulaire contient un champs dans lequel le visiteur va indiquer son nom.
action
| add_filter('document_title_parts', 'filter_title_part'); | |
| function filter_title_part($title) { | |
| $title['title'] = 'Codi ' . $title['title']; | |
| return $title; | |
| } |
| #!/bin/bash | |
| tail -n 200 -f /var/log/apache2/www.labelleiloise.fr/access.log \ | |
| | grep -vE ".png|.jpg|.gif|.js|.ico|.css|.svg|POST /bms-admin/ajax|.woff2|/php-fpm-status" \ | |
| | egrep --color '^|POST|GET|[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}|HTTP/1.1" [^2][0-9]{1,2}' | |
| # first egreo regex is for IP Address, | |
| # second is for HTTP reponse codes other than 2xx |
| # Consider compressed/minified JS/CSS files as binary | |
| www/themes/cbi/assets/css/theme.css -diff | |
| www/themes/cbi/assets/js/theme.js -diff |
| $ git log origin/preprod --no-color | grep '^commit' | sed 's#^commit ##' | while read r; do if [ "$(git branch --contains "$r" | wc -l)" == "1" ]; then echo $r; fi; done |
Built with Docpress https://github.com/docpress/docpress
Sublime 3200 integrates Git in the gutter, but in a way that ia a little too visible in my taste.
https://www.sublimetext.com/docs/3/color_schemes.html#global_settings-gutter
To make it less visible I modified the different .tmTheme files I use and added:
<key>line_diff_width</key>
<string>1</string>
line_diff_added| #!/bin/bash | |
| cd /volumes/users/gaetan.priour/Documents/CheckPHPRFC | |
| DATE=`date +"%Y%m%d %H%M"` | |
| # Remove all but the last two | |
| /bin/ls -1tr rfc* | /usr/bin/head -n -2 | /usr/bin/xargs -d '\n' rm -f -- | |
| # Get the page |