sudo apt update
sudo apt install git p7zip-full python3-pip python3-wxgtk4.0
sudo pip3 install WoeUSB-ng
This file contains hidden or 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
{ | |
// =================== CONFIG: Basicas do vscode =================== | |
"workbench.startupEditor": "none", // <== Não abrir o arquivo de boas vindas | |
"screencastMode.onlyKeyboardShortcuts": true, | |
"breadcrumbs.enabled": true, // <== Zoom da tela | |
"workbench.sideBar.location": "left", // <== Posição da barra lateral | |
"workbench.iconTheme": "material-icon-theme", | |
"glassit.alpha": 241, | |
"workbench.productIconTheme": "fluent-icons", | |
"workbench.tree.indent": 20, |
This file contains hidden or 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
{ | |
"access": { | |
"validateJWTStart": true | |
}, | |
"routes": { | |
"main": true, | |
"home": true, | |
"usuarios": true, | |
"arquivo-deposito": true, | |
"privacy-policy": false, |
This file contains hidden or 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
sudo pacman -Sy libvirt qemu ebtables dnsmasq; | |
sudo usermod -a -G libvirt $(whoami); | |
newgrp libvirt; | |
sudo systemctl start libvirtd.service; | |
sudo systemctl enable libvirtd.service; | |
sudo systemctl start virtlockd.service; | |
sudo systemctl enable virtlockd.service; |
This file contains hidden or 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
// 20220414090200 | |
// https://gist.githubusercontent.com/duard/f2b717e8c84bc77e639ebd77fd68e55b/raw/712d49023bc977c5812891802741ab70b526e029/gistfile1.txt | |
{ | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.renderWhitespace": "all", | |
"editor.tabCompletion": "on", | |
"editor.fontFamily": "FiraCode Nerd Font Mono, 'VictorMono Nerd Font'", | |
"editor.fontLigatures": "'zero', 'ss02', 'ss03', 'ss04', 'ss05', 'calt'", | |
"editor.fontSize": 13, |
This file contains hidden or 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
{ | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.renderWhitespace": "all", | |
"editor.tabCompletion": "on", | |
"editor.fontFamily": "'OperatorMono-Book', 'JetBrainsMono Nerd Font'", | |
"editor.fontLigatures":"'zero', 'ss02', 'ss03', 'ss04', 'ss05', 'calt'", | |
"editor.fontWeight": "200", | |
"typescript.format.enable": true, | |
"editor.multiCursorModifier": "alt", |
This file contains hidden or 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
{ | |
"keyboard.dispatch": "keyCode", | |
"security.workspace.trust.untrustedFiles": "open", | |
// "editor.fontFamily": "Firacode, 'Fira Code', Fira Code, Dank Mono,Operator Mono, Operator Mono", | |
"editor.fontWeight": "300", | |
"editor.lineHeight": 18, | |
// "terminal.integrated.fontFamily": "'RobotoMono Nerd Font'", | |
"terminal.integrated.fontFamily": "'Hack Nerd Font'", | |
"terminal.integrated.fontSize": 14, | |
"editor.multiCursorModifier": "alt", |
This file contains hidden or 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
{ | |
"editor.tabSize": 2, | |
"editor.fontFamily": "Dank Mono, Operator Mono, Firacode, 'Fira Code', Fira Code, Consolas, 'Courier New', monospace", | |
"terminal.integrated.fontFamily": "Hack Nerd Font, hack", | |
"terminal.integrated.rendererType": "dom", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "material-icon-theme", | |
"files.associations": { | |
"*.svelte": "html" | |
}, |
This file contains hidden or 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
@FranciscoPioner#9602 @stanquini#6953 @KingFarofa#2805 @Diego Soares#2779 cada um pegue dois e vamos buildar e subir para produção os cards | |
``` | |
# a partir da branch develop | |
npm run build --env=p --component=Homes/Livraria/nome-do-card --height=439 --width=732 | |
# tamano dos cads para referencia | |
Homes/Livraria/mvLojaMercado 680x1106 BBAGxGIA d2MtbXZsb2phbWVyY2Fkby1saXZyYXJpYS1CQkFHeEdJQQ== | |
Homes/Livraria/ticketMedioPeriodo 510x1106 BBAGxFBA d2MtdGlja2V0bWVkaW9wZXJpb2RvLWxpdnJhcmlhLUJCQUd4RkJB |
This file contains hidden or 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
import AggregateRoot from '~sdk-ddd/aggregate-root' | |
import profiles from '~enum/profiles' | |
import KeycloakProvider, { | |
KeycloakAdapter | |
} from '~providers/keycloak-provider' | |
import { UploadFile } from '~handlers' | |
import { ResourceNotFound, Forbidden, ResourceDuplicated } from '~errors' | |
import HttpService from '~sdk-http/http-service' | |
// import { ioc } from '@adonisjs/fold' |
NewerOlder