Skip to content

Instantly share code, notes, and snippets.

@oEdyb
oEdyb / openclawguide.md
Last active February 23, 2026 07:26
OpenClaw Full Setup Guide

OpenClaw Setup Guide

Setup documentation for deploying OpenClaw on a VPS. Potential video content.


Prerequisites

  • Fresh Ubuntu server (tested on Ubuntu 24.04)
  • SSH access with key authentication
@gulbaki
gulbaki / gist:a64010915eccda2ccaa527199bcfd323
Created February 22, 2026 13:56
Claude Code’un arkasındaki ekipten paylaşılan gerçek kullanım alışkanlıkları bir araya getirilmiş ve tek bir dosyada toplanmış: CLAUDE.md
# Workflow Orchestration
## 1. Plan Mode Default
- Enter plan mode for ANY non-trivial task (3+ steps or architectural decisions)
- If something goes sideways, STOP and re-plan immediately — don't keep pushing
- Use plan mode for verification steps, not just building
- Write detailed specs upfront to reduce ambiguity
## 2. Subagent Strategy
@spudbean
spudbean / gist:1558257
Last active February 23, 2026 07:18
Look of disapproval and other emoticons
ಠ_ಠ
( ͡° ͜ʖ ͡°)
¯\_(ツ)_/¯
(╯°□°)╯︵ ┻━┻
http://www.fileformat.info/convert/text/upside-down.htm
WRTTN http://wrttn.me/30dbfd/
Unicode Emoticons
@grantmcdermott
grantmcdermott / print.data.frame
Created February 20, 2026 20:49
Nice(r) base R data.frame print method
print.data.frame = function(x, ..., topn = 5, nrows = 20) {
nr = nrow(x)
if (nr <= nrows) {
out = x
splitprint = FALSE
} else {
out = rbind(head(x, topn), tail(x, topn))
splitprint = TRUE
}
@yuis-ice
yuis-ice / readme.md
Last active February 23, 2026 07:13
Rewind/forward videos for 1 second on Youtube

Install Autohotkey from here and save following script as tmp.ahk and execute the file by clicking.

You can rewind Youtube videos for 1 second by z and forward Youtube videos for 1 second by x.

WinActive("ahk_exe chrome.exe"): The feature will be only enabled on chrome.exe

WinActive(" - YouTube"): The feature will be only enabled if the window title of the current chrome tab matches to regex - YouTube

@NTT123
NTT123 / CCH_ALGORITHM.md
Last active February 23, 2026 07:13
Claude Code Billing Header

Claude Code Billing Header

Purpose

The x-anthropic-billing-header is a computed system message required in every Claude Code API request. It serves as an authentication/integrity check that ties each request to the Claude Code client. Without it, OAuth tokens scoped to Claude Code will reject the request with:

This credential is only authorized for use with Claude Code and cannot be used for other API requests.
// ==UserScript==
// @name Open YouTube App
// @version 1.0.4
// @author asportnoy
// @match *://*.youtube.com/*
// @downloadURL https://gist.github.com/asportnoy/628b820184297f5fe296c1a5b79c8000/raw/open-youtube-app.user.js
// @updateURL https://gist.github.com/asportnoy/628b820184297f5fe296c1a5b79c8000/raw/open-youtube-app.user.js
// @homepage https://gist.github.com/asportnoy/628b820184297f5fe296c1a5b79c8000/
// @inject-into content
// ==/UserScript==
@emschwartz
emschwartz / README.md
Last active February 23, 2026 07:11
The Most Popular Blogs of Hacker News in 2025

This is an OPML version of the HN Popularity Contest results for 2025, for importing into RSS feed readers.

Plug: if you want to find content related to your interests from thousands of obscure blogs and noisy sources like HN Newest, check out Scour. It's a free, personalized content feed I work on where you define your interests in your own words and it ranks content based on how closely related it is to those topics.

@miketartar
miketartar / ColdTurkeyBlockerActivator.py
Created September 26, 2020 04:21
Cold Turkey Blocker Activator
import json
import sqlite3
import os
DB_PATH = "C:/ProgramData/Cold Turkey/data-app.db"
def activate():