Skip to content

Instantly share code, notes, and snippets.

View lordjabez's full-sized avatar
🔧
https://makingofthings.com

Judson Neer lordjabez

🔧
https://makingofthings.com
View GitHub Profile
@lordjabez
lordjabez / sublime-text-config.json
Last active October 5, 2025 01:16
Sublime Text Configuration
{
"ensure_newline_at_eof_on_save": true,
"font_face": "MonaspaceNeon-Regular",
"font_size": 12,
"save_on_focus_lost": true,
"theme": "Default Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"rulers": [120],
"ignored_packages":
[
@lordjabez
lordjabez / iterm-profile.json
Created October 5, 2025 01:21
iTerm2 Profile
{
"Ansi 7 Color" : {
"Green Component" : 0.73333334922790527,
"Blue Component" : 0.73333334922790527,
"Red Component" : 0.73333334922790527
},
"Tags" : [
],
"Ansi 12 Color" : {
@lordjabez
lordjabez / merge-pdfs.py
Created October 22, 2025 17:38
Merge a set of PDFs
#!/usr/bin/env python3
import sys
import pypdf
output_filename = sys.argv[1]
input_filenames = sys.argv[2:]