Skip to content

Instantly share code, notes, and snippets.

@ruvnet
ruvnet / *claude.md
Last active June 10, 2025 17:07
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

@Tan12d
Tan12d / Leetcode 3442 | Maximum Difference Between Even and Odd Frequency I.java
Created June 10, 2025 17:03
Leetcode 3442 | Maximum Difference Between Even and Odd Frequency I
class Solution {
public int maxDifference(String s)
{
int freq[] = new int[26];
for(char c: s.toCharArray())
{
freq[c-'a']++;
}
@janjitsu
janjitsu / htoprc
Last active June 10, 2025 17:05
My Htop Setup
# Copy or symlink this file to ~/.config/htop/htoprc
# Beware! This file is rewritten by htop when settings are changed in the interface.
# The parser is also very primitive, and not human-friendly.
# see more at https://dev.to/janjitsu/my-htop-setup-3fng
#
#
fields=0 48 17 18 38 39 40 2 46 47 49 1
sort_key=111
sort_direction=1
tree_sort_key=1
@kiview
kiview / ASUS ALC887-VD 5.1 (Ubuntu)
Last active June 10, 2025 17:05
5.1 sound for ASUS ALC887-VD onboard audio in Ubuntu
Model: ALC887-VD
head -n 1 /proc/asound/card0/codec*
Codec: Realtek ALC887-VD
zless /usr/share/doc/alsa-base/driver/HD-Audio-Models.txt.gz
asus 3-jack (ASUS Mobo)
Edit:
/etc/modprobe.d/alsa-base.conf
@sidneys
sidneys / iosgods.direct-app-store-ipa-download.js
Last active June 10, 2025 17:04
UserScript | iOSGods App Store | Direct .IPA File Download
// ==UserScript==
// @name iOSGods: Direct App Store .IPA Download
// @namespace de.sidneys.userscripts
// @homepage https://gist.githubusercontent.com/sidneys/
// @version 1.0.0
// @description Download .IPA files directly from the iOSGods App Store (app.iosgods.com) without a "ViP" subscription.
// @author sidneys
// @icon https://app.iosgods.com/apple-touch-icon.png
// @include http*://app.iosgods.com/store/*
// @require https://greasyfork.org/scripts/38888-greasemonkey-color-log/code/Greasemonkey%20%7C%20Color%20Log.js
@xbb
xbb / windows-firewall-cleanup.ps1
Last active June 10, 2025 17:03
Removes Windows Firewall program rules pointing to non-existing paths
# Usage: windows-firewall-cleanup.ps1 [-y]
# use -y parameter to actually remove the rules
param(
[switch]$y = $false
)
Get-NetFirewallApplicationFilter | ForEach-Object {
$program = $_.Program
if ([System.IO.Path]::IsPathRooted($program)) {
if (!(Test-Path -Path "$program" -PathType Leaf)) {
@thepwrtank18
thepwrtank18 / xb360.md
Last active June 10, 2025 17:01
Getting disc-based games as GoD on the 360 with FreeMyXe

Getting disc-based games as GoD on the 360 with FreeMyXe

This guide will provide steps for getting backups of disc-based games running on the Xbox 360 on hacked systems using FreeMyXe. I'm assuming you already backed up the game; if this isn't the case, watch MrMario2011's video: https://www.youtube.com/watch?v=DB7EKfEYYP0

Feel free to turn this guide into a video, or make improvements (or maybe automate this, this gets tedious 😴) ! No credit needed.

Prerequisites

You'll need:

@ariccio
ariccio / BluetoothConstants.ts
Created January 10, 2022 18:59
GATT services and characteristics
//Extracted 1/10/2022 from my COVID-CO2-tracker project, in case they're useful to anybody. I'm gonna file an issue/suggesting a few places, and it seems polite to dump it here rather than a long preformatted bit in an issue.
export const GENERIC_GATT_SERVICE_SHORT_ID_DESCRIPTIONS = new Map([
//these are hex strings, without the 0x. Chrome zero extends the devices... so 0x1800 becomes 0x00001800.
// This is a hack to make things easy.
['1800', "generic_access"],
['1801', "generic_attribute"],
['1802', "immediate_alert"],
['1803', "link_loss"],
@anubhavshrimal
anubhavshrimal / CountryCodes.json
Last active June 10, 2025 17:00 — forked from Goles/CountryCodes.json
Country and Dial or Phone codes in JSON format
[
{
"name": "Afghanistan",
"dial_code": "+93",
"code": "AF"
},
{
"name": "Aland Islands",
"dial_code": "+358",
"code": "AX"
{
"env": {
"PATH": "$(PATH):$(HOME)\/.local\/bin"
},
"apps": [
{
"name": "720p60 Desktop",
"prep-cmd": [
{
"do": "bash \/home\/georg\/.config\/sunshine\/prepare_steam.sh",