Uses
A detailed look at the tools, apps, and configurations I use for development and content creation.
This page is regularly updated to reflect my current setup. Feel free to reach out if you have any questions about specific tools or configurations.
Development Workstation
My current hardware setup for coding and content creation.
16GB RAM, 1TB SSD - My main development machine
27-inch 4K USB-C monitor for extended workspace
Wireless mechanical keyboard with Gateron Brown switches
Noise-canceling headphones for focused work
Development Environment
The tools and software I use for coding.
Visual Studio Code
v1.85My primary code editor with custom configuration
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
- GitLens
- ESLint
- Prettier
- JavaScript (ES6) Code Snippets
- Material Icon Theme
- Auto Rename Tag
- Path Intellisense
- Docker
- Live Share
Terminal setup with custom theme and plugins
# ~/.zshrc
plugins=(git npm node docker)
ZSH_THEME="agnoster"
# Custom aliases
alias dc="docker-compose"
alias gc="git commit"
alias gp="git push"
- git
- npm
- docker
- node
- zsh-autosuggestions
- zsh-syntax-highlighting
Browsers & Testing
Setup for web development and testing.
Google Chrome
Primary development browser
- React Developer Tools
- Redux DevTools
- uBlock Origin
- JSON Formatter
- Wappalyzer
Development Tools
Additional software and tools I use regularly.
Docker
For containerization and consistent development environments
version: '3'
services:
web:
build: .
ports:
- "3000:3000"
volumes:
- .:/app
Postman
API testing and documentation
Productivity Apps
Tools that help me stay organized and productive.
Notion
Documentation, notes, and project management
Rectangle
Window management with custom shortcuts
# Custom Rectangle Shortcuts
Maximize: CMD + SHIFT + M
Left Half: CMD + ALT + LEFT
Right Half: CMD + ALT + RIGHT
Audio Setup
My audio equipment for meetings and content creation.
Blue Yeti X
USB condenser microphone for recording and calls
Need More Details?
You can find all my configuration files and dotfiles on my GitHub. Feel free to clone, fork, or ask questions about any part of my setup.
View on GitHub