Skip to content

Instantly share code, notes, and snippets.

View pa-0's full-sized avatar

Peter Abbasi pa-0

View GitHub Profile
@pa-0
pa-0 / make-epub-folders.sh
Created January 17, 2025 05:02 — forked from duplaja/make-epub-folders.sh
Makes folders for each epub in the current directory, based on title and author tags.
#!/bin/bash
#Requires exiftool installed
#Subfolder to store results in
containingfolder="./epubs-folder/"
for i in *.epub; do
[ -f "$i" ] || break
@pa-0
pa-0 / Safari save all tabs
Created January 16, 2025 06:03 — forked from thesyntaxinator/Safari save all tabs
Safari save all tabs (tested on Mac OS Sierra 10.12.1 with Safari 10.0.1)
-- Based on code from:
-- https://gist.github.com/agoddard/5114024
-- https://gist.github.com/edenwaith/2213a764ccb091d6a03989f238efb63f
-- https://computers.tutsplus.com/tutorials/generate-a-list-of-open-safari-tabs-with-applescript--mac-30564
-- Instructions
-- 1. Open Automator -> create new Service.
-- 2. Select "no input" and "Safari"
-- 3. Drag "Run AppleScript" to the pane on the right.
-- 4. Paste the below code where it says "(* Your script goes here *)".
@pa-0
pa-0 / gist:32f7f690b39764c96c7c09ecc6b770bb
Created January 16, 2025 01:15 — forked from stevoyoung/gist:3214759
Open a new Safari window and load multiple URL in it
-- This AppleSciript is used to open a new Safari window and load various URLs into it.
-- The original code is from Antal S-Z on Stackooverflow. Go vote it up if like it.
-- http://stackoverflow.com/a/11708517/303343
property the_urls : {¬
"http://www.example.com", ¬
"http://www.apple.com", ¬
"http://www.stevoyoung.com"}
tell application "Safari"
@pa-0
pa-0 / 01 - Comments
Created January 14, 2025 01:11 — forked from nayanseth/01 - Comments
Basics of AppleScript
(*
Script - Comments
@author - Nayan Seth
© Tech Barrack Solutions Pvt Ltd
*)
--This is a single line comment
#This is a comment too but still single line
(*
@pa-0
pa-0 / make_icns.zsh
Created January 13, 2025 13:32 — forked from grahampugh/make_icns.zsh
Create iconset from a PNG
#!/bin/zsh
## Makes an icon set from a PNG. A 512x512 or 1024X1024 PNG is best.
## Taken from http://stackoverflow.com/a/31150333
## Usage: ./make_icns.zsh </path/to/image.png>
NAME=$(basename $1 .png); DIR="$NAME.iconset"
mkdir -pv $DIR
for m r in 'n' '' '((n+1))' '@2x'; do
for n in $(seq 4 9 | grep -v 6); do
@pa-0
pa-0 / get-dirs-logos.sh
Created January 13, 2025 13:32 — forked from dardo82/get-dirs-logos.sh
Copy logos from dirs
#!/bin/zsh
# Extract logos from folder icons
DL="Downloads"; G="Generic"
U="Utilities"; c="compare"
SB="Sidebar"; f="format"
I="Icon"; F="Folder"
mkdir -v Core
@pa-0
pa-0 / icon_maker.sh
Created January 13, 2025 13:31 — forked from Swiss-Mac-User/icon_maker.sh
macOS shell script to create an .icns icon file from an image input file
#!/bin/zsh
# ================================================================================
# A macOS shell script to create an .icns icon file from an image input file
#
# NOTE: make this file executable first using:
# chmod +x /path/to/icon_maker.sh
#
# --------------------------------------------------------------------------------
# Source: https://gist.github.com/Swiss-Mac-User/7a1a55e499db618c59718cbffe23318c
@pa-0
pa-0 / icons.sh
Created January 13, 2025 13:09 — forked from yoannmoinet/icons.sh
Mac OS X icon.icns
#!/bin/sh
#Usage: ./icons.sh ../assets/media/icon_color_1024.png ../assets/icons
name=$(basename "$1" ".png")
dir=$(cd "$(dirname "$2")"; pwd)/$(basename "$2")
mkdir $dir/$name.iconset
sips -Z 16 --out $dir/$name.iconset/icon_16x16.png $1
sips -Z 32 --out $dir/$name.iconset/[email protected] $1
sips -Z 32 --out $dir/$name.iconset/icon_32x32.png $1
@pa-0
pa-0 / png2icns
Created January 13, 2025 13:06 — forked from djha-skin/png2icns
Convert PNG file to ICNS file
# Stolen from here: http://stackoverflow.com/a/20703594/850326
#!/bin/sh
export POSIXLY_CORRECT=1
if [ -z "${1}" -o -z "${2}" ]
then
echo "Usage: ${0} <name> <original-png-location>"
fi
name=$1
@pa-0
pa-0 / OSX Code Signing and Notarization
Created January 12, 2025 00:53 — forked from twangboy/OSX Code Signing and Notarization
OSX Code Signing and Notarization for Salt OSX Packages
Salt has been building OSX packages for many years now. We have been signing the installer (``.pkg``) files with a Developer ID Installer certificate. Apple now requires some additional signing and notarization in addition to signing the installer. This will allow the installer and Salt software to pass the gate keeper. I believe the process is as follows.
1. Build the app
2. Sign all the binaries in the app (python, pip, salt-*, etc) with the Developer ID Application certificate and use a secure timestamp
3. Build the package (I believe ours is a flat installer)
4. Sign the package with the Developer ID Installer certificate
5. Submit the installer for notarization
6. Staple the notarization to the package
This requires the use of new tooling