- have fun with them
- projections
- filters
- resource-keys
- scripting-gcloud
- gcloud alpha interactive
- https://medium.com/@Joachim8675309/getting-started-with-gcloud-sdk-part-1-114924737
- https://medium.com/@Joachim8675309/getting-started-with-gcloud-sdk-part-2-4d049a656f1a
- https://gist.github.com/bborysenko/97749fe0514b819a5a87611e6aea3db8
I hereby claim:
- I am xditx32 on github.
- I am xditx32 (https://keybase.io/xditx32) on keybase.
- I have a public key whose fingerprint is B427 1880 B6C2 E4BD 13D8 F3C6 2BB4 B633 6718 804F
To claim this, I am signing this object:
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
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
| /* Remove menus from the WordPress dashboard*/ | |
| function wpdocs_remove_menus() { | |
| remove_menu_page('index.php'); //Dashboard | |
| remove_menu_page('edit.php'); //Posts | |
| remove_menu_page('upload.php'); //Media | |
| remove_menu_page('edit.php?post_type=page'); //Pages | |
| remove_menu_page('edit-comments.php'); //Comments | |
| remove_menu_page('themes.php'); //Appearance | |
| remove_menu_page('plugins.php'); //Plugins | |
| remove_menu_page('users.php'); //Users |
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
| php_value upload_max_filesize 2048M | |
| php_value post_max_size 2048M | |
| php_value memory_limit 4096M | |
| php_value max_execution_time 0 | |
| php_value max_input_time 0 |