Skip to content

Instantly share code, notes, and snippets.

View ehuelsmann's full-sized avatar

Erik Huelsmann ehuelsmann

  • The Netherlands
View GitHub Profile
@unbracketed
unbracketed / export_repo_issues_to_csv.py
Last active August 3, 2023 18:13
Export Issues from Github repo to CSV (API v3)
"""
Exports Issues from a specified repository to a CSV file
Uses basic authentication (Github username + password) to retrieve Issues
from a repository that username has access to. Supports Github API v3.
"""
import csv
import requests
@lindleyw
lindleyw / accounting thoughts.markdown
Last active November 27, 2021 08:18
Accounting database thoughts

Given an accounting database where:

  • All changes to the database must be performed by a job posting process
  • The database at the end of each posting will be marked with a GUID
  • Each job posting will be performed through a job queue (e.g., Minion)
  • Each job queue entry will be marked with the starting ("before") and ending ("after") GUID, and optionally, a log of all database modifications (e.g., SQL commands) performed

The following should be true:

  • There will exist an audit trail of postings and modifications to the database in the job queue log