Not all those who wander are lost.It’s turtles all the way down.Locating the required gigapixels to render…Spinning up the hamster…Shoveling coal into the server…Programming the flux capacitorthe bits are breedingwe’re building the buildings as fast as we can
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
| // Register Script | |
| function scripts() { | |
| wp_register_script( 'scripts', 'xxx.com', false, '1.0', false ); | |
| wp_enqueue_script( 'scripts' ); | |
| } | |
| add_action( 'wp_enqueue_scripts', 'scripts' ); |
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
| /* | |
| !.gitignore | |
| # WordPress | |
| !wp-content | |
| wp-content/* | |
| !wp-content/themes | |
| wp-content/themes/* | |
| !/wp-content/themes/YOUR-THEME-HERE/ |
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
| function createCSV(data, fileName) { | |
| const headers = [ | |
| 'id', | |
| 'author_name', | |
| 'post', | |
| 'is_post', | |
| 'comment', | |
| 'is_comment', | |
| 'first_name', | |
| 'last_name', |
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
| var counter = 0; | |
| var wait = 2800; | |
| var interests = $$('input:checked'); | |
| interests.forEach( (w) => { | |
| var current = counter; | |
| setTimeout(() => { | |
| console.log(current + '/' + interests.length); | |
| w.click(); | |
| }, wait * counter); |