Skip to content

Instantly share code, notes, and snippets.

@barrachri
Created January 7, 2016 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barrachri/9045e79a0fb562601ff2 to your computer and use it in GitHub Desktop.
Save barrachri/9045e79a0fb562601ff2 to your computer and use it in GitHub Desktop.
code for ep2016
TALK_TYPE = (
('t_30', 'Talk (30 mins)'),
('t_45', 'Talk (45 mins)'),
('t_60', 'Talk (60 mins)'),
('i_60', 'Interactive (60 mins)'),
('r_180', 'Training (180 mins)'),
('p_180', 'Poster session (180 mins)'),
('p_60', 'Panel (60 mins)'),
('p_90', 'Panel (90 mins)'),
('h_180', 'Help desk (180 mins)'),
)
DURATION = {
't_30': 30,
't_45': 45,
't_60': 60,
'i_60': 60,
'r_180': 180,
'p_180': 180,
'p_60': 60,
'p_90': 90,
'h_180': 180,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment