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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. --> | |
| <!-- It contains information about your site's posts, pages, comments, categories, and other content. --> | |
| <!-- You may use this file to transfer that content from one site to another. --> | |
| <!-- This file is not intended to serve as a complete backup of your site. --> | |
| <!-- To import this information into a WordPress site follow these steps: --> | |
| <!-- 1. Log in to that site as an administrator. --> | |
| <!-- 2. Go to Tools: Import in the WordPress admin panel. --> | |
| <!-- 3. Install the "WordPress" importer from the list. --> |
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
| #!/bin/bash | |
| YELLOW=$'\e[1;33m' | |
| GREEN=$'\e[1;32m' | |
| NOCOLOR=$'\e[0m' | |
| read -r -p "Please enter the type of content you wish to export - pullRequest|issue|discussion (default = pullRequest): " type | |
| type=${type:-pullRequest} | |
| read -r -p "Please enter the repository owner: " owner | |
| owner=${owner:-${owner}} |
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
| { | |
| "files.exclude": { | |
| "**/wp-admin": true, | |
| "**/wp-includes": true, | |
| "**/upgrade": true, | |
| "**/uploads": true, | |
| "**/wp-content/index.php": true, | |
| "**/wp-content/plugins/akismet": true, | |
| "**/wp-content/plugins/debug-bar": true, | |
| "**/wp-content/plugins/debug-bar-console": true, |
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
| { | |
| "name": "project-name", | |
| "version": "1.0.0", | |
| "description": "", | |
| "author": "", | |
| "license": "GPL-2.0-or-later", | |
| "main": "index.js", | |
| "scripts": { | |
| "env": "WP_ENV_HOME=\"wp-env\" wp-env", | |
| "env:logs": "npm run env logs", |
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
| # Name in folder (github) | |
| # Conditionally indicate if in github repo. Time in 24-hour format is on right. | |
| function collapse_pwd { | |
| echo $(pwd | sed -e "s,^$HOME,~,") | |
| } | |
| function prompt_char { | |
| echo -n "%{$fg_bold[red]%}➜%{$reset_color%} " | |
| } | |
| PROMPT=' |
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
| { | |
| "useTabs": true, | |
| "tabWidth": 4, | |
| "singleQuote": true, | |
| "printWidth": 100 | |
| } |
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
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| updateChannel: 'canary', | |
| // default font size in pixels for all tabs | |
| fontSize: 14, | |
| windowSize: [1080, 720], |
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
| *.json | |
| README.md |
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
| code --install-extension aaron-bond.better-comments | |
| code --install-extension AndrsDC.base16-themes | |
| code --install-extension andys8.jest-snippets | |
| code --install-extension anteprimorac.html-end-tag-labels | |
| code --install-extension bmewburn.vscode-intelephense-client | |
| code --install-extension bradgashler.htmltagwrap | |
| code --install-extension bradlc.vscode-tailwindcss | |
| code --install-extension burkeholland.simple-react-snippets | |
| code --install-extension christian-kohler.npm-intellisense | |
| code --install-extension christian-kohler.path-intellisense |
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
| { | |
| "root": true, | |
| "extends": [ "react-app", "plugin:jsx-a11y/recommended" ], | |
| "plugins": [ "jsx-a11y" ], | |
| "parser": "babel-eslint", | |
| "parserOptions": { | |
| "ecmaVersion": 8, | |
| "ecmaFeatures": { | |
| "experimentalObjectRestSpread": true, | |
| "impliedStrict": true, |
NewerOlder