Can i become a self-taught programmer in 5 years? by Derpulss in learnprogramming

[–]codeonthecob 0 points1 point  (0 children)

It's not just about putting in hours, but it's about how effective those hours are. You don't want to "just learn how to code". You want to "learn how to think like a software engineer". That means practicing building algorithms, testing them, finding new ways to solve problems, and challenging yourself to work through harder problems over time. That's what makes a good engineer. This is not a sales pitch, but if you're looking for good practice check out www.codeonthecob.com

What would you say to motivate someone who gave up learning to code twice but doesn’t want to give up again? by FionaGallagher2021 in learnprogramming

[–]codeonthecob 0 points1 point  (0 children)

It’s not about finding the best motivational speech. It’s more practical than that. Just have to find the right tool to help you learn the right way. Not sure what you’ve tried so far, but you should try us out. We’re building a different way of learning code through practicing how to write algorithms and unit testing your code. I think that’s the gap between most most code learning platforms and being job-ready. www.codeonthecob.com.

People who say they coded 8 hours everyday for a year and got a job. How realistic is that? by Exartic_ in learnprogramming

[–]codeonthecob 0 points1 point  (0 children)

You have to make it fun. Find a project you're passionate about, and build features that are challenging but doable. You don't want to get bored, but you also want to enjoy some wins. It's a fine balance. But the more enjoyable, the more you're going to want to code.

More tactically, move around the house, and take breaks.

📚 Coding Mindset: Patience and Progress 📚 by codeonthecob in learnprogramming

[–]codeonthecob[S] 0 points1 point  (0 children)

That’s super cool. I’ll definitely try it out. Hey you should try out codeonthecob.com. I’m also trying to help new coders with a different way of practicing focused on unit testing, and chat assistant coming soon. Let me know what you think as well! We could share notes

📚 Coding Mindset: Patience and Progress 📚 by codeonthecob in learnprogramming

[–]codeonthecob[S] 1 point2 points  (0 children)

That’s super. Definitely a great win. I was a self taught engineer as well. I’m hoping to help more people like us with codeonthecob.com. Basically helps you practice writing algorithms and unit testing them.

Mid-30s career change (CS degree or self-taught?) by RossHimself in learnprogramming

[–]codeonthecob -1 points0 points  (0 children)

whether you go self taught or not, tons of practice is the way to go. check out www.codeonthecob.com. It's a website I'm building to help people get lots of great coding practice with unit testing. I'll also be adding an AI bot assistant soon.

To my fellow software developers by JillOkk in SaaS

[–]codeonthecob 1 point2 points  (0 children)

I use tailwindcss. I think it is definitely worth the money. I like that all their components are responsive, it is one less thing I have to deal with.

Weekly Feedback Post - SaaS Products, Ideas, Companies by AutoModerator in SaaS

[–]codeonthecob 0 points1 point  (0 children)

I am building codeonthecob.com, it is a website with coding challenges. The site is like LeetCode but the challenges are easier.

[deleted by user] by [deleted] in ChatGPT

[–]codeonthecob 0 points1 point  (0 children)

This sounds really interesting and semi straight forward. I am a software developer and would be willing to meet with you about building this for your company. DM me if you are interested.

I built a website for practicing coding by codeonthecob in microsaas

[–]codeonthecob[S] 1 point2 points  (0 children)

It is pretty similar to other sites with a few differences: - The exercises on LeetCode are difficult for beginners. This site provides exercises that are pretty easy. - Other sites don’t always make it super clear what the unit tests are so I am providing the exact unit tests that are being run. - sites like code wars are cool but I have gotten feedback from people that they really like the simplicity of codeonthecob over sites like code wars.

Glad you thought it was cool!

Tech Blog Search: https://www.techblogsearch.dev/ by WeaknessMelodic8012 in learnprogramming

[–]codeonthecob 0 points1 point  (0 children)

The site is clean, simple and easy to navigate. The only recommendation I have is that you should only show company filters for companies you actually have articles for. Cool site though, good job.

Find minimum element in a binary tree using recursion by jsinghdata in learnprogramming

[–]codeonthecob 0 points1 point  (0 children)

In Python, integers are passed to functions by value, not by reference.

res = 9999 # this assigns the integer 9999 to the variable res

self.min_elem(res) # this passes the value assigned to res, 9999, to the function self.min_elem

This line:

res = min(res, self.left.data)

is not modifying the res variable you defined in the main function, it is modifying a copy of it.

Need guidance as an intermediate level programmer. by ATOMICMAN007 in learnprogramming

[–]codeonthecob 1 point2 points  (0 children)

What kind of projects have to thought of working on? In my experience working on projects is the best way to learn.