FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
I Switched From VS Code to the Terminal for a Month. I'm Not Going Back (For These 5 Tasks).
NewsTools

I Switched From VS Code to the Terminal for a Month. I'm Not Going Back (For These 5 Tasks).

via Dev.toMatthew Hou1mo ago

I didn't quit VS Code. But I stopped using it for everything. After a month of forcing myself to use terminal tools, I found 5 specific tasks where the terminal is objectively faster. Not "cooler." Faster. Task 1: Searching Code VS Code: Ctrl+Shift+F → type query → wait for results → click through files → lose my place → search again. Terminal (ripgrep): # Find all API endpoints that don't have auth middleware $ rg "app \. (get|post|put|delete)" --glob "*.ts" -l | \ xargs rg -L "authMiddleware" # Find all TODO comments with the author $ rg "TODO|FIXME|HACK" --glob "*.{ts,tsx}" -n --heading # Find where a function is defined vs where it's used $ rg "function calculateTax" -l # defined in $ rg "calculateTax \( " -l # used in # Find files changed in the last commit that contain a pattern $ git diff --name-only HEAD~1 | xargs rg "console \. log" ripgrep is 5-10x faster than VS Code search on large codebases. It respects .gitignore by default. And the output is instantly pipeable to other c

Continue reading on Dev.to

Opens in a new tab

Read Full Article
25 views

Related Articles

Most scientific models assume the system already exists.
News

Most scientific models assume the system already exists.

Medium Programming • 2d ago

Why 90% of Claude Code Users Are Missing Its Most Powerful Feature ‍♂️
News

Why 90% of Claude Code Users Are Missing Its Most Powerful Feature ‍♂️

Medium Programming • 2d ago

A Review on Language Models as Knowledge Bases
News

A Review on Language Models as Knowledge Bases

Dev.to • 2d ago

Observa 0.2.0: Dashboards, Alerting, Backups, and Data Export
News

Observa 0.2.0: Dashboards, Alerting, Backups, and Data Export

Medium Programming • 2d ago

Samsung Galaxy Buds 4 Pro vs. Bose QuietComfort Ultra 2: I tested both, and here's the winner
News

Samsung Galaxy Buds 4 Pro vs. Bose QuietComfort Ultra 2: I tested both, and here's the winner

ZDNet • 2d ago

Discover More Articles