Formate seu device /dev/sda usando 4 partições:
- sda1: EFI -> 512M
- sda2: SWAP -> 8G
- sda3: (Linux root x86-64) / -> 100G (ou mais)
- sda4: (Linux root x86-64) /home -> o resto
cfdisk /dev/sda
| 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.") | |
| ) | |
| ) | |
| ) |
| 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."), |
| library ("methods") | |
| setRefClass( | |
| Class = "className", | |
| fields = list ( | |
| property1 = "numeric", | |
| property2 = "character", | |
| property3 = "logical", | |
| property4 = "Date" |
| library ("methods") | |
| # Classe | |
| setRefClass("contacts", | |
| fields = list ( | |
| id = "numeric", | |
| first_name = "character", | |
| last_name = "character", | |
| age = "numeric", | |
| email = "character" |
| library ("methods") | |
| # Levando em conta que carregamos a classe `contacts` na memória, seria simples utilizar a classe a seguir: | |
| setRefClass("contactsController", | |
| methods = list ( | |
| findAll = function (params = list ()) { | |
| Contacts = new("contacts") | |
| fieldNames <- names((Contacts$getClass())@fieldClasses) | |
| className <- as.character((Contacts$getClass())@className) |
| code --install-extension abusaidm.html-snippets | |
| code --install-extension actboy168.lua-debug | |
| code --install-extension alefragnani.delphi-pack | |
| code --install-extension alefragnani.delphi-themes | |
| code --install-extension alefragnani.numbered-bookmarks | |
| code --install-extension alefragnani.pascal | |
| code --install-extension alefragnani.pascal-formatter | |
| code --install-extension attilabuti.vscode-mjml | |
| code --install-extension bogdansalyp.hotline-vs | |
| code --install-extension christian-kohler.npm-intellisense |
| algoritmo "Exercício do AleMonja" | |
| var | |
| contador : Inteiro | |
| inicio | |
| contador <- 1 | |
| enquanto (contador <= 100) faca | |
| se (contador mod 3 = 0) e (contador mod 5 = 0) entao | |
| escreval("AleMonja") | |
| senao |
| case Modulo.funcao() do | |
| {:ok, %User{role: "admin"} = user} -> | |
| user |> faca_algo_com_admin() | |
| {:ok, %User{role: "moderator"} = user} -> | |
| user |> faca_algo_com_moderator() | |
| {:ok, %User{role: "user"} = user} -> | |
| user |> faca_algo_com_user() | |