This app requires the shiny
and xml2
packages. Run the gist interactively with the following:
shiny::runGist('6c33ee09a16d55569c562f7aa3951088')
### 1. Sign up at GitHub.com ################################################ | |
## If you do not have a GitHub account, sign up here: | |
## https://github.com/join | |
# ---------------------------------------------------------------------------- | |
### 2. Create Fork of Project Github Repsoitory ############################# | |
## Visit the GitHub repository link of the project |
# Darren Nantz | |
# Final Project Name: My House And Yard | |
#Class: Beginner 2 | |
from turtle import * | |
from random import * | |
bgcolor("lightblue") | |
tracer(0) | |
color("springgreen") | |
begin_fill() | |
up() |
## 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; |
# 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 |
# 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 | |
#' |
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** |
This app requires the shiny
and xml2
packages. Run the gist interactively with the following:
shiny::runGist('6c33ee09a16d55569c562f7aa3951088')
# 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() |
library(shiny) | |
ui <- fluidPage( | |
fluidRow( | |
numericInput( | |
"obs_low", | |
"Minimum obs", | |
value = 1000, | |
min = 500, | |
max = 5000, |
library(shiny) | |
library(rintrojs) | |
data(mtcars) | |
my_data <- mtcars |