Skip to content

Instantly share code, notes, and snippets.

@7hoenix
Created June 24, 2015 05:50
Show Gist options
  • Save 7hoenix/cdfa8652d417864cfcd4 to your computer and use it in GitHub Desktop.
Save 7hoenix/cdfa8652d417864cfcd4 to your computer and use it in GitHub Desktop.
self directed study for mod 1 intersession
hours = 11
pomodoros_per_hour = 2
days = 6
original_pomodoros = hours * pomodoros_per_hour * days
pomodoros_remaining = original_pomodoros
vim_pomodoros = original_pomodoros / 6
#Vim:
#Tutorial
vim_pomodoros -= 4
#Setup.
vim_pomodoros -= 2
#optimization.
vim_pomodoros -= 4
#Practice
vim_practice = vim_pomodoros
pomodoros_remaining -= vim_pomodoros
# Ruby API
#Read through all Ruby docs and pick out top methods that seem interesting
# put into list
pomodoros_remaining -= 8
# play with methods that seem interesting from list
pomodoros_remaining -= 24
# Skim / speed read eloquent ruby, well grounded rubyist
pomodoros_remaining -= 8
# Set up Anki deck
pomodoros_remaining -= 8
# Pair with mentors
# 2 sessions per days
pomodoros_remaining -= 12
# work on personal project
# one morning or afternoon sessions
pomodoros_remaining -= 8
# enumerables Practice
# one morning or afternoon sessions
pomodoros_remaining -= 8
# read 1000 lines of code daily
pomodoros_remaining -= 6
# homework
pomodoros_remaining
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment