- criar partições
- montar partições
- instalar sistema
- configurar hora
- configurar rede
- configurar localização
- configurar usuario e sudo
- configurar grub
This file contains 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
package com.smith; | |
import org.bukkit.Material; | |
import org.bukkit.block.Chest; | |
import org.bukkit.command.Command; | |
import org.bukkit.command.CommandSender; | |
import org.bukkit.event.EventHandler; | |
import org.bukkit.event.Listener; | |
import org.bukkit.event.player.PlayerInteractEvent; | |
import org.bukkit.inventory.ItemStack; |
This file contains 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
module.exports = { | |
parserOptions: { project: './tsconfig.json' }, | |
extends: [ | |
'airbnb-typescript/base', | |
'plugin:@typescript-eslint/recommended', | |
'plugin:@typescript-eslint/recommended-requiring-type-checking', | |
'plugin:prettier/recommended', | |
'prettier/@typescript-eslint', | |
], | |
rules: { |
This file contains 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
{ | |
// fonts | |
"editor.fontSize": 18, | |
"markdown.preview.fontSize": 18, | |
"terminal.integrated.fontSize": 18, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "'Fira Code'", | |
"terminal.integrated.fontFamily": "Consolas, 'Fira Code'", | |
"workbench.iconTheme": "material-icon-theme", |
Node.js 8 is due to go End-of-Life on 31st December 2019.
- deps: upgrade openssl sources to 1.0.2s (Sam Roberts) #28230
This file contains 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
FROM agners/archlinuxarm-arm32v7 | |
# pacman -Sy --noconfirm base-devel awk m4 git unzip perl wget ocaml opam ocaml-compiler-libs | |
RUN pacman -Sy --noconfirm base-devel awk m4 git unzip perl wget | |
RUN curl -sL https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh | sh | |
RUN useradd -m esy-user | |
USER esy-user |
OlderNewer