Sascha Manns

Software- & Dataengineer

Posts in 9月 2024

Meet & Greet: Dipl.-Oec. Carmen Brablec (Ziehe deine Kunden an, statt sie zu aquirieren)

Wann: 25.09.2024, 19:00 - 20:00 Uhr Die Hochschulgruppe Hagen (FernUniversität in Hagen) der Gesellschaft für Informatik lädt ein zu einer weiteren Folge der beliebten "Meet & Greet"-Veranstaltungen. Dieses Format führt die Studenten und Studentinnen mit Vertretern aus Wirtschaft, Wissenschaft und Technik zusammen. Zielsetzung ist es einerseits zu sehen, wohin es nach
University Group

Minimal API-Key Lösung

Problem Ich suchte nach einer Lösung, die mit minimalem Aufwand eine Minimallösung für API-Schlüssel bereitstellt. Lösung ApiKeyMiddleware: public class ApiKeyMiddleware { private readonly RequestDelegate _next; private const string APIKEYNAME = "ApiKey"; public ApiKeyMiddleware(RequestDelegate next) { _next = next; } public async Task InvokeAsync(HttpContext context) {
Lesson learned

Zelda 3 - A Link to the Past für Windows, Linux und MacOS

Ich denke gerne an die 90er zurück. Der Beginn von Heimcomputern, besonderer Musik und Spielen. Eines der Spiele, an die ich gerne zurückdenke, ist „Zelda – A Link to the Past“. Ende der 80er hatte Nintendo diese epische Serie gestartet. So sah es damals aus: Vor allem der dritte Teil von 1995 hatte große Fortschritte gemacht. Bessere Grafik und orchestraler

Zelda 3 - A Link to the Past for Windows, Linux und MacOS

I like to think back to the 90s. The start of home computers, special music, and games. One of the games I like to think back to is "Zelda - A Link to the Past". Back in the late 80s, Nintendo had started this epic series. This is what it looked like back then: Especially the third part from 1995 had made huge steps forward. Better graphics and orchestral sound. Until now, anyone who would
Development