Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add data-driven cut-offs for time-based achievements #126

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@ summary_characteristics as (
select
*,
case
when hour_count <= 1.5 then 'TODO'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'jízdu pražským Céčkem tam a zpátky'

when hour_count <= 3 then 'příjemný film (a pak o něm napsat recenzi)'
when hour_count <= 6 then 'pořádný spánek (a pak napsat argumentativní VŠ esej)'
when hour_count <= 9 then 'půltucet epizod Soudkyně Barbary (a pak napsat dvakrát tolik mstivých ČSFD recenzí)'
when hour_count <= 12 then 'trilogii Problém tří těles (a pak se o něm dva dny písemně hádat na Redditu)'
when hour_count <= 18 then 'všechny Harry Pottery (a pak se týden hádat na Facebooku o transfobii JK Rowling)'
when hour_count <= 24 then 'TODO'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'přednášky diskrétní matematiky profesora Jaroslava Nešetřila z MatFyzu (a pak se z toho zbláznit)'

when hour_count <= 30 then 'půltýdenní sekci El Camino Santiago (a pak o ní napsat 30 lifestylových článků do Vlasty)'
when hour_count <= 36 then 'TODO'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'jednu z nejdelších cest vlakem v Evropě - mezi Rakouskem a Tureckem'

when hour_count <= 45 then 'týdenní šichtu (a pak o ní napsat díl do Hrdinů kapitalistické práce)'
when hour_count > 45 then 'všechny seriály a filmy Aarona Sorkina (a pak napsat zbylých 51 Federalist Papers)'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,19 @@ achievement as (
select
*,
case
--WHEN hours_debated > 350 THEN 'naučit se nový jazyk na úroveň B1'
--WHEN hours_debated > 200 THEN 'dohrát Total War: Empire - Definitive Edition'
--WHEN hours_debated > 100 THEN 'dokončit průměrný online kurz na Udemy'
-- THESE ARE IRRELEVANT SINCE NOONE HAS THAT MUCH DEBATES
when hours_debated > 350 then 'naučit se nový jazyk na úroveň B1'
when hours_debated > 200 then 'dohrát Total War: Empire - Definitive Edition'
when hours_debated > 100 then 'dokončit průměrný online kurz na Udemy'
when hours_debated >= 80 then 'TODO'
-- ^ Nobody actually achieves this, but we can tease them as possible goals
when hours_debated >= 60 then 'zhlédnout všechny díly seriálu Breaking Bad'
when hours_debated >= 40 then 'zaletět na otočku do Japonska'
when hours_debated >= 32 then 'dohrát Cyberpunk 2077'
when hours_debated >= 36 then 'TODO'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'Dohrát hlavní příběh GTA 5'

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GTA 5 vyšlo v roce 2013 a nejsem si jistý, že nejsme boomeři tím, že hrajeme příběh v single-player hrách

when hours_debated >= 30 then 'dohrát Cyberpunk 2077'
when hours_debated >= 24 then 'zhlédnout všechny díly seriálu Comeback'
when hours_debated >= 20 then 'TODO'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'proletět se nejdelším letem na světě - Mezi New Yorkem a Singapurem se Singapore Airlines'

when hours_debated >= 16 then 'projet všech 254 stanic metra v Dillí'
when hours_debated >= 12 then 'TODO'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'vydělat si na last minute letenky na Mallorcu'

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Možná bych se vyhnul věcem, které dělají přepočet na peníze - nebo je tohle nějaká kulturní reference?

when hours_debated >= 8 then 'odpracovat jednu směnu'
end as achievement_decider
from prepare_hours
Expand Down