Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
If you are use Unix/Linux create a bash script with a loop. In this case I want to backup the extensions list and install again:
First create a list of the extensions:
$ code --list-extensions > extensions.txtCreate a bash script for example with the name vscode-extension-install.sh and input the following code:
| # Place local.yml at the same directory | |
| ansible-pull -e 'ansible_python_interpreter=/usr/bin/python3' \ | |
| -U https://<Git Access Token here>:x-oauth-basic@github.com/<Your organization in Github name here>/<Your Github private repository name here> \ | |
| -d /tmp/<Your Github private repository name here> ./local.yml |
| Macbook initial files |
| <button | |
| aria-expanded="false" | |
| aria-haspopup="true" | |
| class="btn btn-primary dropdown-toggle ml-1 taglib-icon" | |
| data-toggle="liferay-dropdown" | |
| type="button" | |
| > | |
| <aui:icon image="caret-down" markupView="lexicon" /> | |
| Default | |
| </button> |
This is a snippet that uses firebase's firebase-admin to initialize multiple firebase projects in one admin application.
import 'firebase';| { | |
| "availableLanguageIds": [ | |
| "en_US" | |
| ], | |
| "defaultLanguageId": "en_US", | |
| "fields": [ | |
| { | |
| "label": { | |
| "en_US": "Title" | |
| }, |
| <#-- | |
| Web content templates are used to lay out the fields defined in a web | |
| content structure. | |
| Please use the left panel to quickly add commonly used variables. | |
| Autocomplete is also available and can be invoked by typing "${". | |
| --> | |
| ${DocumentsAndMedia2wx2.getData()} |
| input = [] | |
| File.foreach("input.txt"){|line| | |
| input << line.chomp | |
| } | |
| output = [] | |
| File.foreach("output.txt"){|line| | |
| output << line.chomp | |
| } | |
| // Remove duplicated entries in input from output |
| [#assign black_list = ["class", "request", "getreader", "getinputstream", "writer"] /] | |
| [#macro dump key data] | |
| [#if data?is_enumerable] | |
| enumerable:<b>${key}</b> | |
| [@printList data,[] /] | |
| [#elseif data?is_hash_ex] | |
| hash_ex:<b>${key}</b> | |
| [@printHashEx data,[] /] | |
| [#else] |