Skip to content

Instantly share code, notes, and snippets.

View aleDsz's full-sized avatar
💜
Learning Rust and Elixir Socket TCP

Alexandre de Souza aleDsz

💜
Learning Rust and Elixir Socket TCP
View GitHub Profile
@aleDsz
aleDsz / app.R
Created October 4, 2017 05:15
Simple Shiny Application with external javascript file
library("shiny")
ui <- bootstrapPage(title = "Simple Shiny Application",
tags$head(tags$script(src = "https://cdnjs.cloudflare.com/ajax/libs/jquery.maskedinput/1.4.1/jquery.maskedinput.js")),
tags$head(tags$script(HTML("$(document).ready(function() { $('#texto').mask('99/99/9999', { autoclear: false }); });"))),
div(class = "container",
div(class = "jumbotron",
tags$h1("Bootstrap Tutorial"),
tags$p("Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web."),
@aleDsz
aleDsz / app.R
Created October 4, 2017 05:04
Simple Shiny Application
library("shiny")
ui <- bootstrapPage(title = "Simple Shiny Application",
div(class = "container",
div(class = "jumbotron",
tags$h1("Bootstrap Tutorial"),
tags$p("Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web.")
)
)
)