Skip to content

Instantly share code, notes, and snippets.

@AndrewAltimit
AndrewAltimit / !README.md
Last active October 24, 2025 22:16
Manim MCP Integration

MCP Server Manim Integration

A complete implementation guide for integrating Manim (Mathematical Animation Engine) with MCP (Model Context Protocol) servers, enabling AI assistants to create programmatic animations and visualizations.

Example Output

Nanite System
@AndrewAltimit
AndrewAltimit / !README.md
Last active October 24, 2025 18:30
Claude Code and Gemini CLI Integration

Gemini AI Integration MCP Server

A Model Context Protocol (MCP) server that integrates Google's Gemini AI for code review, technical consultation, and AI-assisted development workflows. This server provides seamless integration with Claude Code and other MCP-compatible clients.

Usage

@pamelafox
pamelafox / animals.sql
Created November 22, 2021 21:11
Animals SQL
CREATE TABLE animals (name TEXT, legs INTEGER, weight INTEGER);
INSERT INTO animals VALUES ("dog", 4, 20);
INSERT INTO animals VALUES ("cat", 4, 10);
INSERT INTO animals VALUES ("ferret", 4, 10);
INSERT INTO animals VALUES ("parrot", 2, 6);
INSERT INTO animals VALUES ("penguin", 2, 10);
INSERT INTO animals VALUES ("t-rex", 2, 12000);
@pamelafox
pamelafox / songs.sql
Created November 17, 2021 20:50
pamela's favorite songs SQL
CREATE TABLE songs (
id INTEGER PRIMARY KEY AUTOINCREMENT,
artist TEXT,
title TEXT,
release_year INTEGER,
views NUMERIC
);
INSERT INTO songs (artist, title, release_year, views)
VALUES ("Lil Nas X", "Old Town Road", 2018, 851);
@pamelafox
pamelafox / astronauts.sql
Created March 20, 2020 18:24
NASA astronauts, 1959-Present
/* Source:
https://www.kaggle.com/nasa/astronaut-yearbook
*/
CREATE TABLE astronauts(
Name TEXT PRIMARY KEY,
Year INTEGER,
GroupNum INTEGER,
Status TEXT,
Birth_Date TEXT,
Birth_Place TEXT,
@pamelafox
pamelafox / pokemon.sql
Created March 20, 2020 16:51
Pokemon statistics
CREATE TABLE pokemon(
Number INTEGER,
Name TEXT PRIMARY KEY,
Type_1 TEXT,
Type_2 TEXT,
Total INTEGER,
HP INTEGER,
Attack INTEGER,
Defense INTEGER,
Sp_Atk INTEGER,