Skip to content

Instantly share code, notes, and snippets.

View wildcard's full-sized avatar
🏗️
Building...

Kobi Kadosh wildcard

🏗️
Building...
View GitHub Profile
@wildcard
wildcard / ya.py
Last active May 13, 2025 09:44 — forked from Yegorov/ya.py
Download file from Yandex.Disk through share link for large file + reconnect option on MacOS with caffeinate to prevent computer from sleep
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# https://toster.ru/q/72866
# How to
# wget http://gist.github.com/...
# chmod +x ya.py
# ./ya.py download_url path/to/directory
import os, sys, json
@wildcard
wildcard / generate-yml-from-find.sh
Last active February 10, 2022 20:25
Generate yml directives from md files using find
#!/usr/bin/env bash
find . -name '*.md' | sort | xargs -IFILE echo "{ \"file\": \"FILE\", \"title\": \" $( basename 'FILE' ) \" }" | jq -s '.' | yq e -P
@wildcard
wildcard / NFTixBooth.sol
Created April 24, 2022 11:20 — forked from ryancharris/NFTixBooth.sol
Final smart contract from my Egghead NFT course
pragma solidity >=0.8.0 <0.9.0;
//SPDX-License-Identifier: MIT
import "hardhat/console.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./Base64.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
@wildcard
wildcard / CLAUDE.md
Last active March 17, 2026 22:48
Oh My Zsh custom plugin: review_pr - GitHub PR review tool using Claude

CLAUDE.md

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

Project Overview

This is a zsh plugin called review_pr that automates GitHub Pull Request reviews using Claude AI. The plugin creates an intelligent workflow for fetching, caching, and reviewing PRs with detailed analysis.

Core Architecture