Facebook
From Onur Demirci, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 46
  1. I assume that the problem is about programming. I've recently experienced a problem in JavaScript actually. I was
  2. working on a simple To-Do List App. Everything was fine, except I wasn't able to mark the tasks as completed. My
  3. code was working on the first times but not afterwards.  Firstly, I checked my syntax and it was fine. Than I've
  4. made a research about the error I'm getting. I couldn't find anything because my alghoritm was wrong in the first
  5. place. After I understood that my alghorithm is wrong, I commented my current code and tried to approach the problem
  6. from another perspective. After some struggle, I've managed to develop a new alghorithm that works perfectly. I'd
  7. love to explain the technical stuff about my problem but that answer would be an essay then. Long story short, when
  8. I deal with problems about programming, I follow 4 simple steps:
  9.  
  10. 1 - Check your syntax and correct it if its wrong
  11. 2 - Do a research about the problem on internet and try the plausible solutions
  12. 3 - Check your alghorithm if its true and try to fix it
  13. 4 - Start over if nothing works