Skip to content

Instantly share code, notes, and snippets.

View 24601's full-sized avatar

Basit Mustafa 24601

View GitHub Profile
@Dicklesworthstone
Dicklesworthstone / gist:107ab1767b188544819fb0c39d7ac3fd
Last active November 30, 2025 17:17
Session using BV to figure out best beads order

❯ cd /data/projects/coding_agent_session_search ❯ cc

▐▛███▜▌ Claude Code v2.0.54 ▝▜█████▛▘ Opus 4.5 · Claude Max ▘▘ ▝▝ /data/projects/coding_agent_session_search

read AGENTS.md and the README and explore the project deeply. Use ultrathink

● I'll start by reading the AGENTS.md and README files, then explore the project structure in depth.

@arianvp
arianvp / SSH_MACOS_SECURE_ENCLAVES.md
Last active December 8, 2025 00:10
Native Secure Enclaved backed ssh keys on MacOS

Native Secure Enclave backed ssh keys on MacOS

It turns out that MacOS Tahoe can generate and use secure-enclave backed SSH keys! This replaces projects like https://github.com/maxgoedjen/secretive

There is a shared library /usr/lib/ssh-keychain.dylib that traditionally has been used to add smartcard support to ssh by implementing PKCS11Provider interface. However since recently it also implements SecurityKeyProivder which supports loading keys directly from the secure enclave! SecurityKeyProvider is what is normally used to talk to FIDO2 devices (e.g. libfido2 can be used to talk to your Yubikey). However you can now use it to talk to your Secure Enclave instead!

@phhusson
phhusson / infer-qwen3-omni-rtx3090.py
Created September 23, 2025 11:04
Infer Qwen3 Omni 30b-a3b on RTX3090 with 4bits bitsandbytes
import os
os.environ['PYTORCH_CUDA_ALLOC_CONF']='expandable_segments:True'
import soundfile as sf
from transformers import Qwen3OmniMoeForConditionalGeneration, Qwen3OmniMoeProcessor, BitsAndBytesConfig
from qwen_omni_utils import process_mm_info
import torch
MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Instruct"
@RexYuan
RexYuan / strix-compare.md
Last active November 29, 2025 20:13
True-to-scale dimension comparison chart of every AMD Strix Halo Al Max+ 395 MiniPC
strix-compare
  1. M4 Mac Mini and Dell Optiplex(Project TinyMiniMicro) for scale reference.
  2. Beelink's dimension excludes the rubber feet so I put the rubber feet under the ruler.
  3. Bosgame, Peladn, and XPlus use the exact same case just with different branding.
  4. NIMO, Linglong, Colorful, and LCFC use the same SIXUNITED stock case.
  5. GMKtec, FEVM, Bosgame, Peladn, XPlus, NIMO, Linglong, Colorful, and LCFC all use same SIXUNITED AXB35 motherboard.

Here are the exact dimensions placed horizontally measured in mm:

@0xs34n
0xs34n / THE_DEATH_OF_THE_USER_INTERFACE.md
Created August 23, 2025 10:41
The Death of the User Interface

The Death of the User Interface

TL;DR: We're witnessing the end of graphical user interfaces. AI agents like Claude Code are eliminating the need for windows, menus, and clicks, replacing them with natural language. The computer is finally learning to speak human, not the other way around.


🔮 A Personal Revelation

Last week, I realized something profound: I haven't opened Finder in months. Not once.

#!/usr/bin/env bun
"use strict";
const fs = require("fs");
const { execSync } = require("child_process");
const path = require("path");
// ANSI color constants
const c = {
cy: '\033[36m', // cyan
@24601
24601 / Autonomous.md
Created July 11, 2025 22:12 — forked from ruvnet/Autonomous.md
PyTorch-Based AI Agent System with Advanced Reasoning and Autonomy

Designing a PyTorch-Based AI Agent System with Advanced Reasoning and Autonomy

Overview and Goals

We propose an AI agent architecture in PyTorch that integrates state-of-the-art components to meet the following goals: (1) advanced reasoning with transformer models, (2) ingestion of large documents or histories via long context windows, (3) persistent memory without traditional vector-database RAG, (4) tool use for actions (API calls, code execution, etc.) similar to Anthropic’s MCP standard, and (5) declarative, goal-driven behavior with autonomous planning. The system will be compatible with both CPU and GPU environments. Below, we detail recommended models, libraries, and design choices for each aspect, followed by an overall architecture and example implementation steps.

1. Transformer Models for Advanced Reasoning

Model Selection: Use modern transformer-based LLMs known for strong reasoning and multitasking. For example, Meta’s LLaMA 2 (open-source, 7B–70B parameters) or **Mist

@ruvnet
ruvnet / performance.md
Last active November 25, 2025 04:25
AI Trading Platform with NeuralForecast Integration

Performance Analysis Report

NeuralForecast NHITS Integration Performance Validation

Date: June 2025
Analysis Period: Complete Integration Lifecycle
Report Type: Comprehensive Performance Validation


🎯 Key Features Documented

@ruvnet
ruvnet / Super-Turing.md
Last active November 7, 2025 13:40
a Rust implementation of a ferroelectric HfZrO-based synaptic resistor

Rust Implementation Plan for a 'Super-Turing' Spiking AI Chip Simulation

Imagine a chip that learns like a brain — not by uploading data to train on later, but by adjusting itself in real time, using almost no power. That’s what the new “Super-Turing” AI chip does. Instead of separating learning and inference like traditional neural networks (train first, deploy later), this chip learns and makes decisions at the same time, directly in hardware.

At the heart of this system is a device called a synstor — a synaptic transistor that acts both as memory and as a learning engine. It doesn’t just store weights like a normal neural network. It changes them dynamically based on electrical pulses, mimicking how biological synapses adjust when neurons fire. This change happens through a mechanism called Spike-Timing Dependent Plasticity (STDP) — if a signal comes in just before the output neuron fires, the connection strengthens; if it comes after, it weakens. All of this happens instantly and locally

@ruvnet
ruvnet / *claude.md
Last active November 30, 2025 20:43
The Claude-SPARC Automated Development System is a comprehensive, agentic workflow for automated software development using the SPARC methodology with the Claude Code CLI

Claude-SPARC Automated Development System For Claude Code

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Overview

The SPARC Automated Development System (claude-sparc.sh) is a comprehensive, agentic workflow for automated software development using the SPARC methodology (Specification, Pseudocode, Architecture, Refinement, Completion). This system leverages Claude Code's built-in tools for parallel task orchestration, comprehensive research, and Test-Driven Development.

Features