| ▲ | shepherdjerred 11 hours ago | |||||||
I hardly ever open an IDE anymore. I use Claude Code and Cursor. What I do: - use statically typed languages: TypeScript, Go, Rust, Python w/ types - Setup linters. For TS I have a bunch of custom lint rules (authored by AI) for common feedback that I've given. (https://github.com/shepherdjerred/monorepo/tree/main/package...) - For Cursor, lots of feedback on my desired style. https://github.com/shepherdjerred/scout-for-lol/tree/main/.c... - Heavy usage of plan mode. Tell AI something like "make at least 20 searches to online documentation", support every claim with a reference, etc. Tell AI "make a task for every little thing you'll implement" - Have the AI write tests, particularly the more expensive ones like integration and end-to-end, so you have an easy way to verify functionality. - Setup Claude Code GHA to automatically review PRs. Give the review feedback to the agent that implemented it, either via copy-pasting or tell the agent "fetch review comments and fix them". Some examples of what I've made: - Many features for https://scout-for-lol.com/, a League of Legends bot for Discord - A program to generate TypeScript types for Helm charts (https://github.com/shepherdjerred/homelab/tree/main/src/helm...) - A program to summarize all of the dependency updates for my Homelab (https://github.com/shepherdjerred/homelab/tree/main/src/deps...) - A program to manage multiple instances of CLI agents like Claude Code (https://github.com/shepherdjerred/monorepo/tree/main/package...) - A Discord AI bot in the style of my friends (https://github.com/shepherdjerred/monorepo/tree/main/package...) | ||||||||
| ▲ | throw2312321 4 hours ago | parent | next [-] | |||||||
Thanks for sharing. So the dumb question - do you feel like Claude Code & Cursor have made you significantly more productive? You have an impressive list of personal projects, and I can see how a power user of AI tools can be very effective with green field projects. Does the productivity boost translate as well to your day job? | ||||||||
| ||||||||
| ▲ | BhavdeepSethi 7 hours ago | parent | prev | next [-] | |||||||
Cursor is an IDE. | ||||||||
| ||||||||
| ▲ | moffkalast 9 hours ago | parent | prev [-] | |||||||
> make at least 20 searches to online documentation Lol sometimes I have to spend two turns convincing Claude to use its goddamn search and look up the damn doc instead of trying to shoot from the hip for the fifth time. ChatGPT at least has forced search mode. | ||||||||
| ||||||||