https://docs.expo.dev/build/introduction
Install the latest EAS CLI
npm install -g eas-cli
/** | |
* Advance Types | |
*/ | |
type ReadonlyProps<T> = { | |
readonly [P in keyof T]: T[P]; | |
} | |
interface Props { | |
title: string; |
https://docs.expo.dev/build/introduction
Install the latest EAS CLI
npm install -g eas-cli
Regular expression for JavaScript:
/((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$/
#!/bin/bash | |
# Check the latest version of NVM | |
curl https://github.com/nvm-sh/nvm/releases/latest | cut -d \/ -f 8 | cut -d \" -f 1 | |
# Run the install script | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.0/install.sh | bash | |
# Paste in this scripts into your .bashrc or .bash_profile | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" | |
# Install node and npm |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
redis: | |
image: redis | |
container_name: cache | |
expose: | |
- 6379 | |
app: | |
build: ./ | |
volumes: | |
- ./:/var/www/app | |
links: |
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch via npm", | |
"type": "node", | |
"request": "launch", |
node_modules |