custom emoji needed
- emoji name: d20 = icon link
also see my rock-paper-scissors slackbot response game and the lizard spock expansion
here is where I keep all my added emojis
custom emoji needed
also see my rock-paper-scissors slackbot response game and the lizard spock expansion
here is where I keep all my added emojis
| # I'm only using a few fields here to demonstrate how this works | |
| # Site theme | |
| theme: slides | |
| # Assets | |
| # The assets path is based on the theme, | |
| # the other paths can build on the assets path | |
| assets: assets/<%= site.theme %> | |
| images: <%= site.assets %>/images |
| module.exports = function(grunt) { | |
| "use strict"; | |
| // ------------------------------------------------------------------------- | |
| // #### Load plugins as needed #### | |
| // Using a 'just in time' approach -- meaning: only load plugins when they | |
| // are needed -- this will automatically find, then load, any and all | |
| // plugins that are needed by the task currently being executed. It will | |
| // scan the devDependencies object, in package.json, and match any of the |
| <?php | |
| function themename_customize_register($wp_customize){ | |
| $wp_customize->add_section('themename_color_scheme', array( | |
| 'title' => __('Color Scheme', 'themename'), | |
| 'priority' => 120, | |
| )); | |
| // ============================= |
| import SimpleHTTPServer | |
| class CORSHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): | |
| def send_head(self): | |
| """Common code for GET and HEAD commands. | |
| This sends the response code and MIME headers. | |
| Return value is either a file object (which has to be copied | |
| to the outputfile by the caller unless the command was HEAD, | |
| and must be closed by the caller under all circumstances), or |
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |
| <?php | |
| /** | |
| * Convert a comma separated file into an associated array. | |
| * The first row should contain the array keys. | |
| * | |
| * Example: | |
| * | |
| * @param string $filename Path to the CSV file | |
| * @param string $delimiter The separator used in the file | |
| * @return array |