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
| sdk install springboot | |
| spring --version | |
| spring init --dependencies=web,data-jpa my-project | |
| spring init --dependencies=web,data-jpa my-project --build=gradle --java-version=17 | |
| spring init --dependencies=web,data-jpa project2 --build=maven --java-version=17 | |
| ./mvnw spring-boot:run | |
| ./mvnw spring-boot:run -Dserver.port=8081 |
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
| openssl | |
| keystore | |
| keystore explorer | |
| ssl-keygen | |
| Ext: | |
| .jks | |
| .p12 | |
| .p8 |
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 add-apt-repository universe | |
| sudo apt update | |
| sudo apt install alien | |
| sudo alien -i package_name.rpm |
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 apt install wine64 | |
| wget -nc https://dl.winehq.org/wine-builds/winehq.key | |
| sudo apt-key add winehq.key | |
| sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ eoan main' | |
| sudo apt update | |
| sudo apt install --install-recommends winehq-stable | |
| mkdir -p ~/build/safari | |
| cd ~/build/safari | |
| wget http://appldnld.apple.com/Safari5/041-5487.20120509.INU8B/SafariSetup.exe | |
| wine SafariSetup.exe |
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
| [ | |
| { | |
| "idCotacao": "C-000000001", | |
| "dataCotacao": "2014-12-31", | |
| "valorCotacao": 0.1, | |
| "margemDisponivel": 0.1, | |
| "niFornecedor": "99999999999999", | |
| "nomeFornecedor": "Fornecedor", | |
| "dataLimiteProposta": "2014-12-31", | |
| "cotacaoContratos": [ |
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
| { | |
| "status": 200, | |
| "message": "", | |
| "data": [ | |
| { | |
| "idCotacao": "string", | |
| "dataCotacao": "2014-12-31", | |
| "valorCotacao": 0.1, | |
| "margemDisponivel": 0.1, | |
| "dataLimiteProposta": "2014-12-31", |
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
| cat ~/.gitconfig | |
| [user] | |
| email = [email protected] | |
| name = Joel Lobo | |
| [http] | |
| sslverify = 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
| parse_git_branch() { | |
| git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
| } | |
| #export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ " | |
| #PS1='\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' | |
| PS1='\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\[\033[33m\]$(parse_git_branch)\[\033[00m\] $ ' |
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 fs from "fs"; | |
| import path from "path"; | |
| import jwa from "jwa"; | |
| import "dotenv/config"; | |
| const JWT = (function() { | |
| let keystore = { | |
| nomeArquivo: null, | |
| diretorio: null |
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
| https://www.codeinwp.com/blog/react-ui-component-libraries-frameworks/ | |
| https://hipsters.tech/react-o-framework-onipresente-hipsters-66/ | |
| https://www.google.com.br/search?ei=8OhCXdmlJIbM5OUPqsiUqA4&q=react+vs+web+components+2019&oq=react+vs+web+components&gs_l=psy-ab.1.2.0i7i30j0i203l3j0i30j0i8i30l5.15710.16174..22000...0.0..0.162.462.0j3......0....1..gws-wiz.......0i71j35i39.vxBVyrEBJ8M | |
| https://cursos.alura.com.br/formacao-react | |
| https://www.google.com/search?q=redux+web+socket&ie=utf-8&oe=utf-8&client=firefox-b-ab | |
| https://medium.com/reactbrasil/iniciando-com-redux-c14ca7b7dcf | |
| https://redux.js.org/ | |
| https://www.npmjs.com/package/react-router | |
| https://relay.dev/ | |
| https://rxjs-dev.firebaseapp.com/ |
NewerOlder