Skip to content

Instantly share code, notes, and snippets.

View acsr's full-sized avatar

Armin Stross-Radschinski acsr

View GitHub Profile
@acsr
acsr / MorphModelToSphereView.swift
Created May 25, 2025 17:24 — forked from Matt54/MorphModelToSphereView.swift
RealityKit Morph To Sphere with LowLevelMesh and LowLevelTexture
import SwiftUI
import RealityKit
import Metal
struct MorphModelToSphereView: View {
@State var entity: ModelEntity?
@State var lowLevelMesh: LowLevelMesh?
@State var originalVertices: [VertexData] = []
@State var originalTexture: LowLevelTexture?
@State var processedTexture: LowLevelTexture?
@acsr
acsr / youtube_transcript_extractor.sh
Created April 22, 2025 07:58 — forked from aldrinjenson/youtube_transcript_extractor.sh
Simple bash script to download just the transcript of a youtube video. Later pass this to claude to get summary or action items or key points or whatever
#!/bin/bash
# YouTube Transcript Extractor
# This script downloads and extracts the transcript from a YouTube video,
# calculates some statistics, and copies the result to the clipboard.
# Instructions:
# 1. Ensure you have the following dependencies installed:
# - yt-dlp: https://github.com/yt-dlp/yt-dlp#installation
# - jq: https://stedolan.github.io/jq/download/