To create an anchor to a heading in github flavored markdown.
Add - characters between each word in the heading and wrap the value in parens (#some-markdown-heading)
so your link should look like so:
[create an anchor](#anchors-in-markdown)
brew install sleepwatcher | |
# write restart_apps.sh to ~/.wakeup | |
chmod +x ~/.wakeup | |
brew services start sleepwatcher | |
# your mileage may vary getting sleepwatcher to run the script, but, the script should work if executed manually |
{ | |
"__inputs": [ | |
{ | |
"name": "DS_PROMETHEUS", | |
"label": "Prometheus", | |
"description": "", | |
"type": "datasource", | |
"pluginId": "prometheus", | |
"pluginName": "Prometheus" | |
}, |
FROM python:3.9-slim | |
# Set environment variables | |
ENV PYTHONDONTWRITEBYTECODE=1 \ | |
PYTHONUNBUFFERED=1 \ | |
PIP_NO_CACHE_DIR=1 | |
# Install the Kubernetes Python client | |
RUN pip install --no-cache-dir kubernetes==32.0.1 |