This app requires the shiny
and xml2
packages. Run the gist interactively with the following:
shiny::runGist('6c33ee09a16d55569c562f7aa3951088')
Title | |
======================================================== | |
This is an R Markdown document. Markdown is a simple formatting syntax for authoring web pages (click the **MD** toolbar button for help on Markdown). | |
When you click the **Knit HTML** button a web page will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this: | |
```{r setup, include=FALSE} | |
opts_knit$set(base.url = 'https://dl.dropbox.com/u/194973/wp/', | |
base.dir = '~/Dropbox/Public/wp/') |
library(rintrojs) | |
library(shiny) | |
# Define UI for application that draws a histogram | |
ui <- shinyUI(fluidPage( | |
introjsUI(), | |
# Application title | |
introBox( | |
titlePanel("Old Faithful Geyser Data"), |
library(shiny) | |
library(rintrojs) | |
data(mtcars) | |
my_data <- mtcars |
library(shiny) | |
ui <- fluidPage( | |
fluidRow( | |
numericInput( | |
"obs_low", | |
"Minimum obs", | |
value = 1000, | |
min = 500, | |
max = 5000, |
# Must be executed BEFORE rgl is loaded on headless devices. | |
options(rgl.useNULL=TRUE) | |
library(shiny) | |
library(rgl) | |
library(rayshader) | |
library(magrittr) | |
#Here, I load a map with the raster package. | |
loadzip = tempfile() |
This app requires the shiny
and xml2
packages. Run the gist interactively with the following:
shiny::runGist('6c33ee09a16d55569c562f7aa3951088')
version: "3" | |
services: | |
mariadb: | |
image: ghcr.io/linuxserver/mariadb:latest | |
container_name: hedgedoc_mariadb | |
restart: always | |
volumes: | |
- /home/eric/docker_configs/hedgedoc/mariadb:/config | |
environment: | |
- MYSQL_ROOT_PASSWORD=mypass123** |
# Module UI | |
#' @title mod_explore_ui and mod_explore_server | |
#' @description A shiny Module. | |
#' | |
#' @param id shiny id | |
#' @param input internal | |
#' @param output internal | |
#' @param session internal | |
#' |
# rstudio::conf 2022 talks | |
# https://www.rstudio.com/conference/2022/2022-conf-talks/ | |
# potomac c | |
# Cracking open ggplot internals with ggtrace | |
https://www.rstudio.com/conference/2022/talks/cracking-open-ggplot-internals-ggtrace/ | |
# Sometimes you just need words | |
https://www.rstudio.com/conference/2022/talks/sometimes-you-just-need-words/ | |
# Digging a pit of success for your organization | |
https://www.rstudio.com/conference/2022/talks/leveraging-r-based-ecosystem/ | |
# Tidy transit |
## Version 2022/10/06 | |
# make sure that your dns has a cname set for castopod and that your castopod container is not using a base url | |
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
server_name castopod.*; | |
include /config/nginx/ssl.conf; |