- instalação:
sudo apt install python3.12-venv
- criar ambiente virtual python (
<venv>
= pasta do ambiente virtual)
python3 -m venv /path/<venv>
- ativar ambiente virtual python
docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=12345Test';" \ | |
-p 1433:1433 --name sql1 --hostname sql1 \ | |
-d \ | |
mcr.microsoft.com/mssql/server:2022-latest |
<View | |
style={{ | |
width: 0, | |
height: 0, | |
borderStyle: 'solid', | |
overflow: 'hidden', | |
borderTopWidth: 6, | |
borderRightWidth: 4, | |
borderBottomWidth: 0, | |
borderLeftWidth: 4, |
import useCount from "./useCount"; | |
function App() { | |
const { | |
count, | |
handleAddCount, | |
countRef, | |
handleAddCountRef, | |
reducer, | |
expensiveCount, |
sudo apt install python3.12-venv
<venv>
= pasta do ambiente virtual)python3 -m venv /path/<venv>
import { useRoute } from "@react-navigation/native"; | |
const ExampleComponent = () => { | |
const route = useRoute<IStackAllScreensProps<"LoginToken">>(); | |
const { userId } = route.params; | |
return <></>; | |
}; |
cd ~ | |
mv .zsh_history .zsh_history_old | |
strings .zsh_history_old > .zsh_history | |
fc -R .zsh_history |
{ | |
"aboutMe": { | |
"name": "Sávio", | |
"description": "Graduated in systems analysis and development. I currently work as a developer Full Stack using React, React-native, Typescript e NodeJs", | |
"techs": [ | |
{ | |
"tech": "javascript", | |
"color": "#000000", | |
"bgcolor": "#EFD81D" | |
}, |
yarn add eslint --dev
yarn run eslint --init