Skip to content

Instantly share code, notes, and snippets.

View Incipiens's full-sized avatar

Adam Conway Incipiens

View GitHub Profile
@Incipiens
Incipiens / response.md
Created June 16, 2026 09:14
Full DiffusionGemma output - XDA

Make a Flappy Bird game in Python, rendered via my web browser and served with Flask

<|channel>thought Flappy Bird game. Python. Flask. Web browser (HTML/CSS/JS).

*   *Backend:* Flask (Python) to serve the HTML file and static assets.
  • Frontend: HTML5 Canvas for rendering, JavaScript for game logic (physics, collision, input handling). This is crucial because real-time games like Flappy Bird are best handled on the client side to avoid latency issues, while Flask acts as the server.
@Incipiens
Incipiens / lcc.sh
Created March 20, 2026 16:10
This is my script that I use for launching an instance of Claude Code using my local LLM, and it was written for an XDA article. Save it, edit the IP and port, and mark as executable to use.
#!/usr/bin/env bash
# lcc - Local Claude Code launcher
# Points Claude Code at a local LLM served by llama.cpp on your GB10 device
#
# Usage:
# lcc <modelname> — launch Claude Code with the specified model
# lcc <modelname> [args] — pass additional arguments to claude
# lcc — show help/launch with model if one is available
#
# Prerequisites:
#!/bin/sh
# Proxmox VE 9.1 - LanguageTool LXC creator and installer
# Written by Adam Conway 2025
set -u
# ============================================================================
# COLORS & OUTPUT HELPERS
# ============================================================================
GN="$(printf '\033[0;32m')" YW="$(printf '\033[0;33m')" CY="$(printf '\033[0;36m')"