Skip to content

Instantly share code, notes, and snippets.

View wyattowalsh's full-sized avatar
:shipit:
Hey there GitHub folks! 👋

Wyatt Walsh wyattowalsh

:shipit:
Hey there GitHub folks! 👋
View GitHub Profile
@wyattowalsh
wyattowalsh / Python Video Enhancer Script TUI for macOS -- README.md
Last active April 27, 2025 09:20
Python Video Enhancer Script TUI for macOS

enhance_video.py

Python CLI/TUI for Waifu2x + RIFE video enhancement.

  • Single resolution knob-k 1|2|4|8|12 (auto-picks Waifu2x scale chain)
  • Pydantic validates every flag
  • Rich progress bar & Loguru debug logs
  • GPU rife-ncnn-vulkan auto-detected; falls back to CPU minterpolate
  • Zero temp files (pure streaming FFmpeg → Waifu2x → RIFE)
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Wyatt Walsh",
"label": "Data Integrations Software Engineer | AI, Data, Software, & Optimization | JPMorgan Chase & Co.",
"image": "https://i.ibb.co/FLtKMt6p/avatar-min.webp",
"email": "[email protected]",
"phone": "(209) 602-2545",
"url": "https://www.w4w.dev",
"summary": "Accomplished Senior Software Engineer and data engineering specialist bridging advanced operations research with AI-driven optimization strategies. Drawing on extensive experience at JPMorgan Chase & Co., I architect compliance-centric, real-time data infrastructures that empower critical enterprise decision-making. Skilled in synthesizing theoretical constructs into robust, high-availability software pipelines, I have led cross-functional teams, implemented fault-tolerant frameworks, and championed leading-edge AI solutions. My enduring commitment to research-driven innovation and stringent

waka

// Final Production Version: p5.js sketch for exporting a highly detailed SVG background
let svg;
function setup() {
svg = createGraphics(windowWidth, 300, SVG);
noLoop();
}
function draw() {
// Gradient Background with Complex Color Layers
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wyattowalsh
wyattowalsh / crawl4ai-user-guide.md
Created November 5, 2024 18:10
Crawl4AI User Guide

Crawl4AI Enhanced User Guide

Crawl4AI (version 0.3.73) is a powerful, open-source Python library tailored for large-scale web crawling and data extraction. It simplifies integration with Large Language Models (LLMs) and AI applications through robust, efficient, and flexible extraction techniques.


Table of Contents

@wyattowalsh
wyattowalsh / colab-forms.md
Created November 5, 2024 17:47
Google Colab Forms Syntax

Forms - Colab

Forms in Colab allow for easy parameterization of code. To add form fields:

  • Navigate to: Insert → Add form field

Changing a form's value updates the code, making your notebook interactive and user-friendly.


String Fields

Using Jina Reader to Read an Entire Website for Check Grounding

Han@Jina AI

This notebook is mainly inspired by Bo's tweet about using Jina Reader to follow a website's sitemap.xml for check grounding.

![image.png](data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAKHCAYAAACRjrHgAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAEsKADAAQAAAABAAAChwAAAACFPAXtAABAAElEQVR4AeydB5wtSVm+v8nh5rA5JzawK3GRsOwiSFpyDgKCSBJFwKz8EREUFREVVEAkKCoIiqLksMQlLyyw7LLL5rw357lz7z3/96k+30zPuRPvhDvhrd/0dHd1dYWnqs7pes9X1W0NubAzARMwARMwARMwARMwARMwARMwARMwARMwgXlKoH2e5svZMgETMAETMAETMAETMAETMAETMAETMAETMIFCwAKWG4IJmIAJmIAJmIAJmIAJmIAJmIAJmIAJmMC8JmABa15XjzNnAiZgAiZgAiZgAiZgAiZgAiZgAiZgAiZgActtwARMwARMwARMwARMwARMwARMwARMwARMYF4TsIA1r6vHmTMBEzABEzABEzABEzABEzABEzABEzABE7CA5TZgAiZgAiZgAiZgAiZgAiZgAiZgAiZgAiYwrwlYwJrX1ePMmYAJmIAJmIAJmIAJmIAJmIAJmIAJmIAJWMByGzABEzABEzABEzABEzABEzA

Numanac Monorepo 🧑‍🌾


Setup 🌱

@wyattowalsh
wyattowalsh / merge.py
Created March 3, 2024 21:10
Python3 to Merge .txt Files in a Directory
import os
import sys
def merge_txt_files(input_dir, output_file):
"""
Merges all .txt files found in the specified input directory into a single output file.
Parameters:
- input_dir (str): The directory to search for .txt files.
- output_file (str): The path to the output file where the merged content will be stored.