I hereby claim:
- I am jayhill90 on github.
- I am hrvst (https://keybase.io/hrvst) on keybase.
- I have a public key ASDju9omCbMYfeFwbhYMBuMjLgGSZQ-4KWe41pdxnNQUewo
To claim this, I am signing this object:
| { | |
| // Set your VSCode Workspace root to the root folder of your Local site. | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Listen for XDebug", | |
| "type": "php", |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| find . -name "*.flac" -exec ffmpeg -i {} -c:a libmp3lame -b:a 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \; |
| const path = require('path'); | |
| const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
| module.exports = { | |
| entry: ['./src/js/index.js', './src/scss/index.scss'], | |
| output: { | |
| filename: './build/js/index.js', | |
| path: path.resolve(__dirname), | |
| }, | |
| module: { |
| <?php | |
| function get_region($country_name) { | |
| $array = array( | |
| 'AF' => array( | |
| 'country' => 'Afghanistan', | |
| 'continent' => 'AS', | |
| ), | |
| 'AX' => array( | |
| 'country' => 'Åland Islands', | |
| 'continent' => 'EU', |
| .container { | |
| margin-left: auto; | |
| margin-right: auto; | |
| position: relative; | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| } | |
| .item { |
| <?php | |
| namespace Jay\Blocks\LatestPosts; | |
| /** | |
| * Renders the `jay/latest-posts` block on server. | |
| * | |
| * @param array $attributes The block attributes. | |
| * | |
| * @return string Returns the post content with latest posts added. | |
| */ |
| <?php | |
| /** | |
| * Modifies the copyright output in a genesis child theme. | |
| * Drop this function and filter into your child theme's functions.php file. | |
| * Don't include the opening php tag. | |
| */ | |
| add_filter( 'genesis_footer_output', 'explore_footer_output', 10, 3); | |
| function explore_footer_output( $output, $backtotop_text, $creds_text ) { |