shiny
htmltools
req()
seq()
on.exit()
observe()
isolate
observeEvent
eventReactive
reactiveTimer()
invalidateLater(ms)
git
# If we define 3 objects x <- reactiveVal(1) y <- x z <- reactiveVal(1) # If we change the value of x x(2) # Then y also changes x()
## [1] 2
y()
# But z keeps the same z()
## [1] 1