Updated 2018-03-23 Version 1802 (Build 16.0.9029.2167)
==========================================
Updated 2018-03-23 Version 1802 (Build 16.0.9029.2167)
==========================================
This is made because man page for gpg always 😱 scared me like hell and I still do not understand why so basic thing as encrypting short message has to take so vast amount of mental and psychic energy to understand how it works.
Cloudflare (https://one.one.one.one/) | |
1.1.1.1 and 1.0.0.1 | |
1.1.1.2 and 1.0.0.2 | |
1.1.1.3 and 1.0.0.3 | |
2606:4700:4700::1111 and 2606:4700:4700::1001 | |
Google (https://developers.google.com/speed/public-dns/docs/using) | |
8.8.8.8 and 8.8.4.4 | |
2001:4860:4860::8888 and 2001:4860:4860::8844 |
# Start Bad Bot Prevention | |
<IfModule mod_setenvif.c> | |
# SetEnvIfNoCase User-Agent ^$ bad_bot | |
SetEnvIfNoCase User-Agent "^12soso.*" bad_bot | |
SetEnvIfNoCase User-Agent "^192.comAgent.*" bad_bot | |
SetEnvIfNoCase User-Agent "^1Noonbot.*" bad_bot | |
SetEnvIfNoCase User-Agent "^1on1searchBot.*" bad_bot | |
SetEnvIfNoCase User-Agent "^3D_SEARCH.*" bad_bot | |
SetEnvIfNoCase User-Agent "^3DE_SEARCH2.*" bad_bot | |
SetEnvIfNoCase User-Agent "^3GSE.*" bad_bot |
add_filter( 'wpcf7_validate_text', 'no_urls_allowed', 10, 3 ); | |
add_filter( 'wpcf7_validate_text*', 'no_urls_allowed', 10, 3 ); | |
add_filter( 'wpcf7_validate_textarea', 'no_urls_allowed', 10, 3 ); | |
add_filter( 'wpcf7_validate_textarea*', 'no_urls_allowed', 10, 3 ); | |
function no_urls_allowed( $result, $tag ) { | |
$tag = new WPCF7_Shortcode( $tag ); | |
$type = $tag->type; | |
$name = $tag->name; |
Edgar Rodrigues Sandi | |
Edgar Sandi | |
tw/@EdgarSandi | |
fb/EdgarSandi | |
G+/EdgarSandi | |
Ln/EdgarSandi | |
Oracle PL/SQL - 24h | |
Aula 1 - 17/01 |
// add all the elements inside modal which you want to make focusable | |
const focusableElements = | |
'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])'; | |
const modal = document.querySelector('#exampleModal'); // select the modal by it's id | |
const firstFocusableElement = modal.querySelectorAll(focusableElements)[0]; // get first element to be focused inside modal | |
const focusableContent = modal.querySelectorAll(focusableElements); | |
const lastFocusableElement = focusableContent[focusableContent.length - 1]; // get last element to be focused inside modal | |