Skip to content

Instantly share code, notes, and snippets.

View apfohl's full-sized avatar
🦀
Rust is awesome!

Andreas Pfohl apfohl

🦀
Rust is awesome!
View GitHub Profile
@apfohl
apfohl / agent.go
Created January 8, 2025 20:59
Concurrency with agent pattern
package main
import (
"fmt"
"image"
"image/color"
"io"
"os"
"strings"
"sync"
@apfohl
apfohl / unpacking-ddd-abstract.md
Created November 17, 2024 20:29
Unpacking the Essentials of Domain-Driven Design

Die Anwendung von Domain-Driven Design (DDD) in der realen Welt ist ebenso herausfordernd wie lohnend. In diesem Vortrag teile ich meine Reise als Entwickler durch die Komplexitäten von strategischem und taktischem DDD. Von der Erkundung von Domänen bis hin zur Gestaltung von Bounded Contexts zeige ich die Werkzeuge und Techniken, die mir geholfen – und manchmal auch im Weg gestanden – haben, um die Kluft zwischen Theorie und Praxis zu überbrücken.

Egal, ob du neu in DDD bist oder Schwierigkeiten hast, es in deinen Projekten anzuwenden: Dieser Vortrag bietet Einblicke in häufige Stolpersteine und die daraus gewonnenen Erkenntnisse. Begleite mich auf eine praxisnahe Reise, die zeigt, wie Neugier, Zusammenarbeit und ein Hauch von Experimentierfreude die Softwareentwicklung verändern können.

@apfohl
apfohl / mcstatus.js
Last active December 10, 2021 07:29
Scriptable.app Minecraft server status widget
/*
The MIT License (MIT)
Copyright (c) 2020 Andreas Pfohl
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@apfohl
apfohl / git-commands.md
Last active July 26, 2017 08:37
Git Commands

Git Commands

General

Command Description
git init Create Git repository
git clone [repository] Clone Git repository
git add [file] Add file to staging area
git rm --cached [file] Remove file from staging area
@apfohl
apfohl / shm.c
Created December 17, 2015 15:16
Shared memory example
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/shm.h>
#include <stdio.h>
#include <string.h>
int main(void)
{
/* shared memory segment */
@apfohl
apfohl / msg.c
Last active April 24, 2020 19:35
C message queue example
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/msg.h>
#include <sys/wait.h>
#include <string.h>
/* message structure */
struct message {
long mtype;
@apfohl
apfohl / ppp.c
Created November 26, 2015 18:31
Pointer Pointer Pointer
#include <stdlib.h>
#include <stdio.h>
#include <gc/gc.h>
struct node {
int i;
};
struct node *new_node(int i)
{
@apfohl
apfohl / funcptr.c
Created September 15, 2015 18:27
C Function Pointer passing
#include <stdio.h>
union env {
void (*func)();
};
void foo(int a, int b)
{
printf("%d\n", a + b);
}
@apfohl
apfohl / sort.cpp
Created June 26, 2015 20:49
Sort array in C++
/*
* Save as "sort.c".
* Compile with "CXXFLAGS=-std=c++11 make sort".
*/
#include <iostream>
#include <algorithm>
struct Distance {
int index;