Skip to content

Instantly share code, notes, and snippets.

@ivangarzab
ivangarzab / .zshrc
Last active February 10, 2026 01:49
Terminal Setup
# ============================================
# Minimal zsh Configuration
# ============================================
# --- Basic zsh settings ---
setopt AUTO_CD # Type directory name to cd into it
setopt HIST_IGNORE_DUPS # Don't save duplicate commands in history
setopt SHARE_HISTORY # Share history across all terminals
HISTFILE=~/.zsh_history
HISTSIZE=10000
@executeautomation
executeautomation / openclaw.json
Created February 2, 2026 16:56
OpenClaw + Ollama + gpt-oss:20b configuration
{
"meta": {
"lastTouchedVersion": "2026.1.30",
"lastTouchedAt": "2026-02-01T16:48:36.938Z"
},
"wizard": {
"lastRunAt": "2026-02-01T16:48:36.935Z",
"lastRunVersion": "2026.1.30",
"lastRunCommand": "onboard",
"lastRunMode": "local"
@Sn0wo2
Sn0wo2 / example.py
Created February 4, 2026 18:57
Masque key
import base64
from cryptography.hazmat.primitives import serialization
from cryptography.hazmat.primitives.asymmetric import ec
private_key = ec.generate_private_key(ec.SECP256R1())
private_bytes = private_key.private_bytes(
encoding=serialization.Encoding.DER,
format=serialization.PrivateFormat.TraditionalOpenSSL,
encryption_algorithm=serialization.NoEncryption()
@lowkingshih
lowkingshih / 00-complete-guide.md
Created February 7, 2026 03:49
OpenClaw 完整研究報告:架構分析、比較報告、自我擴展 Agent 系統

OpenClaw 完整架構指南

本文檔旨在讓你幾乎不需要查看 Source Code,就能完全理解 OpenClaw 這個開源 AI Agent 系統。


目錄

  1. 概述與定位
  2. 整體架構
@nakamuraos
nakamuraos / reset-trial-navicat.sh
Last active February 10, 2026 01:41
Reset trial Navicat 15, Navicat 16, Navicat 17 on Linux
#!/bin/bash
set -euo pipefail
# Author: NakamuraOS <https://github.com/nakamuraos>
# Latest update: 03/19/2025
# Tested with Navicat 15.x, 16.x, and 17.x on Debian and Ubuntu.
BGRED="\e[1;97;41m"
ENDCOLOR="\e[0m"
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active February 10, 2026 01:38
Conventional Commits Cheatsheet
@emschwartz
emschwartz / README.md
Last active February 10, 2026 01:36
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.

A Quick Guide to Big-O Notation, Memoization, Tabulation, and Sorting Algorithms by Example

Curating Complexity: A Guide to Big-O Notation


A Quick Guide to Big-O Notation, Memoization, Tabulation, and Sorting Algorithms by Example

Curating Complexity: A Guide to Big-O Notation

@digitalknk
digitalknk / config-example-guide.md
Last active February 10, 2026 01:33
OpenClaw Config Example (Sanitized)

OpenClaw Config Example - Usage Guide

This sanitized config shows the key settings referenced in the OpenClaw guide.

Quick Start

  1. Copy config-example.json to ~/.openclaw/openclaw.json
  2. Replace all YOUR_* placeholders with real values
  3. Run openclaw doctor --fix to validate
  4. Run openclaw security audit --deep to check for issues
@dangayle
dangayle / install_packages.sh
Created December 25, 2025 01:47
macOS bulk installer for audio plugins, etc.
#!/bin/bash
# Global variables for cleanup
MOUNT_POINTS=()
TEMP_DIRS=()
INSTALLED=()
FAILED=()
# Verbose flag (default is quiet). Use `--verbose` or `-v` to enable.
VERBOSE=0