Skip to content

Instantly share code, notes, and snippets.

View digitarald's full-sized avatar
🏳️‍🌈

Harald Kirschner digitarald

🏳️‍🌈
View GitHub Profile
@digitarald
digitarald / mcp.json
Last active March 28, 2025 14:01
MCP Template for VS Code GitHub Copilot
{
"inputs": [
{
"type": "promptString",
"id": "github-pat",
"password": true,
"description": "GitHub Personal Access Token (PAT, https://github.com/settings/personal-access-tokens/new)"
}
],
"servers": {
@digitarald
digitarald / README.md
Last active March 3, 2025 16:18
The Evolving Landscape of AI-Assisted Development

AI-Assisted Development in 2025: Three Emerging Paradigms

The New Development Landscape

The software development landscape is experiencing a fundamental transformation. Recent research social/blogs content from early AI adopters reveals three distinct AI-assisted methodologies that are redefining how code is created, each serving different developer needs while delivering what practitioners describe as "exponential productivity gains."

Structured Agentic Workflows: Planning-First Development

Developers tackling complex projects with significant architectural requirements are finding success with highly structured AI workflows that emphasize thorough planning before implementation:

@digitarald
digitarald / settings.jsonc
Last active October 20, 2024 19:50
Personal Copilot Instructions for User Settings
{
"github.copilot.chat.experimental.codeGeneration.useInstructionFiles": true,
"github.copilot.chat.experimental.codeGeneration.instructions": [
{
"text": "Use concise one-liners when possible, but avoid sacrificing clarity for brevity."
},
{
"text": "Comment any generated code that has complex logic, especially around asynchronous operations or state management."
},
{
@digitarald
digitarald / nextjs-copilot-instructions.md
Created August 27, 2024 00:30
Next.JS App Router - Copilot Custom Instructions
  • Default to Server Components in app/, only using Client Components with 'use client' if they use hooks like useState or useRouter, or DOM interactions.
  • Fetching data in Server Components: use fetch(), avoid useEffect.
  • For TypeScript: Enforce interfaces and types for all props and state.
  • Nest layout.tsx files for consistent UI across sections.
  • For async operations: prefer async/await, add appropriate error handling and UI loading states.
@digitarald
digitarald / fasthtml-copilot-instructions.md
Created August 27, 2024 00:26
FastHTML Copilot Instructions
  • Core Concepts:

    • FastHTML Basics: Framework for building fast, scalable web applications using pure Python. Integrates seamlessly with HTML, CSS, and JavaScript via HTMX.
    • ASGI and Uvicorn: FastHTML operates on ASGI with Uvicorn as the ASGI server. Starlette provides high-level functionality on top of ASGI.
  • Routing and HTTP Methods:

    • Route Definitions: Use @rt decorator to define routes. Function names (get, post, put, delete) map directly to HTTP methods.
    • Dynamic Routing: Use path parameters and types for dynamic route handling. Example: @rt("/{fname:path}.{ext:static}").
  • HTML and Components:

  • Component Creation: Build reusable components using Python functions that return HTML elements. Example: def hero(title, statement): return Div(H1(title), P(statement), cls="hero").

import fs from "fs";
import path from "path";
import matter from "gray-matter";
import { bundleMDX } from "mdx-bundler";
export const POSTS_PATH = path.join(process.cwd(), "data/_posts");
export const getSourceOfFile = (fileName) => {
return fs.readFileSync(path.join(POSTS_PATH, fileName));
};
@digitarald
digitarald / vscode-tips-cheat-sheet.md
Created June 2, 2021 20:30
VS Code Tips & Tricks Talk Cheat Sheet - OpenJS 2021

VS Code Tips & Tricks

Harald @digitarald Kirschner - June 2021

Cheat sheet with instructions to try out the tips & tricks covered in the talk.

Part 1: Personalize the look & feel.

Auto Save

@digitarald
digitarald / index.html
Last active August 24, 2017 21:30
Console log line-height issue
<script>
console.log('%cline-height: 1.5', 'line-height: 1.5; background-color: red; color: white')
console.log('%cline-height: 1.5em', 'line-height: 1.5em; background-color: red; color: white')
console.log('%cline-height: 50px', 'line-height: 50px; background-color: red; color: white')
</script>
See DevTools Console
@digitarald
digitarald / test.log
Created May 24, 2017 18:36
Foxfooding Analysis
Long Frames: Main
16-20: 2156
20-40: 1015
40-60: 203
60-80: 116
80-100: 95
100-120: 61
120-140: 44
140-160: 24
160-180: 33
@digitarald
digitarald / webpack.js
Created June 7, 2016 22:51 — forked from Couto/webpack.js
Fetch polyfill with webpack
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var path = require('path');
var folders = {
APP: path.resolve(__dirname, '../app'),
BUILD: path.resolve(__dirname, '../build'),
BOWER: path.resolve(__dirname, '../bower_components'),
NPM: path.resolve(__dirname, '../node_modules')
};