more content and some tooling updates

trunk
Adam Veldhousen 2 years ago
parent d7698e7dd1
commit c843dca9a5
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B

@ -4,7 +4,7 @@ COPY . /opt/
WORKDIR /opt
RUN apk add --no-cache hugo && \
RUN apk add --no-cache git hugo && \
hugo --verbose --minify --enableGitInfo
FROM nginx

@ -8,7 +8,20 @@ title: Homepage
I'm Adam V. and I write software for a living, and sometimes for fun.
[Resume](/resume_2019.pdf) | PGP: [A466CEE1415C0B9C](/gpg.pub)
[Resume](/resume_2019.pdf) | PGP: [A466CEE1415C0B9C](/gpg.pub) | [My Git Server](https://git.vdhsn.com) | [The code for this blog](https://git.vdhsn.com/adam/garden)
## Blogs I'm into lately
- [Lethain](https://lethain.com/)
## Links
→ [Software](/software)
→ [Health](/health)
A digital garden is like a personal wiki and a knowledge database of thoughts and ideas. Similar to a traditional garden, a digital one will also container various kinds of content (plants), of which may even be unrelated to each other. Ideas are not refined, thoughts are not tailored. Here is an excellent write-up about the [history of digital gardens](https://maggieappleton.com/garden-history)
@ -21,7 +34,4 @@ Building your own digital garden is not a fad. It's a necessity. Tools like Roam
Start collecting your ideas 💡, curate thought provoking & interesting content 💬  and learn.
→ [Software](/software)
→ [Health](/health)
[Learn more from a master gardener](https://github.com/maggieappleton/digital-gardeners)

@ -10,3 +10,13 @@ description: Cookie sweet donut candy pastry apple dolor orange lollipop biscuit
- [Kubernetes in Production: The Ultimate Guide to Monitoring Resource Metrics with Prometheus](https://www.replex.io/blog/kubernetes-in-production-the-ultimate-guide-to-monitoring-resource-metrics)
- [K8s Monitor Pod CPU and memory usage with Prometheus](https://itnext.io/k8s-monitor-pod-cpu-and-memory-usage-with-prometheus-28eec6d84729)
- [Understanding machine cpu usage](https://www.robustperception.io/understanding-machine-cpu-usage)
## Digital Garden templates
- []()
- [](https://commonplace.doubleloop.net/digital-garden)
## Tools
- [Netshoot](https://github.com/nicolaka/netshoot)

@ -1,12 +1,13 @@
SHA=$(shell git rev-parse --short=6 HEAD)
BUILD_DATE=$(shell date --iso-8601=minutes)
.PHONY: build docker install dev
.PHONY: build dev install publish
dev:
xdg-open http://localhost:1313 &
hugo serve -D --enableGitInfo
docker:
publish:
docker build \
--label="org.opencontainers.image.created=${BUILD_DATE}" \
--label="org.opencontainers.image.source=https://git.vdhsn.com/adam/garden.git" \
@ -16,6 +17,8 @@ docker:
--label="org.opencontainers.image.authors=Adam Veldhousen <adam@vdhsn.com>" \
-t vdhsn/garden:latest .
docker push vdhsn/garden:latest
build:
hugo --verbose --minify --enableGitInfo

Loading…
Cancel
Save