Skip to content

Commit 65ef52c

Browse files
committed
chore: enhance other things
1 parent 573e7f0 commit 65ef52c

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

src/components/Link.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let relAttribute = {};
2727
let targetAttribute = {};
2828
if (isExternal) {
2929
relAttribute = { rel: "external noreferrer" };
30-
// rel 'nooppener' is implict with target '_blank' - https://www.stefanjudis.com/today-i-learned/target-blank-implies-rel-noopener/
30+
// rel 'nooppener' is implicit with target '_blank' - https://www.stefanjudis.com/today-i-learned/target-blank-implies-rel-noopener/
3131
targetAttribute = { target: "_blank" };
3232
}
3333
---
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Gems of July 25"
3+
publishedAt: 2025-07-31T00:00:00.000Z
4+
tags:
5+
- Gems of the Month
6+
---
7+
8+
Long time no see, huh? Let's try to come back to this habit.
9+
10+
## Technology
11+
12+
### Podman
13+
14+
Recently when I had the problem, that when I triggered an update of an app hosted on Podman, sometimes it forgot the credentials to the container registry.
15+
16+
By default the `podman login` is stored in `/run` and with that, doesn't survive reboots. When you specify [`--authfile`](https://docs.podman.io/en/latest/markdown/podman-login.1.html#examples) the credentials are stored persistently. So when I logged in with `podman login --authfile ~/.config/containers/auth.json cr.gitlab.com` I didn't have the issue anymore.
17+
18+

src/content/pages/en/data-protection.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ template: article-with-aside
66

77
This privacy policy explains how this private website handles your data.
88

9+
To provide this website, additional services are required that have their own privacy policy. These services are:
10+
911
- [Cloudflare](https://www.cloudflare.com/privacypolicy/)
1012
- [GitHub](https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement)
1113

src/layouts/groups/Head.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type Props = {
1212
const locale = parseLocale(Astro.params.locale);
1313
const { translations } = Astro.props;
1414
const t = useTranslations(locale);
15-
let base = `${import.meta.env.SITE ? import.meta.env.SITE : ""}${import.meta.env.BASE_URL ? import.meta.env.BASE_URL : ""}`;
15+
let base = `${import.meta.env.SITE || ""}${import.meta.env.BASE_URL || ""}`;
1616
base = base.endsWith("/") ? base : `${base}/`;
1717
---
1818

0 commit comments

Comments
 (0)