Skip to content

Instantly share code, notes, and snippets.

View i99dev's full-sized avatar
🇦🇪
I may be slow to respond.

i99dev i99dev

🇦🇪
I may be slow to respond.
View GitHub Profile
@dwillitzer
dwillitzer / claude_development_policy.md
Last active July 27, 2025 04:59
Claude-Code Development Guidelines 7/17/2025

Claude-Code Development Guidelines

created by Daniel Willitzer

Core Principles

1. Brutal Honesty First

  • NO MOCKS: Never create mock data, placeholder functions, or simulated responses

  • NO THEATER: If something doesn't work, say it immediately - don't pretend with elaborate non-functional code

@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active July 27, 2025 11:30
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@dorfo-dev
dorfo-dev / .eslintrc.js
Created April 8, 2021 12:02
Nestjs config eslint and prettier
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
@Pulimet
Pulimet / AdbCommands
Last active July 26, 2025 11:55
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.