Skip to content

Instantly share code, notes, and snippets.

View ifundeasy's full-sized avatar

Afa ifundeasy

  • Depok
View GitHub Profile
@ifundeasy
ifundeasy / CLAUDE_INIT.md
Last active June 26, 2026 11:21
Interactive Claude Code project bootstrap: scans your repo and generates a role-tailored .claude/ scaffold.

CLAUDE_INIT.md

Purpose: An interactive, role-aware, evidence-driven bootstrap prompt for Claude Code. Drop this file at a repo root and run it. Claude Code will interview you (role, scope, depth, posture, connectors), scan the whole project, derive the rules / agents / memory the repo actually needs, then generate a .claude/ (and/or ~/.claude/) setup tailored to your role — not generic boilerplate.

cd <your-repo>
@ifundeasy
ifundeasy / .bashrc
Last active December 23, 2023 17:06
Bash PS1
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
export PS1='\[\e[0;38;5;215m\]\t \[\e[0m\]\u\[\e[0;38;5;246m\]@\[\e[0;38;5;38m\]\h\[\e[0;38;5;246m\]:\[\e[0;38;5;133m\]\W \[\e[0;38;5;42m\]$(git branch 2>/dev/null | grep '"'"'^*'"'"' | sed "s/$/ /" | colrm 1 2)\[\e[0m\]$\[\e[0m\] '
export PS1='\[\e[0;35;215m\]\t \[\e[36m\]\W \[\e[0;35;42m\]$(git branch 2>/dev/null | grep '"'"'^*'"'"' | sed "s/$/ /" | colrm 1 2)\[\e[0m\]$\[\e[0m\] '
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
{
"basics": {
"name": "Syaefudin",
"label": "Software Engineer",
"image": "https://avatars.githubusercontent.com/u/1909133?v=4",
"email": "ifundeasy@gmail.com",
"phone": "+6282229199939",
"url": "https://gitlab.com/ifundeasy",
"summary": "Developer who can build software from the ground up (full-stack). Work with product focussed who prioritizes user feedback first and foremost.",
"profiles": [
@ifundeasy
ifundeasy / infinite.js
Last active April 1, 2020 09:59
Infinite theory
while (true) {
console.log(new Date())
}