See also:
| Service | Type | RAM | Storage | Limitations |
|---|---|---|---|---|
| 👉 Adaptable | PaaS | 256 MB | Non-persistent? (1 GB database storage available) | |
| AWS EC2 | IaaS | 1 GB |
| /** | |
| * Sort array of objects based on another array | |
| */ | |
| function mapOrder (array, order, key) { | |
| array.sort( function (a, b) { | |
| var A = a[key], B = b[key]; | |
| #!/bin/bash | |
| # for Ubuntu | |
| # Install pre-requirements | |
| sudo apt-get update | |
| sudo apt-get install -y chromium-codecs-ffmpeg-extra | |
| # Import to opera | |
| sudo ln -sf /usr/lib/chromium-browser/libffmpeg.so /usr/lib/x86_64-linux-gnu/opera/libffmpeg.so |
This document was created back in 2020 and might not be actual nowadays. It is not supported anymore, so use thise information at your own risk.
wsl --set-default-version 2 in windows command line, so that all future WSL machine will use WSL2.| import React, { useMemo } from "react"; | |
| import { View } from "react-native"; | |
| import { degToRadians } from "src/components/OrbitLogo"; | |
| import Svg, { Circle, Line, Polygon } from "react-native-svg"; | |
| import times from "lodash.times"; | |
| type RadarData = { | |
| value: number; | |
| label: string; | |
| }; |
| #!/bin/bash | |
| EXE='npiperelay.exe' | |
| export GOOS=windows | |
| export GOARCH=amd64 | |
| GO_BIN="$(go env GOPATH)/bin/${GOOS}_${GOARCH}" | |
| msg () { |