Skip to content

Instantly share code, notes, and snippets.

View Jameshskelton's full-sized avatar

James Skelton Jameshskelton

  • Austin
View GitHub Profile
{
"id": "7f5e0c56-93b4-4937-b7f2-efd0f1853e33",
"revision": 0,
"last_node_id": 153,
"last_link_id": 367,
"nodes": [
{
"id": 96,
"type": "MarkdownNote",
"pos": [
@Jameshskelton
Jameshskelton / curling_game.py
Created March 4, 2026 18:52
curling game made with Qwen3.5 122B-A10B
import pygame
import math
import sys
# Initialize Pygame
pygame.init()
# Screen settings
SCREEN_WIDTH = 800
SCREEN_HEIGHT = 600
{
"id": "e552c45b-43a1-48f6-bc85-97bd65091a71",
"revision": 0,
"last_node_id": 353,
"last_link_id": 627,
"nodes": [
{
"id": 138,
"type": "KSamplerSelect",
"pos": [
@Jameshskelton
Jameshskelton / zimageturbo.json
Created November 27, 2025 16:52
Z-Image-Turbo alternative prompt example
{
"id": "92112d97-bb64-4b44-86f2-ea5691ef8f6e",
"revision": 0,
"last_node_id": 28,
"last_link_id": 52,
"nodes": [
{
"id": 15,
"type": "Note",
"pos": [
{
"last_node_id": 39,
"last_link_id": 124,
"nodes": [
{
"id": 8,
"type": "VAEDecode",
"pos": {
"0": 866,
"1": 367
@Jameshskelton
Jameshskelton / app-copy1.py
Last active March 12, 2024 20:13
photomaker experiment
import torch
import numpy as np
import random
import os
from diffusers.utils import load_image
from diffusers import DDIMScheduler
from huggingface_hub import hf_hub_download
import spaces
@Jameshskelton
Jameshskelton / HF_to_PS.sh
Last active December 15, 2023 22:08
Run any HuggingFace Space as a Paperspace Deployment using the container paperspace/gradient-base:pt112-tf29-jax0317-py39-20230125
apt-get update && apt-get install git-lfs -y
while getopts ":f:" option; do
case $option in
f)
url="$OPTARG"
git-lfs clone $url
cd ${url##*/}
pip install -U gradio transformers
pip install -r requirements.txt
sed -i 's/.launch()/.launch(share=True)/' app.py