Skip to content

Instantly share code, notes, and snippets.

View DivadNojnarg's full-sized avatar
🎯
Focusing

David Granjon DivadNojnarg

🎯
Focusing
View GitHub Profile
@hypebright
hypebright / shiny_callR_demo.R
Last active May 20, 2025 22:05
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')
)