Skip to content

Bowizombarht/notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Developer Notes

A collection of valuable resources, bookmarks, and learnings from my development journey.

📚 Recommended Blogs & Websites

General Programming

JavaScript / TypeScript

Rust

Python

💡 Valuable Learning Resources

Roadmaps

Practice Platforms

Open Source

🔧 Useful Tools

VS Code Extensions

  • ESLint
  • Prettier
  • GitLens
  • Live Server
  • Error Lens

Browser Extensions

  • Wappalyzer (tech stack detector)
  • JSON Viewer
  • Vue.js devtools

📖 Best Practices

Code Review

  1. Review PRs actively
  2. Provide constructive feedback
  3. Learn from others' code

Version Control

  • Write meaningful commit messages
  • Use feature branches
  • Keep commits atomic

Documentation

  • Document while fresh
  • Write README files
  • Comment complex logic

🌟 Interesting Projects to Explore

📝 Notes

Git Commands Cheatsheet

# Undo last commit (keep changes)
git reset --soft HEAD~1

# Stash changes
git stash
git stash pop

# Rebase main
git fetch origin
git rebase origin/main

# Interactive rebase
git rebase -i HEAD~n

Docker Commands

# Build image
docker build -t myapp .

# Run container
docker run -p 3000:3000 myapp

# Docker compose
docker-compose up -d

🔗 Useful Links


Contributions welcome! Feel free to submit PRs.

About

Developer notes, bookmarks, and valuable resources

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors