Skip to content

Instantly share code, notes, and snippets.

View dazz's full-sized avatar

Anne-Julia Seitz dazz

View GitHub Profile
@dazz
dazz / cd.yml
Last active December 1, 2022 22:57
medium_github-actions-push-ghcr
name: Continuous Delivery
on:
push:
branches:
- 'main'
tags:
- 'v*.*.*'
jobs:
build:
@dazz
dazz / RouteLoader.php
Last active August 18, 2024 18:04
Dynamic route loading in a non-standard Symfony directory structure
<?php
declare(strict_types=1);
namespace App\Shared\Application\Routing;
use ReflectionClass;
use Symfony\Bundle\FrameworkBundle\Routing\RouteLoaderInterface;
use Symfony\Component\Finder\Finder;
use Symfony\Component\Routing\Attribute\Route as RouteAttribute;
@dazz
dazz / Makefile
Created September 29, 2025 07:26
Git release tag
# Configuration
RELEASE_BRANCH ?= main
CALVER_PATTERN ?= %Y.%m.%d
.PHONY: release release-auto release-next-tag release-check
# Interactive release (prompts for pull and confirmation)
release:
@RELEASE_BRANCH=$(RELEASE_BRANCH) CALVER_PATTERN=$(CALVER_PATTERN) ./scripts/release.sh release

Claude Code Features — Speaker Notes & Hintergrundwissen

Dieses Dokument begleitet die Präsentation "Claude Code Features — Agentic Coding SKILLS". Es enthält pro Slide ausführliche Speaker Notes, Hintergrundwissen und Talking Points, damit du auch bei Nachfragen sicher bist.


Slide 1 — Titelfolie

@dazz
dazz / ConfigValueType.php
Last active April 11, 2026 20:50
Shared Configuration
<?php
declare(strict_types=1);
namespace App\Shared\Configuration;
/**
* Enum for configuration value types used in type assertions.
*/
enum ConfigValueType: string