Skip to content

Instantly share code, notes, and snippets.

@Shaah
Shaah / hooman-guide.md
Created May 29, 2026 22:15 — forked from hooman/hooman-guide.md
The Hooman Method — my attempt at capturing and formalizing how I use and combine chat and coding agents across my projects.

The Hooman Method — Operating Guide

How to run the method. The reasoning, provenance, and references live in the companion: hooman-notes.md (same gist).

Status: Draft v0.7 (2026-05-29). Frames the method as an escalation protocol (explore informally below the threshold; add structure only once re-entry / delegation / review / mutation-safety begin to bite); moves scale-to-stakes to the front as the first decision; adds a scope-intake gate (name the smallest useful slice or decompose — big is allowed, undefined is not), kill criteria for the friction audit, a process-as-avoidance failure mode, and a visible-artifacts-over-opaque-memory rule. A compress-and-clarify pass, not new machinery. Full changelog in the companion.

Canonical version: https://gist.github.com/hooman/5811ee3bb7c235573299400167403985. Local copies may lag; treat the gist as authoritative.


@hooman
hooman / hooman-guide.md
Last active May 29, 2026 22:15
The Hooman Method — my attempt at capturing and formalizing how I use and combine chat and coding agents across my projects.

The Hooman Method — Operating Guide

How to run the method. The reasoning, provenance, and references live in the companion: hooman-notes.md (same gist).

Status: Draft v0.7 (2026-05-29). Frames the method as an escalation protocol (explore informally below the threshold; add structure only once re-entry / delegation / review / mutation-safety begin to bite); moves scale-to-stakes to the front as the first decision; adds a scope-intake gate (name the smallest useful slice or decompose — big is allowed, undefined is not), kill criteria for the friction audit, a process-as-avoidance failure mode, and a visible-artifacts-over-opaque-memory rule. A compress-and-clarify pass, not new machinery. Full changelog in the companion.

Canonical version: https://gist.github.com/hooman/5811ee3bb7c235573299400167403985. Local copies may lag; treat the gist as authoritative.


@Shaah
Shaah / bootstrap-em.less
Created March 12, 2018 14:44 — forked from jasny/bootstrap-em.less
Use em or rem font-size in Bootstrap 3
/**
* Use em or rem font-size in Bootstrap 3
*/
@font-size-root: 14px;
@font-unit: 0rem; // Pick em or rem here
// Convert all variables to em
@Shaah
Shaah / normalized.html
Created October 14, 2012 00:56 — forked from scottkellum/normalized.html
pixel normalization
<!doctype html>
<html>
<head>
<!-- Encoding -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"></meta>
@joshbetz
joshbetz / pretty-code-editor.php
Created September 18, 2012 16:31
Add basic <tab>ing ability
<?php
class Pretty_Code_Editor {
function __construct() {
add_action( 'admin_print_styles', array( $this, 'editor_styles' ) );
add_action( 'admin_print_footer_scripts', array( $this, 'tabs' ) );
}
function editor_styles() { ?>