Skip to content

Instantly share code, notes, and snippets.

View moirisca's full-sized avatar

BlAcK CaT moirisca

  • Somewhere in the blue marble
View GitHub Profile

Building Claude Code from Source

Step-by-step guide for building the Claude Code CLI from the alesha-pro/claude-code repository — leaked Anthropic Claude Code source code.

Requirements

  • Linux (Ubuntu 22.04+) or macOS
  • 4GB RAM, 4 CPU cores, 30GB disk
  • Bun >= 1.3
  • Git
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{6FCFE3F7-CD71-4B67-A33B-13371757BA9D}_is1
@moirisca
moirisca / brave-debloat.reg
Created October 27, 2025 21:04 — forked from msenturk/brave-debloat.reg
brave slim debloat
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\BraveSoftware\Brave]
"MetricsReportingEnabled"=dword:00000000
"SafeBrowsingExtendedReportingEnabled"=dword:00000000
"UrlKeyedAnonymizedDataCollectionEnabled"=dword:00000000
"FeedbackSurveysEnabled"=dword:00000000
"AutofillAddressEnabled"=dword:00000000
"AutofillCreditCardEnabled"=dword:00000000
"EnableDoNotTrack"=dword:00000001
@moirisca
moirisca / Windows10AWSEC2.md
Created October 27, 2025 08:09 — forked from peterforgacs/Windows10AWSEC2.md
Running Windows 10 on AWS EC2

Running Windows 10 on AWS EC2

Downloading the image

Download the windows image you want.

AWS vmimport supported versions: Microsoft Windows 10 (Professional, Enterprise, Education) (US English) (64-bit only)

So Home wont work.

@moirisca
moirisca / Exploitation.md
Created June 11, 2025 15:49 — forked from yezz123/Exploitation.md
Pentesting-Exploitation
@moirisca
moirisca / gist:cd17ce8977c96a8c37508335db786cbb
Created April 5, 2025 18:26
Windows 11 bypass online account
shift+F10 after boot
start ms-cxh:localonly
@moirisca
moirisca / .vimrc
Created March 19, 2025 21:03 — forked from rocarvaj/.vimrc
Minimal .vimrc for C/C++ developers
" VIM Configuration File
" Description: Optimized for C/C++ development, but useful also for other things.
" Author: Gerhard Gappmeier
"
" set UTF-8 encoding
set enc=utf-8
set fenc=utf-8
set termencoding=utf-8
" disable vi compatibility (emulation of old bugs)
curl --resolve www.google.com:443:74.125.239.116:443 https://www.google.com
@moirisca
moirisca / web-servers.md
Created June 24, 2024 11:36 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000