Skip to content

Instantly share code, notes, and snippets.

    • 1710062 Proton: Customize toolbar - light theme circle image is barely visible in ubuntu.
    • 1712957 Proton : Mac 10.14 - panels should have the correct border colour
    • 1714402 [meta] ui.prefersReducedMotion is ignored in some areas
    • 1721292 Menubar text always black, doesn't follow theme
    • 1724561 Places drop indicator's vertical positioning is inconsistent when dragging immediately before/after a separator
    • 1730371 Using the system theme and a high contrast theme on the OS gives unexpected results
    • 1733748 Urlbar border is misaligned with fractional gnome text scaling
    • [ ]
@sfoster
sfoster / mozlz4json.py
Last active November 28, 2023 15:55
MozLz4a compression/decompression utility
#!/usr/bin/env python
#
# Based on mozlz4a.py, by Tilman Blumenbach, via https://gist.github.com/kaefer3000/73febe1eec898cd50ce4de1af79a332a
# Modified by Sam Foster to parse the decompressed input as JSON and output a pretty-printed JSON document
#
# Decompressor/compressor for files in Mozilla's "mozLz4" format. Firefox uses this file format to
# compress e. g. bookmark backups (*.jsonlz4).
#
# This file format is in fact just plain LZ4 data with a custom header (magic number [8 bytes] and
# uncompressed file size [4 bytes, little endian]).
@sfoster
sfoster / thread-tests.scad
Created February 25, 2025 06:51
OpenSCAD thread test
include <../threads.scad>;
// threads library from: https://dkprojects.net/openscad-threads/
// probably updated since, as I downloaded this a while back
od = 30;
id = od - 1;
wall = 4;
$fn=64;
fillet=2;
lid_th=1;