This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
| # From your Google Spreadsheet, select the menu item Tools > Script editor. | |
| # Copy and paste this code. | |
| # Replace uuid with the build_hooks uuid from your Netlify project. | |
| function onOpen() { | |
| SpreadsheetApp.getUi() | |
| .createMenu('Scripts') | |
| .addItem('Build', 'build') | |
| .addToUi(); | |
| } |
| exports.createPages = ({ graphql, actions }) => { | |
| return graphql(` | |
| { | |
| site { | |
| siteMetadata { | |
| githubOrgs | |
| } | |
| } | |
| } | |
| `).then(result => { |
| <template> | |
| <div :test="$helpers.foo1()" :test2="bar()"></div> | |
| </template> | |
| <script> | |
| import { bar } from '@/helpers/utils'; | |
| </script> |
| return array( | |
| 'dependencies' => array( | |
| 'plugins' => array( | |
| array( | |
| 'name' => __( 'Atomic Blocks', 'genesis-sample' ), | |
| 'slug' => 'atomic-blocks/atomicblocks.php', | |
| ), | |
| ), | |
| ), | |
| 'content' => array( |
| <?php | |
| class MyTheme | |
| { | |
| private function actionAfterSetup($function) | |
| { | |
| add_action('after_setup_theme', function() use ($function) { | |
| $function(); | |
| }); | |
| } |
We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder
python -m venv ./venv
| // ==UserScript== | |
| // @name Udemy "List All Courses" And Course Planning Checkmarks | |
| // @namespace salembeats | |
| // @version 1.31 | |
| // @description . | |
| // @author Cuyler Stuwe (salembeats) | |
| // @grant GM_setValue | |
| // @grant GM_getValue | |
| // @require file:///C:\private-keys-for-public-tampermonkey-scripts\udemy-list-all-courses.js | |
| // @include https://www.udemy.com/home/my-courses/learning/* |
| [alias] | |
| # Opens the Atom editor. | |
| atom = ! atom | |
| # =================================== | |
| # Viewing history | |
| # =================================== | |
| # Shows a graphical log. | |
| logone = log --oneline --decorate --all --graph |