Skip to content

Instantly share code, notes, and snippets.

View simonoff's full-sized avatar
💭
KUBER!!!!

Oleksandr Simonov simonoff

💭
KUBER!!!!
View GitHub Profile
@simonoff
simonoff / net_http_debug.rb
Created November 17, 2022 10:00 — forked from brainlid/net_http_debug.rb
Enable debug for all Ruby HTTP requests
require 'net/http'
module Net
class HTTP
def self.enable_debug!
class << self
alias_method :__new__, :new
def new(*args, &blk)
instance = __new__(*args, &blk)
instance.set_debug_output($stderr)
instance
@simonoff
simonoff / openclaw-config-sanitized.json
Created February 7, 2026 16:28 — forked from assada/openclaw-config-sanitized.json
OpenClaw configuration example (tokens sanitized)
{
"meta": {
"lastTouchedVersion": "2026.2.6-3",
"lastTouchedAt": "2026-02-07T12:27:15.401Z"
},
"wizard": {
"lastRunAt": "2026-02-06T10:50:01.627Z",
"lastRunVersion": "2026.2.3-1",
"lastRunCommand": "doctor",
"lastRunMode": "local"