Skip to content

Instantly share code, notes, and snippets.

View corneliusroemer's full-sized avatar

Cornelius Roemer corneliusroemer

View GitHub Profile
@hopeseekr
hopeseekr / StackOverflow Stats.md
Last active July 15, 2025 01:59
StackOverflow Dec 2024 stats

Disclaimer: I'm in the Top 1% of StackOverflow contributors with 23,315 rep points.

I asked 1 high-quality question in 2024, and it was closed almost immediately, and I haven't engaged with the site since.

If someone with 20,000+ karma has their nicely-formatted questions closed so quickly, what must the newbies and rank-in-file encounter? This is probably a big reason why it's declining.


@raphlinus
raphlinus / not_too_clever.md
Created June 23, 2022 00:50
Translation of grugbrain.dev into English

The not-too-clever programmer

This is a translation of grugbrain.dev into clear English. All props to the original author.

Introduction

This is a collection of thoughts on software development, originally written by an pseudonymous author styling themselves the "grug brain developer," but then translated into clear English by Raph Levien.

I am not an extremely smart developer, but I have many years of experience and have learned some things, although still don't know everything.

@lenaschimmel
lenaschimmel / Variantenverdacht_LaborID.csv
Created December 22, 2021 08:09
Postleitzahlen und IDs der Labore, die im November und Dezember die meisten Variantenverdachtsfälle ermittelt haben
field value count
LABOR_ID 10004 770
LABOR_ID 10261 768
LABOR_ID 10036 661
LABOR_ID 10272 498
LABOR_ID 10213 433
LABOR_ID 10190 353
LABOR_ID 10350 343
LABOR_ID 10001 301
LABOR_ID 10594 202
# Source: https://gist.github.com/84324e2d6eb1e62e3569846a741cedea
####################
# Create a Cluster #
####################
minikube start
#############################
# Deploy Ingress Controller #
@windsting
windsting / alt-f_and_alt-b_on_mac.md
Last active August 31, 2024 16:37
Use alt-f and alt-b to jump forward and backward in command line on macOS

Use alt-f and alt-b to jump forward and backward in command line on macOS

On macOS, the default behavior of key combination alt-f and alt-b are insert characters ƒ and , which is conflict with the navigation.

To cope with this, you need to change settings of terminal emulator application.

Terminal - the default one on macOS

The operation below is tested on Version 2.10 (433).

@onlurking
onlurking / programming-as-theory-building.md
Last active August 5, 2025 01:11
Programming as Theory Building - Peter Naur

Programming as Theory Building

Peter Naur

Peter Naur's classic 1985 essay "Programming as Theory Building" argues that a program is not its source code. A program is a shared mental construct (he uses the word theory) that lives in the minds of the people who work on it. If you lose the people, you lose the program. The code is merely a written representation of the program, and it's lossy, so you can't reconstruct

@cliffom
cliffom / egpu.md
Last active March 16, 2025 14:41
macOS + Win10/bootcamp eGPU Findings
@tanaikech
tanaikech / submit.md
Created January 10, 2020 01:20
Trend of google-apps-script Tag on Stackoverflow 2020

Trend of google-apps-script Tag on Stackoverflow 2020

January 10, 2020 Published.

Kanshi Tanaike

@ssokolow
ssokolow / python_boilerplate.py
Created October 13, 2019 08:54
The raw/initial output from "boiler" in my ~/.vim/snippets/python.snippets
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""[application description here]"""
# Prevent Python 2.x PyLint from complaining if run on this
from __future__ import (absolute_import, division, print_function,
with_statement, unicode_literals)
__author__ = "Stephan Sokolow (deitarion/SSokolow)"
__appname__ = "[application name here]"
@ciiqr
ciiqr / dispatch.sh
Last active February 19, 2025 12:25
github actions, repository_dispatch with client_payload
# TODO: replace :token, :user, and :repo
curl -H "Authorization: token :token" \
-H 'Accept: application/vnd.github.everest-preview+json' \
"https://api.github.com/repos/:user/:repo/dispatches" \
-d '{"event_type": "awesomeness", "client_payload": {"foo": "bar"}}'