Setup documentation for deploying OpenClaw on a VPS. Potential video content.
- Fresh Ubuntu server (tested on Ubuntu 24.04)
- SSH access with key authentication
| # 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 |
| ಠ_ಠ | |
| ( ͡° ͜ʖ ͡°) | |
| ¯\_(ツ)_/¯ | |
| (╯°□°)╯︵ ┻━┻ | |
| http://www.fileformat.info/convert/text/upside-down.htm | |
| WRTTN http://wrttn.me/30dbfd/ | |
| Unicode Emoticons |
| 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 | |
| } |
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
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== |
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.
| import json | |
| import sqlite3 | |
| import os | |
| DB_PATH = "C:/ProgramData/Cold Turkey/data-app.db" | |
| def activate(): |