Skip to content

Instantly share code, notes, and snippets.

View kulapoo's full-sized avatar
🎯
Focusing

kulapoo kulapoo

🎯
Focusing
View GitHub Profile
@kulapoo
kulapoo / uad.sh
Last active August 17, 2026 08:03
A single-file bash CLI (uad) that launches the knowledge-graph dashboard of Understand-Anything (https://github.com/Egonex-AI/Understand-Anything) (an AI-plugin that codebases into interactive knowledge graphs) for any project that has run its /understand analysis. Requires the plugin installed at ~/.understand-anything-plugin (or set UAD_PLUGIN…
#!/usr/bin/env bash
# uad — understand-anything dashboard launcher.
#
# Usage:
# uad [path] [--open] Start the dashboard for the project at <path>
# (default: .). Prints the access URL; --open also
# opens it in your browser.
# uad stop Stop any running instance.
# uad status Show whether the dashboard is running (and its URL).
# uad url Print the current dashboard URL.
@kulapoo
kulapoo / README.md
Created August 19, 2025 13:13 — forked from disler/README.md
Use these Prompt Chains to build HIGH QUALITY AI Agents (Agentic Building Blocks)

Setup

  1. Create a new directory with these three files (requirements.txt, main.py, README.md)
  2. python -m venv venv
  3. source venv/bin/activate
  4. pip install -r requirements.txt
  5. python main.py
  6. Update main() to run the example prompt chains
https://claude.ai/public/artifacts/11ca9f39-9d7e-43f9-bfe2-d84d9665dca0

Quiz Prompt Generator - Complete Specification

Project Overview

Create a React application that generates customized quiz prompts for AI assistants. The application should allow users to configure all parameters dynamically and provide a seamless workflow for creating educational quizzes.

Core Requirements

1. Base Template Structure

Generate prompts based on this template format:

@kulapoo
kulapoo / official-rust-book-summary.md
Last active April 29, 2023 08:50
My Official Rust Book Summary

General

  • rustup = nvm
  • Cargo = npm
  • **creates.io"" = npm site
  • mut means mutalble
  • & = can access pieace of data without needing to copy that data into memory multiple times (&mut for mutable reference)
  • An arm has two parts: a pattern and some code
  • monomorphization in rust????
  • {:#?} is for debugging along with println! macro i.e println!("{:#?}")