Skip to content

Instantly share code, notes, and snippets.

View jeremymeyers's full-sized avatar

Jeremy Meyers jeremymeyers

View GitHub Profile
@YuriyGuts
YuriyGuts / link-ollama-models-to-lm-studio.py
Last active November 1, 2025 19:27
Expose Ollama models to LM Studio by symlinking its model files. Just run `python3 link-ollama-models-to-lm-studio.py`. On Windows, run it as admin.
@bem13
bem13 / danbooru_tag_count_scraper.py
Created February 9, 2024 13:15
Danbooru tag count scraper Python script
import requests
import csv
import time
# Base URL without the page parameter
base_url = 'https://danbooru.donmai.us/tags.json?limit=1000&search[hide_empty]=yes&search[is_deprecated]=no&search[order]=count'
# Specify the filename for the CSV
csv_filename = 'danbooru_tags_post_count.csv'