Consider supporting my work by purchasing the course this tutorial is a part of i.e. VSCode Power User →
- Make sure your
Local by FlyWheelWordPress install is a custom install
Consider supporting my work by purchasing the course this tutorial is a part of i.e. VSCode Power User →
Local by FlyWheel WordPress install is a custom install| # Editors | |
| .vscode/ | |
| .idea/ | |
| # Vagrant | |
| .vagrant/ | |
| # Mac/OSX | |
| .DS_Store |
| ### Flutter Generated | |
| # Miscellaneous | |
| *.class | |
| *.lock | |
| *.log | |
| *.pyc | |
| *.swp | |
| .DS_Store | |
| .atom/ |
| <?php | |
| // add this code to a custom plugin | |
| add_filter( 'woocommerce_rest_prepare_product_object', 'wc_app_add_custom_data_to_product', 10, 3 ); | |
| // filter the product response here | |
| function wc_app_add_custom_data_to_product( $response, $post, $request ) { | |
| // in this case we want to display the short description, so we copy it over to the description, which shows up in the app | |
| $response->data['description'] = $response->data['short_description']; | |
| return $response; |
| #EXTM3U | |
| #EXTINF:0,RadioMv.com | Russian Christian Music | |
| http://ru-music.radiomv.co:1918 | |
| #EXTINF:0,RadioMv.com | Russian Christian Radio | |
| http://ru-high.radiomv.co:2204 | |
| #EXTINF:0,RadioMv.com | English Christian Radio | |
| http://en-high.radiomv.co:2102 | |
| #EXTINF:0,Детское Христианское Радио | |
| http://live.detskoeradio.org/radio/8010/radio.mp3 | |
| #EXTINF:0,Радио Голос Мира | Чтение Библии |
This is my gist. There are many like it, but this one is mine.
For some reason, this gist seem to show up as a top result when googling for "github gists". I don't know why, but it's amusing. Anyways. Keep commenting if you want to. I guess that will give me an idea of for how long this bs continues. Cheers people. Free Palestine! 🇵🇸 Free Iran! 🇮🇷
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install software-properties-common \
nginx wget zip unzip git curl file certbot python3-pip \
python3-dev python3-venv redis-server mariadb-server \