Skip to content

Instantly share code, notes, and snippets.

View fschiettecatte's full-sized avatar

François Schiettecatte fschiettecatte

  • FS Consulting, LLC
  • Seattle, WA
View GitHub Profile
@fschiettecatte
fschiettecatte / DjangoConnectionsErrors.md
Last active December 10, 2024 23:19
Django Connections Errors

Django Connections Errors

For a long time I have been running into problems with Django connection errors when running a database query after a long idle period. This does not affect website per-se because connections last a very short time but for batch processes where there is a long interval between database access, Django does not detect that database has dropped the connection and raises an error.

Which really should not be happening because my database connection settings includes:

    'CONN_MAX_AGE': 3500,                   # 3500 seconds because wait_timeout = 3600 in my.cnf
@fschiettecatte
fschiettecatte / mpm_event_module_large.conf
Last active October 8, 2024 13:32
MPM Event Module Configuration for Large Servers
#
# MPM Event Module
#
# Large - 16 CPU / 32GB RAM
#
# https://httpd.apache.org/docs/2.4/mod/worker.html
# https://httpd.apache.org/docs/2.4/mod/event.html
#
# Matching WSGI Module Configuration
# WSGIDaemonProcess @@@@@ processes=20 threads=3 display-name=%{GROUP}
@fschiettecatte
fschiettecatte / mpm_event_module_medium.conf
Last active October 8, 2024 13:31
MPM Event Module Configuration for Medium Servers
#
# MPM Event Module Configuration for Medium Servers
#
# Medium - 4 CPU / 16GB RAM
#
# https://httpd.apache.org/docs/2.4/mod/worker.html
# https://httpd.apache.org/docs/2.4/mod/event.html
#
# Matching WSGI Module Configuration
# WSGIDaemonProcess @@@@@ processes=8 threads=3 display-name=%{GROUP}
@fschiettecatte
fschiettecatte / mpm_event_module_small.conf
Last active October 8, 2024 13:30
MPM Event Module Configuration for Small Servers
#
# MPM Event Module Configuration for Small Servers
#
# Small - 4 CPU / 8-16GB RAM
#
# https://httpd.apache.org/docs/2.4/mod/worker.html
# https://httpd.apache.org/docs/2.4/mod/event.html
#
<IfModule mpm_event_module>
@fschiettecatte
fschiettecatte / BootstrapModeSwitcher.md
Last active August 25, 2023 18:49
Automatically Setting and Switching Light / Dark Mode in Bootstrap

Automatically Setting and Switching Light / Dark Mode in Bootstrap

Bootstrap 5.3.0 introducted the concept of a theme to set the color mode of a website, ostensibly support light color mode and dark color mode.

The examples on the Bootstrap website show how to manually switch between modes but I wanted a way to automatically set the mode based on the operating system setting when the site loaded, and automatically switch the mode when the operating system switched from one mode to another.

So I put together an anonymous function which does the first and a window watcher which does the second.

This JavaScript should be included in the page itself, putting it in a separate file will cause the page to visibly switch modes when it is loaded which is pretty ugly.

@fschiettecatte
fschiettecatte / Samba_MacOS.md
Last active April 1, 2025 08:02
Setting up SAMBA for Linux / MacOS

Setting up Samba for Linux / MacOS

I recently switched from using Netatalk to Samba for file access from MacOS to linux.

Obviously the Samba is a great resource, on the Samba Wiki the Configure Samba to Work Better with Mac OS X was invaluable for setting up the /etc/samba/smb.conf file, and the vfs fruit man page contains documentation for all the options.

Here is the /etc/samba/smb.conf file I use:

[global]
@fschiettecatte
fschiettecatte / CleanRepo.md
Last active June 8, 2024 06:31
Removing all traces of a file from a GIT repository

Removing all traces of a file from a GIT repository

I recently had to remove all traces of a file from a GIT repository.

First clone the repository:

git clone ssh://[email protected]/home/repositories/codebase codebase

@fschiettecatte
fschiettecatte / uptime.15m.py
Last active December 21, 2020 16:30
SwiftBar plugin to display a website status in the macOS menu bar
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#--------------------------------------------------------------------------
#
# Author: Francois Schiettecatte (FS Consulting LLC.)
# Creation Date: October 10, 2020
#
@fschiettecatte
fschiettecatte / epa.15.py
Last active December 21, 2020 16:30
SwiftBar plugin to get and display the Air Quality Index (AQI) in the macOS menu bar
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#--------------------------------------------------------------------------
#
# Author: Francois Schiettecatte (FS Consulting LLC.)
# Creation Date: October 10, 2020
#
@fschiettecatte
fschiettecatte / HighTrafficServerSettings.md
Last active October 30, 2024 09:05
High Traffic Server Settings on RHEL / AlmaLinux / Rocky / EuroLinux / CentOS 8

High Traffic Server Settings on RHEL / AlmaLinux / Rocky / EuroLinux / CentOS 8

I recently did some work to optimize the network configuration of an AlmaLinux 8 based web server that receives a lot of traffic.

Of course these settings also apply to RHEL / Rocky / EuroLinux / CentOS 8 (hereafter referred to as Linux 8.) I think these should also work on RHEL / AlmaLinux / Rocky / EuroLinux 9 as well but I have not yet tested them.

There is a lot of information on the web for this and it distills down to a minimum recommended configuration, and a recommended configuration.

The minimum recommended configuration should be sufficient for servers with less than 10Gb, and the recommended configuration should be sufficient for servers with 10Gb or more.