diff --git a/content/Memex.ndtl b/content/Memex.ndtl index 73dd671..77bec96 100644 --- a/content/Memex.ndtl +++ b/content/Memex.ndtl @@ -263,7 +263,7 @@ RV BATTERY RANT NOTE : rant SEEN : true -HLD DIFFICULTY +HYPER LIGHT DIFFICULTY LINK : https://www.gamasutra.com/view/news/269957/How_Hyper_Light_Drifter_balances_difficulty_with_fairness.php TYPE : article DATE : 12018-07-03 @@ -1086,7 +1086,7 @@ THE EMPIRE HORSESHIT PROBLEM LINK : http://www.duncantrussell.com/episodes/2018/7/12/taryn-southern TYPE : podcast - TERM : 'Horseshit problem' + TERM : 'Horseshit problem' - a problem that seems existentially bad but is later solved indirectly by technology. The name refers to horse manue starting to be a major problem when horses were extensively used for transport their manure was everywhere and poisoning water etc. When the cars were invented and mass adopted it was suddenly not an issue. DATE : 12018-07-14 SEEN : true diff --git a/logic/main.js b/logic/main.js index 6609dff..63eee37 100644 --- a/logic/main.js +++ b/logic/main.js @@ -131,6 +131,18 @@ function displayEntries(db) entries += `
TERM(S): ${value.TERM}
`; } + // TERM + if (typeof value.TERM !== 'undefined') + { + entries += `
TERM(S): ${value.TERM}
`; + } + + // PROGRESS + if (typeof value.PROG !== 'undefined') + { + entries += `
PROGRESS: ${value.PROG}
`; + } + entries += ``; lastEntry = i;