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
| # Usage: source /path-to/minikube-docker-env | |
| eval $(minikube docker-env --shell zsh) | |
| export DOCKER_CERT_PATH=$(wslpath "$DOCKER_CERT_PATH") |
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
| # Use webbrowser.sh as x-www-browser command | |
| # | |
| # Please follow the instructions below to install: | |
| # 1. Modify the path to webbrowser.sh | |
| # 2. Execute this command | |
| sudo update-alternatives --install /usr/bin/x-www-browser x-www-browser /path-to/webbrowser.sh 1 # Edit this path to point your webbrowser.sh |
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
| <div *ngFor="let task of tasks"> | |
| <!-- Use # to set the name of the input element to focus --> | |
| <input #taskInput *ngIf="task.isEditing" type="text" [(ngModel)]="task.name" (blur)="onEdited(task)" (keyup.enter)="taskInput.blur()"> | |
| <div *ngIf="!task.isEditing" (dblclick)="onEdit(task)">{{task.name}}</div> | |
| </div> |
NewerOlder