create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| library(shiny) | |
| shinyServer(function(input, output,session){ | |
| }) |
| # Create some sample data | |
| CV_1 <- 0.2 | |
| CV_2 <- 0.3 | |
| Mean <- 65 | |
| sigma_1 <- sqrt(log(1 + CV_1^2)) | |
| mu_1 <- log(Mean) - sigma_1^2 / 2 | |
| sigma_2 <- sqrt(log(1 + CV_2^2)) | |
| mu_2 <- log(Mean) - sigma_2^2 / 2 | |
| q <- c(0.25, 0.5, 0.75, 0.9, 0.95) | |
| SummaryTable <- data.frame( |
| library(rmongodb) | |
| shinyServer(function(input, output) { | |
| key <- reactive({ | |
| paste(input$key, "data", sep = ".") | |
| }) | |
| output$show <- renderText({ | |
| git rm -r --cached node_modules | |
| git commit -m 'Remove the now ignored directory node_modules' | |
| git push origin master |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"