Skip to content

Instantly share code, notes, and snippets.

@jftuga
jftuga / python-logging.py
Created February 22, 2025 19:46
Python Logging
# python logging for AWS Lambda function
import logging
# boto3 internally uses DEBUG and INFO; therefore start with WARNING level
logging.basicConfig(level=logging.WARNING)
def lambda_handler(event, context):
logging.warning(f"{event=}")
@jftuga
jftuga / SingleFile_Extension.md
Created February 18, 2025 01:05
SingleFile_Extension

Open SingleFile extension preferences...

For the File Name field use this:

SingleFile/%if-empty<%replace<{page-title}| |_>|no_title>--{year-locale}{month-locale}{day-locale}.{hours-locale}{minutes-locale}{seconds-locale}.{filename-extension}

Example file (uses local time):

@jftuga
jftuga / batt-info.sh
Created October 17, 2024 11:44
batt-info
# to be placed in .zshrc or .bashrc on MacOS
function batt-info() {
echo
system_profiler SPPowerDataType | grep Wattage | cut -c 7-
echo
pmset -g batt
}
@jftuga
jftuga / a-description.md
Last active January 11, 2025 14:50
Python insert_lines function

Line Insertion Utility

This Python utility provides two functions for inserting lines into configuration files:

  • insert_lines
  • regex_insert_lines

These functions allow for precise and flexible modification of text files, particularly useful for updating configuration files in networking and system administration tasks.

  • insert_lines: Inserts specified lines into a file before or after a line that starts with a given string.
@jftuga
jftuga / zsh-prompt.md
Last active June 15, 2024 00:52
My zsh prompt with current working directory, git branch name, and current time
@jftuga
jftuga / MacOS_Terminal.md
Created June 11, 2024 14:53
Change Terminal Transparency in MacOS Sonoma

Change Terminal Transparency in MacOS Sonoma

This setting has recently changed so YMMV

  • Terminal -> Settings
  • Text tab
  • Background -> click on the box to the left of Color & Effects
    • There is no button, just click on it.
  • Slide Opacity to 100%
@jftuga
jftuga / goreleaser_homebrew.md
Created June 10, 2024 11:40
GoReleaser and Homebrew setup

CONFIGURING GORELEASER TO BUILD HOMEBREW BINARIES

In .github/workflows/release.yml file:

      - name: run GoReleaser
        uses: goreleaser/goreleaser-action@v6
        env:
 HOMEBREW_TOKEN: ${{ secrets.HOMEBREW_TOKEN }}
@jftuga
jftuga / ytdlp_nest_comments.py
Created June 6, 2024 10:17 — forked from pukkandan/ytdlp_nest_comments.py
Prettify and nest comments from yt-dlp's info.json file and write it to a new html/json file
#!/usr/bin/env python3
"""
SPDX-License-Identifier: MIT https://opensource.org/licenses/MIT
Copyright © 2021 [email protected]
* Input file is an info.json (with comments) that yt-dlp (https://github.com/yt-dlp/yt-dlp) wrote
* Change FIELDS according to your needs
@jftuga
jftuga / example.go
Created May 30, 2024 13:40
example
package main
import (
"fmt"
"io"
"os"
)
func main() {
var count int64
@jftuga
jftuga / dump-all-variables.py
Last active May 18, 2024 10:23
Dump all Python variables
r"""
dump-all-variables.py
-John Taylor
2024-05-16
Dumps both global and local Python variables and their values
"""
import json
import re