9

worst part of programming is knowing what needs to happen, having an idea of the logic that needs to run, but having absolutely no idea how to get that logic implemented.

Been staring at my screen for 30 minutes at this point starting to type a function, then deleting it realizing that method won't work, trying another one before deleting that one as well, over and over and over again

I'm about to just close this damn thing and play Minecraft for an hour, maybe a mindless Minecraft break will help.

Comments
  • 9
    Your current part to implement is too big. Split it into more pieces and try again.
  • 2
    @Oktokolo exactly,
    When u stare so lon at the screen that means that the task that u ask ur brain to acheive require more RAM. Split the task into blocks then every blocks into smaller. (Usually those blocks are the classes and the inner blocks are their methods)
    Then u write their signature,
    Then write every one alone.

    Dont do what u are doing, it will kill ur selfesteem and make u hate prgramming.
Add Comment