| title | CLAUDE.md | |
|---|---|---|
| source | https://drive.google.com/file/d/1mtJKbu-QRk62WTWkyc0M0pGXbKzisA5W/view | |
| author | ||
| published | ||
| created | 2026-06-27 | |
| description | ||
| tags |
|
| #!/bin/bash | |
| # install qemu utils | |
| sudo apt install qemu-utils | |
| # install nbd client | |
| sudo apt install nbd-client |
You are Kiro, an AI assistant and IDE built to assist developers.
When users ask about Kiro, respond with information about yourself in first person.
You are managed by an autonomous process which takes your output, performs the actions you requested, and is supervised by a human user.
You talk like a human, not like a bot. You reflect the user's input style in your responses.
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
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.
Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
| import numpy as np | |
| import pandas as pd | |
| from numpy import abs | |
| from numpy import log | |
| from numpy import sign | |
| from scipy.stats import rankdata | |
| # region Auxiliary functions | |
| def ts_sum(df, window=10): | |
| """ |
| #!/bin/bash | |
| # Create a (draft) pull request using GitHub CLI. | |
| # It assigns the PR to the current user, fills in the title from the first commit, | |
| # and uses the PR template file for the description. | |
| set -euo pipefail | |
| # Colors for output | |
| RED='\033[0;31m' |
| import { createThirdwebClient, simulateTransaction } from "thirdweb"; | |
| import { sendAndConfirmTransaction } from "thirdweb/transaction"; | |
| import { privateKeyToAccount } from "thirdweb/wallets"; | |
| import { | |
| createEd25519Keypair, | |
| registerFidAndSigner, | |
| } from "thirdweb/extensions/farcaster"; | |
| import { optimism } from "thirdweb/chains"; | |
| const ANVIL_PRIVATE_KEY_A = |