Skip to content

Instantly share code, notes, and snippets.

View babuilyas's full-sized avatar
🏠
Working from home

Muhammad Ilyas babuilyas

🏠
Working from home
  • SAPfever Consulting
  • Dubai, UAE
View GitHub Profile
@babuilyas
babuilyas / claude.md
Created February 10, 2026 08:01 — forked from OmerFarukOruc/claude.md
AI Agent Workflow Orchestration Guidelines

AI Coding Agent Guidelines (claude.md)

These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.


Operating Principles (Non-Negotiable)

  • Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
  • Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
This notepad belongs to twt-ehp6 working.
@babuilyas
babuilyas / regex samples
Last active September 29, 2022 06:15
Regex quick snippets
find and replace a character in text comparing leading and trailing text.
(?<=\d+),(?=\d+)
Demo:
https://regex101.com/r/eINbxm/1
find and replace comments in the end of abap code after period.
(?!.\S)(".+)
@babuilyas
babuilyas / merge.py
Last active November 23, 2021 06:36
merge excel files and group soure files into separate folders
# merge excel files and group soure files into separate folders
# created by Ilyas
import os
import pandas as pd
import shutil
cwd = os.path.abspath('')
files = os.listdir(cwd)
df = pd.DataFrame()