Skip to content

Instantly share code, notes, and snippets.

View ameyxd's full-sized avatar
🎯
Focusing

Amey Ambade ameyxd

🎯
Focusing
View GitHub Profile
@jdc-cunningham
jdc-cunningham / linkedin-filter-web-console.js
Last active September 10, 2024 12:22
Filter LinkedIn jobs
let blockedCompanies = [
"Motion Recruitment"
"Horizontal Talent"
"REI Systems"
"Jobot Consulting"
"CyberCoders"
"Calyptus"
"INSPYR Solutions"
"TTEC Digital"
"Sphera"
@raftheunis87
raftheunis87 / hyperjs.md
Last active April 21, 2025 08:26
Hyper.js + Hyper.js Plugins + ZSH + Starship + Fira Code + Dark Theme - (macOS)

Hyper.js

@swyxio
swyxio / .gitignore_global
Last active April 28, 2025 13:23
my dotfiles - more info here https://www.swyx.io/new-mac-setup
.DS_Store
._.DS_Store
**/.DS_Store
**/._.DS_Store
.vscode
.idea
Thumbs.db
# used to need to run git config --global core.excludesfile ~/.gitignore_global to set this but apparently no longer needed https://x.com/bate5a55/status/1840594630972191118
@wojteklu
wojteklu / clean_code.md
Last active May 20, 2025 17:39
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules