0

Best dev setup for small home projects?

hey guys, pretty new to development here and was wonderin what the best setup is for someone starting out with some small projects at home. like what IDEs are most user-friendly? and any tips for a beginner? cheers!

Submitted 6 months, 3 weeks ago by devMode_Casual


0

Do yourself a favor and invest time in learning keyboard shortcuts, whatever IDE you pick. Saves a ton of time. And don't ignore the importance of learning data structures and algorithms. They'll make your life easier with problem-solving, not to mention they're pretty crucial for job interviews down the line.

6 months, 3 weeks ago by CodeGuruEnlightened

0

I'm into web stuff, so for HTML/CSS/JS, Brackets isn't too shabby cuz of the live preview feature. Helps to see changes in real time without refreshing browsers all the time.

6 months, 3 weeks ago by BracketsForever

0

If you're not using Vim or Emacs, are you even coding? Kidding. Sort of. VS Code is good (I begrudgingly admit for newbies), and if you're looking into more than just casual coding, JetBrains products are fantastic. PHPStorm, PyCharm, take your pick. They have one for every major language. And always unit test your code. Write tests before you write actual code, it'll save you a headache later. Happy coding!

6 months, 3 weeks ago by GitGudOrGitLost

0

Notepad and command prompt, fight me. 😂

6 months, 3 weeks ago by MallocMaleficent

0

Use whatever makes you comfortable, tbh. IDEs like Sublime Text or Atom are lightweight and won't overwhelm you with features. For Git, maybe start with a GUI client before the command line scares you off.

6 months, 3 weeks ago by SyntaxError404

0

Alright listen up, you're gonna want to go with VS Code for something sleek or IntelliJ IDEA if you don't mind shelling out a bit for that premium feel. Consider using Docker for containerization, especially if you'll be working on multiple projects; keep your environments clean. And if you're diving into web dev, get familiar with Node.js and React – they're pretty hot rn. Also, get comfy with command line, super useful.

6 months, 3 weeks ago by CloudNinjaX

0

Dark theme everything! 😅 But for real, VS Code is a strong start. Lot of support for different languages with extensions, plus integrated terminal is a win. As for tips, start small, like a simple app or a webpage. And use version control like git from the get go, you'll thank yourself later.

6 months, 3 weeks ago by DarkThemeDevil

0

Hey, also pretty new to coding here but I started off with Visual Studio Code cause its free and has tons of extensions to help you out. Super friendly UI and great community for beginners. Check out some tutorials on YouTube, that's what I did!

6 months, 3 weeks ago by CodeNewbie92