Getting started:
- http://www.sqlteaching.com/
- https://www.codecademy.com/courses/learn-sql
- http://www.mysqltutorial.org/
Related tutorials:
{"lastUpload":"2018-07-24T12:56:07.324Z","extensionVersion":"v3.0.0"} |
## Block by user agent | |
if ($http_user_agent ~ (Purebot|Lipperhey|MaMa CaSpEr|libwww-perl|Mail.Ru|gold crawler)) { | |
return 403; | |
} | |
## Block by referrer keywords | |
if ($http_referer ~* (viagra|cialis|levitra) ) { | |
return 403; | |
} |
Getting started:
Related tutorials:
#!/bin/bash | |
###################################################################### | |
# Author: Thiery Louison | |
# Email: [email protected] | |
# Date: yyyy-mm-dd | |
# Usage: script.sh [-a|--alpha] [-b=val|--beta=val] | |
# Description: | |
###################################################################### | |
# Defaults # |
# Install dependencies | |
# | |
# * checkinstall: package the .deb | |
# * libpcre3, libpcre3-dev: required for HTTP rewrite module | |
# * zlib1g zlib1g-dbg zlib1g-dev: required for HTTP gzip module | |
apt-get install checkinstall libpcre3 libpcre3-dev zlib1g zlib1g-dbg zlib1g-dev && \ | |
mkdir -p ~/sources/ && \ | |
# Compile against OpenSSL to enable NPN |
#!/usr/bin/python | |
import sys, os, subprocess | |
## | |
##RSYNC-BACKUP V1 | |
#the script can be executed and by defualt the variables specified in the script will used, otherwise arguments may be passed to the script at runtime. This script can be used to sync remote files to a local directory or local files to a remote direcory specified at runtime. | |
## | |
## | |
#argument examples: | |
#":~$ rsync-backup.py -raz user@host:/some/dir/ /some/dir" |
Sharing ideas about how to resolve issues is one of the best things we can do in the IT and open source world, so I went looking for help by submitting issues in Ansible and asking questions in roles others created.
Reading the documentation (including the following topics) is the best way to get started learning Ansible.
This article explains how to install Vagrant and Virtualbox on Fedora 23/24 so you can build your development environments. Vagrant and Virtualbox provide an easy way to create, configure and distribute development environments.
This play is also working on the brand new Fedora 26 with just a glitch about few missing headers files, see my note at the end.
VirtualBox Installation Add VirtualBox repository and update your system: