◐ Shell
clean mode source ↗

mbijon - Overview

Pinned Loading

  1. Don't step in lava! Navigate from the bottom-left to the top-right based on the heat of each tile. ARC-AGI-3 challenge game.

    TypeScript 2

  2. VSCode extension to format JSON, JSONC and JSONL for human-readability

    TypeScript

  3. 1

    # Shim the Kimi model by Moonshot into Claude Code

    2

    export ANTHROPIC_AUTH_TOKEN={Your Kimi / Moonshot API key}

    3

    export ANTHROPIC_BASE_URL=https://api.moonshot.ai/anthropic
  4. 1

    # Secrets, Evals, and Unsafe practices

    2

    grep -r "password\|secret\|api_key\|token" /repo -e .env -e .env.local --include="*.ts" --include="*.tsx" --include="*.js" --include="*.jsx" 2>/dev/null | head -20

    3

    grep -r "http://" /repo/src --include="*.ts" --include="*.tsx" 2>/dev/null | grep -v "https://" | head -20

    4

    grep -r "(eval|Function)\(|dangerouslySetInnerHTML|__html|v-html" /repo 2>/dev/null | head -20

    5

    grep -r "public/**/*.html" /repo 2>/dev/null | head -20
  5. 1

    # Here a few bash one-liners that helped me analyze / fight a weak DOS attack against debuggable.com. Mostly for future reference.

    2

    # The attacker was opening lots of tcp connections without sending data, I believe it's called a SYN flood, see: http://tools.ietf.org/html/rfc4987#section-3.2

    4

    # Step 0: Check what is going on at port 80

    5

    $ netstat -tan | grep ':80 ' | awk '{print $6}' | sort | uniq -c
  6. BugHunter plugin for Claude Code. Guess what... it hunts for bugs.

    1