These instructions are currently for Fedora 30. I'll update them over the releases if anything changes.
Press the Win/Super key, type software
and press Enter.
if (!require(rsconnect)) { | |
install.packages("rsconnect") | |
library("rsconnect") | |
} | |
options(rsconnect.max.bundle.size = 9145728000) | |
# Print a list of app dependencies. Libraries need to be loaded | |
# before publishing so deployApp() knows what is necessary. | |
error_on_missing_name <- function(name){ |
library("future") | |
library("httr") | |
library("magrittr") | |
library("plumber") | |
library("shiny") | |
library("uuid") | |
library("websocket") | |
library("R6") | |
shiny_port <- 5174 |
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | |
# dependencies | |
/node_modules | |
/.pnp | |
.pnp.js | |
# testing | |
/coverage |
#' Render Table of Contents | |
#' | |
#' A simple function to extract headers from an RMarkdown or Markdown document | |
#' and build a table of contents. Returns a markdown list with links to the | |
#' headers using | |
#' [pandoc header identifiers](http://pandoc.org/MANUAL.html#header-identifiers). | |
#' | |
#' WARNING: This function only works with hash-tag headers. | |
#' | |
#' Because this function returns only the markdown list, the header for the |
// https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=09a4f12d1c599376037d00f054ac359f | |
extern crate rand; | |
use rand::Rng; | |
use std::str; | |
// use std::string; // .to_string() is already impl on u8 | |
fn main() { | |
let mut rng = rand::thread_rng(); | |
let robot = rng.gen::<u8>().to_string(); | |
let greeting: &str = &(format!("Hello, {}!", robot)); |
#!/usr/bin/env Rscript | |
# Title : Execute Shiny App | |
# Objective : Initialize Plumber and run Shiny app as "future" (background) worker as defined by local app.R or server.R/ui.R | |
# Created by: John Hall | |
library("future") | |
library("httr") | |
library("httpuv") | |
library("magrittr") | |
library("plumber") | |
library("shiny") |
/* | |
******************************************************************************************************************************** | |
Credits: @Jeremy | |
Posted: http://stackoverflow.com/questions/7048839/sql-server-query-to-find-all-permissions-access-for-all-users-in-a-database | |
******************************************************************************************************************************** | |
Security Audit Report | |
1) List all access provisioned to a sql user or windows user/group directly | |
2) List all access provisioned to a sql user or windows user/group through a database or application role | |
3) List all access provisioned to the public role |
Server set up not included in this install process. For this install we will use the following server:
For this process, you will need to have 4 links, provided by CARTO, available to you. (these links are generated in jenkins (must VM in))
license: mit | |
height: 720 | |
border: no |