Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: Did you ever find yourself unable to solve what should be a simple programming problem?

  1. #1
    Member
    Join Date
    May 2013
    Posts
    106
    My Mood
    Amused
    Thanks
    16
    Thanked 9 Times in 9 Posts

    Default Did you ever find yourself unable to solve what should be a simple programming problem?

    Like, not even something terribly mind bendingly difficult. I mean some real basic stuff. I don't mean that you can't figure out the syntax of a certain command or function; that's easy enough to look up. I mean like your brain is such complete cottage cheese that you can't do the most elementary problem solving.

    I hate when that happens. Sometimes I find it happens because I've been going too long and I'm like a car that ran out of gas. Sometimes it's because I just solved a difficult problem and I'm like a car that just overheated.

    I guess I better take a break.


  2. #2
    Junior Member
    Join Date
    Sep 2013
    Posts
    5
    Thanks
    1
    Thanked 1 Time in 1 Post

    Default Re: Did you ever find yourself unable to solve what should be a simple programming problem?

    I think this is normal, maybe a mental fatigue and therefore have a significant impact on the activity concentration. I've heard that productivity falls after a long non-stop work period of time, and may even become negative and the developer may add more bugs than features if he's working on a big project for a very long time without breaks. So I think if you just put some small breaks in the middle when you feel tired,it will be much better after the break, even if it's for few minutes.

  3. #3
    Forum VIP
    Join Date
    Jul 2010
    Posts
    1,676
    Thanks
    25
    Thanked 329 Times in 305 Posts

    Default Re: Did you ever find yourself unable to solve what should be a simple programming problem?

    Yeah, it's true for everyone.
    There are two bits of advice I can give:
    1. Walk away for awhile (if you can). Just because you are not actively thinking about the problem doesn't mean your brain is not still working on it. You'd be surprised how many times I've come up to a solution to a problem after a good night's sleep or even a bathroom break. I've found I come up with the solutions to the hardest problems when I'm not thinking about the problem.
    2. Break the problem down to its most basic components. Continue to break it down until you can't anymore, then make a plan for tackling each component individually, then figure out how to tie together all of those plans, and only then, after you've figured out your overall plan, should you consider implementing it.
    NOTE TO NEW PEOPLE LOOKING FOR HELP ON FORUM:

    When asking for help, please follow these guidelines to receive better and more prompt help:
    1. Put your code in Java Tags. To do this, put [highlight=java] before your code and [/highlight] after your code.
    2. Give full details of errors and provide us with as much information about the situation as possible.
    3. Give us an example of what the output should look like when done correctly.

    Join the Airline Management Simulation Game to manage your own airline against other users in a virtual recreation of the United States Airline Industry. For more details, visit: http://airlinegame.orgfree.com/

  4. #4
    Member
    Join Date
    May 2013
    Posts
    106
    My Mood
    Amused
    Thanks
    16
    Thanked 9 Times in 9 Posts

    Default Re: Did you ever find yourself unable to solve what should be a simple programming problem?

    Quote Originally Posted by aussiemcgr View Post
    Yeah, it's true for everyone.
    There are two bits of advice I can give:
    1. Walk away for awhile (if you can). Just because you are not actively thinking about the problem doesn't mean your brain is not still working on it. You'd be surprised how many times I've come up to a solution to a problem after a good night's sleep or even a bathroom break. I've found I come up with the solutions to the hardest problems when I'm not thinking about the problem.
    Indeed. For this particular problem, I left my computer and went off to the gym for my daily exercise, a process which takes about 90 minutes (30 minutes travel to and from the gym, and an hour on the treadmill). The solution came about 15 minutes into my workout. I didn't have anything to write it down with, so I forgot 10 minutes later, remembered 10 minutes after that, and sorta went into that cycle for a while until I was back home and did have the opportunity to write it down and eventually implement it.

    The specific problem involved PHP, not Java, and the question was this: "How do I set up a series of hyperlinks that reloads the same page, but after the reload the page knows which hyperlink was clicked?" I knew that you could do some stuff involving GET and using the query string, but my brain just wasn't putting 2 and 2 together.

    2. Break the problem down to its most basic components. Continue to break it down until you can't anymore, then make a plan for tackling each component individually, then figure out how to tie together all of those plans, and only then, after you've figured out your overall plan, should you consider implementing it.
    I find that in most cases of mental degeneration, I can't even do that. Breaking stuff down goes better when I'm more fresh.

Similar Threads

  1. how do i solve this programming problem in dr java?
    By jennavg in forum What's Wrong With My Code?
    Replies: 4
    Last Post: April 8th, 2013, 12:22 PM
  2. Replies: 1
    Last Post: March 21st, 2013, 06:57 AM
  3. [SOLVED] Easy error to solve in a minute. Help please, I don't want to fail Java Programming again.
    By ihatejava in forum What's Wrong With My Code?
    Replies: 6
    Last Post: November 15th, 2012, 04:30 PM
  4. Replies: 4
    Last Post: August 10th, 2011, 11:16 AM
  5. My code have a simple error but i dont know how to solve it !!!
    By Blackhawk1993 in forum What's Wrong With My Code?
    Replies: 6
    Last Post: March 17th, 2011, 01:12 PM