use npm-check-updates package
for children with props
npx types-react-codemod preset-18 ./src
| Lab Name: Create and Manage Cloud Resources: Challenge Lab (GSP313) | |
| Task 1: Create a project jumphost instance | |
| Run command: | |
| gcloud compute instances create nucleus-jumphost \ | |
| --network nucleus-vpc \ | |
| --zone us-east1-b \ | |
| --machine-type f1-micro \ |
| FROM selenium/standalone-chrome as build | |
| USER root | |
| RUN apt-get update && apt-get install python3-distutils xvfb -y | |
| RUN wget https://bootstrap.pypa.io/get-pip.py | |
| RUN python3 get-pip.py | |
| FROM build as install | |
| COPY requirements.txt . | |
| RUN python3 -m pip install -r requirements.txt |
commands to determine your login manager / greeter
your session
loginctl list-sessions
session info and service (display manager)
`loginctl show-session <session_number> --all
| .messages { | |
| height: 500px; | |
| overflow: auto; | |
| margin-top: 25px; | |
| display: flex; | |
| flex-flow: column nowrap; | |
| > :first-child { | |
| margin-top: auto; // When container is empty takes all empty space | |
| } | |
| } |
for short term use:
rvm pkg install openssl
next
rvm install ruby-2.7.2 --with-openssl-dir=$HOME/.rvm/usr
| branch-defaults: | |
| default: | |
| environment: image-filter-app-env | |
| group_suffix: null | |
| main: | |
| environment: image-filter-app-env | |
| deploy: | |
| artifact: ./www/Archive.zip | |
| global: | |
| application_name: image-filter-app |
| import { Data } from 'plotly.js' | |
| import Plot from 'react-plotly.js' | |
| interface WidgetProps { | |
| x: number[] | |
| y: number[] | |
| z: number[] | |
| } | |
| function PlotWidget({ fileId = 434 }: { fileId: number }) { |