Skip to content

Instantly share code, notes, and snippets.

View DivadNojnarg's full-sized avatar
💭
Super duper mega giga crazy buzy ... sorry

David Granjon DivadNojnarg

💭
Super duper mega giga crazy buzy ... sorry
View GitHub Profile
@hypebright
hypebright / shiny_callR_demo.R
Last active January 23, 2024 11:15
Small demo to use background processes in Shiny apps with callR
library(shiny)
library(callr)
ui <- fluidPage(
titlePanel('Using callR in Shiny'),
actionButton('start_job', 'Start Expensive Job'),
tableOutput('result_table')
)