7 Commits

Author SHA1 Message Date
6941f97721 Update Layout.astro 2023-09-25 18:01:59 +02:00
ca015a59d8 Update Socials.astro 2023-09-25 15:52:01 +02:00
94ea56f946 Update values-prod.yaml 2023-09-25 15:49:46 +02:00
6cb96c6ab1 Update Socials.astro 2023-09-25 15:40:40 +02:00
8a8269648c Update config.ts 2023-09-25 15:39:23 +02:00
b921284f4d Create vscode-debug-settings-collection.md 2023-09-17 12:26:56 +02:00
697b482095 ci: update image version in helm chart 2023-09-04 11:50:06 +02:00
5 changed files with 36 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ image:
repository: alexohneander/alexohneander-astro
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v2.3.6"
tag: "v2.3.8"
ingress:
enabled: true

View File

@@ -17,6 +17,7 @@ const { centered = false } = Astro.props;
href={social.href}
className="link-button"
title={social.linkTitle}
>
<Fragment set:html={socialIcons[social.name]} />
</LinkButton>

View File

@@ -137,8 +137,8 @@ export const SOCIALS: SocialObjects = [
},
{
name: "Mastodon",
href: "https://github.com/satnaing/astro-paper",
href: "https://mastodon.social/@alexohneander",
linkTitle: `${SITE.title} on Mastodon`,
active: false,
active: true,
},
];

View File

@@ -0,0 +1,31 @@
---
author: Alex Wellnitz
pubDatetime: 2023-17-09T12:20:27+02:00
title: VSCode debug settings Collection
postSlug: vscode-debug-settings-collection.md
featured: true
draft: true
tags:
- vscode
- debug
- development
ogImage: ""
description: In this post, we will show you how to create a MySQL server backup using Kubernetes CronJobs.
---
### Go VSCode debugging
**launch.json:**
```json
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Package",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}"
}
]
}
```

View File

@@ -35,6 +35,7 @@ const socialImageURL = new URL(
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="canonical" href={canonicalURL} />
<link rel="me" href="https://mastodon.social/@alexohneander" />
<meta name="generator" content={Astro.generator} />
<!-- General Meta Tags -->