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
| .fa.fa-twitter{ | |
| font-family:sans-serif; | |
| } | |
| .fa.fa-twitter::before{ | |
| content:"𝕏"; | |
| font-size:1.2em; | |
| } |
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
| //import 'bootstrap@4.6.0' | |
| //import $ from 'jquery' | |
| var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance | |
| stopPercentage = 0.001, // In %. I wouldn't recommend going past 0.08 | |
| maxWait = 500, // In milliseconds | |
| stopped = false, | |
| stopBefore = 1; // In minutes for timer before stopping redirect on webpage |
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
| <?php | |
| error_reporting( error_reporting() & ~E_NOTICE ); // evil | |
| // config | |
| $enable_jsonp = false; | |
| $enable_native = false; | |
| $valid_url_regex = '/.*/'; | |
| // ############################################################################ |
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
| <?php | |
| // PHP memory limit for this site | |
| define( 'WP_MEMORY_LIMIT', '128M' ); | |
| define( 'WP_MAX_MEMORY_LIMIT', '256M' ); // Increase admin-side memory limit. | |
| // Database | |
| define( 'WP_ALLOW_REPAIR', true ); // Allow WordPress to automatically repair your database. | |
| define( 'DO_NOT_UPGRADE_GLOBAL_TABLES', true ); // Don't make database upgrades on global tables (like users) | |
| // Explicitely setting url |
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
| // We use crypto.randomBytes(20) as an example to generate the seed with a higher entropy, higher number of unique values | |
| var hash = crypto.createHash('sha1').update(crypto.randomBytes(20)).digest('hex') |