Skip to content

Instantly share code, notes, and snippets.

View adrianthedev's full-sized avatar
🚀
Building Avo https://avohq.io

Adrian Marin adrianthedev

🚀
Building Avo https://avohq.io
View GitHub Profile
<?php
/**
** A base module for [text], [text*], [email], and [email*]
**/
/* Shortcode handler */
wpcf7_add_shortcode( 'text', 'wpcf7_text_shortcode_handler', true );
wpcf7_add_shortcode( 'text*', 'wpcf7_text_shortcode_handler', true );
wpcf7_add_shortcode( 'email', 'wpcf7_text_shortcode_handler', true );
@adrianthedev
adrianthedev / reserved_words.py
Created May 11, 2023 14:28 — forked from BigelowInc/reserved_words.py
Reserved words to exclude when creating usernames (or any other resource).
# A list of possible reserved words
reserved_words = [
# Companies
'amazon', 'apache', 'apple', 'atlassian', 'facebook', 'github', 'google',
'htc', 'microsoft', 'mozilla', 'nokia', 'rim', 'samsung', 'sony', 'toshiba',
'twitter', 'wikipedia',
# Operating systems
'android', 'centos', 'debian', 'dos', 'fedora', 'ios', 'linux', 'mac',