Skip to content

Instantly share code, notes, and snippets.

View ragerin's full-sized avatar

Mads H. Jakobsen ragerin

  • Energinet
  • Denmark
View GitHub Profile
@guillaumevincent
guillaumevincent / README.md
Last active August 7, 2025 05:30
Windows Service with Python 3.5 and pyinstaller
import sys
import pygame as pg
BACKGROUND = pg.Color("darkslategray")
SCREEN_SIZE = (500, 500)
FPS = 60
class App(object):
@sloria
sloria / bobp-python.md
Last active September 9, 2025 10:52
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens