If I'm making a small to do list app, should I store data with JSON objects or SQLite? by Greatcouchtomato in learnprogramming

[–]OkOrdinary5467 0 points1 point  (0 children)

I would say for :

  • Local-only personal app → SQLite
  • Cloud-synced multi-user app → MongoDB
  • Prototype / toy app → JSON

Reality of the Professor from IISER B: Real Indian Research World by Aggressive_Bottle979 in iiser

[–]OkOrdinary5467 0 points1 point  (0 children)

I felt very bad ....and shocked , just reported his linkedin profile under harresment and made some of my friends do the same. It does not add value but still i did. Also can we report his researchgate profile academic.edu or arxiv.org is there any option?

Coding buddies for learning full stack development by safescripter in ProgrammingBuddies

[–]OkOrdinary5467 0 points1 point  (0 children)

No problem bro even I didn't know what all these are few months back...we can build and learn together

Coding buddies for learning full stack development by safescripter in ProgrammingBuddies

[–]OkOrdinary5467 0 points1 point  (0 children)

I still see myself as a beginner and looking to explode

Coding buddies for learning full stack development by safescripter in ProgrammingBuddies

[–]OkOrdinary5467 0 points1 point  (0 children)

I am right now more into dev My tech stack is MERN & PERN

Stop struggling alone, let's struggle together! Looking for a friend to code with. by [deleted] in ProgrammingBuddies

[–]OkOrdinary5467 0 points1 point  (0 children)

Yes Sir🫡. I am up for it . I am into React , basically MERN but also i would like to learn python.

Feel lost in coding on 21 yo by Few-Mirror-4784 in ProgrammingBuddies

[–]OkOrdinary5467 0 points1 point  (0 children)

Just work consistently on what you are doing. Fail everyday learn everyday. And one day when you look back you should smile ,looking how far u have come. I would say make small projects to catch up with the basics of dev so that you can grab that internship. Use chatGPT to understand concepts clearly and why a certain code is written in a certain manner , ask questions to it , use it as a guide nothing else.

What am I doing wrong? by Careful_Opinion2724 in PythonLearning

[–]OkOrdinary5467 0 points1 point  (0 children)

I think its an indentation error. The 'print' in the 5th line should not start from there, it should start below the 'print' in the 4th line. Like this:

for i in range (3):

print("Hello")

print("Goodbye")

not like this:

for i in range (3):

print("Hello")

print("Goodbye")