Skip to content

Instantly share code, notes, and snippets.

View astromechza's full-sized avatar
🐙

Ben Meier astromechza

🐙
View GitHub Profile
@stephenchew
stephenchew / README.md
Last active January 6, 2024 14:44
Bulk edit photos in Photoprism

Bulk edit photos in Photoprism

Tested to work with builds: -

  • 231011-63f708417
  • 230923-e59851350
  • 230719-73fa7bbe8

Use this workaround until Photoprism implemented bulk-edit feature.

@ruanbekker
ruanbekker / tree_style_tab_firefox.md
Created November 28, 2019 06:18
Hide Native Tabs with Tree Style Tabs for Firefox
@astromechza
astromechza / pyskeleton.py
Last active February 10, 2017 13:09
pyskeleton.py: Generate a basic Python package, ready for development.
#!/usr/bin/env python
"""
This script creates a basic Python package skeleton in the given directory.
It also sets up pytest (with coverage).
"""
import os
import re
@didip
didip / supervisord-example.conf
Created January 30, 2011 05:10
Example configuration file for supervisord.conf
[unix_http_server]
file=/tmp/supervisor.sock ; path to your socket file
[supervisord]
logfile=/var/log/supervisord/supervisord.log ; supervisord log file
logfile_maxbytes=50MB ; maximum size of logfile before rotation
logfile_backups=10 ; number of backed up logfiles
loglevel=error ; info, debug, warn, trace
pidfile=/var/run/supervisord.pid ; pidfile location
nodaemon=false ; run supervisord as a daemon