GitHub recently added support for including Mermaid diagrams in Markdown files. The good news is that it works for AsciiDoc files as well. Here is an example:
sequenceDiagram
participant Alice
participant Bob
GitHub recently added support for including Mermaid diagrams in Markdown files. The good news is that it works for AsciiDoc files as well. Here is an example:
sequenceDiagram
participant Alice
participant Bob
#!/usr/bin/env bash | |
# This script was introduced to make aws-sso-cli compatible with GitHub Codespaces. | |
# GitHub Codespaces defines a $BROWSER env var that handles opening urls. | |
# https://github.com/synfinatic/aws-sso-cli/issues/816 | |
# If $BROWSER is not set then use 'open' on macos and 'xdg-open' on linux. | |
if [[ -z ${BROWSER+x} ]]; then | |
if [[ "$(uname)" == "Darwin" ]]; then | |
BROWSER=open |
{ | |
"$ref": "#/definitions/VpcCni", | |
"$schema": "http://json-schema.org/draft-06/schema#", | |
"definitions": { | |
"Affinity": { | |
"type": [ | |
"object", | |
"null" | |
] | |
}, |
{ | |
"$ref": "#/definitions/Coredns", | |
"$schema": "http://json-schema.org/draft-06/schema#", | |
"definitions": { | |
"Coredns": { | |
"additionalProperties": false, | |
"properties": { | |
"affinity": { | |
"default": { | |
"affinity": { |
[ Update 2020-05-31: I won't be maintaining this page or responding to comments anymore (except for perhaps a few exceptional occasions). ]
Most of the terminal emulators auto-detect when a URL appears onscreen and allow to conveniently open them (e.g. via Ctrl+click or Cmd+click, or the right click menu).
It was, however, not possible until now for arbitrary text to point to URLs, just as on webpages.
If you want to use Bitwarden CLI for ssh
have a look at: How to use use Bitwarden CLI for SSH-Keys in macOS
Wirtten and tested on macOS Ventura
To allow Touch ID on your Mac to authenticate you for sudo access instead of a password you need to do the following.
I hereby claim:
To claim this, I am signing this object:
kubectl -n kube-system create sa tiller
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller
# Instructions for 4.14 and cuda 9.1 | |
# If upgrading from 4.13 and cuda 9.0 | |
$ sudo apt-get purge --auto-remove libcud* | |
$ sudo apt-get purge --auto-remove cuda* | |
$ sudo apt-get purge --auto-remove nvidia* | |
# also remove the container directory direcotory at /usr/local/cuda-9.0/ | |
# Important libs required with 4.14.x with Cuda 9.X | |
$ sudo apt install libelf1 libelf-dev |
update cmake
and install deps as this said.
run cmake
cmake -D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_INSTALL_PREFIX=~/.pyenv/versions/3.5.0/usr/local/ \
-D INSTALL_C_EXAMPLES=OFF \
-D BUILD_NEW_PYTHON_SUPPORT=ON \