- Open Slack Preferences
- Select
Sidebar Themes
- Click the link
customize your theme and share it with others
- In the text field below the color pickers, paste this code
#222222,#2F2F2F,#F92772,#f8f8f2,#2f2f2f,#c1c1c1,#a6e22e,#66D9EF
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); |
function createCSV(data, fileName) { | |
const headers = [ | |
'id', | |
'author_name', | |
'post', | |
'is_post', | |
'comment', | |
'is_comment', | |
'first_name', | |
'last_name', |
/* | |
!.gitignore | |
# WordPress | |
!wp-content | |
wp-content/* | |
!wp-content/themes | |
wp-content/themes/* | |
!/wp-content/themes/YOUR-THEME-HERE/ |
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 capacitor
the bits are breeding
we’re building the buildings as fast as we can
// Register Script | |
function scripts() { | |
wp_register_script( 'scripts', 'xxx.com', false, '1.0', false ); | |
wp_enqueue_script( 'scripts' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'scripts' ); |