Skip to content

Instantly share code, notes, and snippets.

View wkronmiller's full-sized avatar

William Rory Kronmiller wkronmiller

View GitHub Profile
@wkronmiller
wkronmiller / LLM.md
Last active March 29, 2023 10:35 — forked from rain-1/LLM.md
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.

[
{
"action": {
"type": "block"
},
"trigger": {
"url-filter": "https://www.youtube.com/api/stats/ads.*"
}
},
{
@wkronmiller
wkronmiller / carthage-filelist.sh
Created November 24, 2019 16:32
Build input.filelist and output.filelist for Carthage
echo '' > input.xcfilelist
find Carthage/Build/iOS -name *.framework -exec echo '$(SRCROOT}'/{} \; >> input.xcfilelist
echo '' > output.xcfilelist
find Carthage/Build/iOS -name *.framework -exec basename {} \; | xargs -I {} -n1 echo '$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/'{} >> output.xcfilelist
@wkronmiller
wkronmiller / get-cookie.js
Last active January 3, 2018 11:46
Get Cookies as Object
@wkronmiller
wkronmiller / OCR PDFs
Created February 3, 2017 13:31
Requires Tesseract ("brew install tesseract" should do the trick)
#!/bin/bash
convert -density 300 $1 -depth 8 -fill white -background white -alpha Off out.tiff && tesseract out.tiff $1 pdf && rm -f out.tiff