Skip to content

Instantly share code, notes, and snippets.

@changemewtf
Last active November 16, 2016 22:52
Show Gist options
  • Save changemewtf/6797808214eb6de91d8ee54391ca4310 to your computer and use it in GitHub Desktop.
Save changemewtf/6797808214eb6de91d8ee54391ca4310 to your computer and use it in GitHub Desktop.
What now?

What now?

  1. Am I able to focus?

    1. Are there distractions I can get rid of? a. Silence phone a. Close irrelevant browser tabs and windows
    2. In the last 30 minutes, have I... a. Stepped away from the screen
    3. In the last two hours, have I... a. Drank some water a. Ate food a. Taken a nap a. Gone for a walk
  2. Do I have a clean working environment?

    1. Is my code formatted consistently?
      1. Are my indents consistent? (increase after every {, decrease after every })
    2. Do I have any syntax errors?
      1. Are all of my curly braces closed? (every { has a })
      2. Are all of my tags closed? (every <a> has a </a>)
    3. Is my code clean and error-free?
      1. HTML
        1. Are all attributes inside the opening tag? <a href="google.com">
      2. JavaScript
        1. Have I checked the console?
        2. Are there any errors? a. Have I Googled them?
      3. CSS
        1. Have I inspected the element in question?
    4. Am I editing the right file?
    5. Have I saved my progress?
    6. Have I refreshed my browser?
  3. Have I picked a requirement to focus on?

    1. Can I break it down further?
    2. Have I done anything similar to this task before?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment