This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Variables | |
APP_NAME="sftpgo" | |
DOMAIN="ftp.example.com" | |
EMAIL="[email protected]" | |
ENABLE_LETS_ENCRYPT=true # Set to false to disable Let's Encrypt setup | |
# Create Dokku app | |
dokku apps:create $APP_NAME | |
# Set up domain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(dplyr) | |
library(tsibble) | |
library(TTR) | |
library(ggplot2) | |
library(tidyr) | |
library(fable) | |
sf <- 2 | |
width <- 600 * sf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(tidyr) | |
library(ggplot2) | |
library(dplyr) | |
sf <- 2 | |
width <- 600 * sf | |
height <- 335 * sf | |
options(vsc.dev.args = list(width = width, height = height, res = 72 * sf)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(rvest) | |
library(dplyr) | |
library(ggpubr) | |
sf <- 2 | |
width <- 1440 * sf | |
height <- 960 * sf | |
options(vsc.dev.args = list(width = width, height = height, res = 72 * sf)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(rvest) | |
library(dplyr) | |
library(ggpubr) | |
library(readxl) | |
library(scales) | |
sf <- 2 | |
width <- 1440 * sf | |
height <- 960 * sf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(ggplot2) | |
library(scales) | |
library(dplyr) | |
sf <- 2 | |
width <- 600 * sf | |
height <- 335 * sf | |
options(vsc.dev.args = list(width = width, height = height, res = 72 * sf)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Study: https://www.nature.com/articles/s41591-022-01816-0 | |
library(readxl) | |
library(dplyr) | |
library(ggplot2) | |
sf <- 2 | |
options(vsc.dev.args = list(width = 600 * sf, height = 335 * sf, res = 72 * sf)) | |
download.file( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(dplyr) | |
library(tsibble) | |
library(ggplot2) | |
library(tidyr) | |
library(scales) | |
sf <- 2 | |
width <- 600 * sf | |
height <- 335 * sf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Update the package list and upgrade installed packages | |
sudo apt-get update && sudo apt-get upgrade -y | |
# Clean up APT cache | |
sudo apt-get clean | |
# Remove unnecessary packages | |
sudo apt-get autoremove -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(tidyr) | |
library(ggplot2) | |
library(dplyr) | |
library(fable) | |
sf <- 2 | |
width <- 600 * sf | |
height <- 335 * sf |
OlderNewer