In terminal.app, install ffmpeg through homebrew
brew install ffmpeg
Validate the installation:
| #!/bin/bash | |
| # Airdrop amount | |
| amount=2 | |
| # Number of addresses to generate | |
| num_addresses=10 | |
| # Address to transfer all tokens to | |
| receiver_address="CHANGE ME" |
| function Identity(v) { | |
| return { val: v }; | |
| } | |
| function chain(m,fn) { | |
| return fn(m.val); | |
| } | |
| // ^^^ that's it! |
| function createWrappedSolAccount(){ | |
| const balanceNeeded = await Token.getMinBalanceRentForExemptAccount(connection,); | |
| // Create a new account | |
| const newAccount = Keypair.generate(); //todo this is not an associated token account???? | |
| const transaction = new Transaction(); | |
| transaction.add( | |
| SystemProgram.createAccount({ | |
| fromPubkey: wallet?.publicKey as PublicKey, | |
| newAccountPubkey: newAccount.publicKey, | |
| lamports: balanceNeeded, |
| yarn add blueimp-load-image |
| version: '3' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: PASSWORD_HERE |
| // .eslintrc.js | |
| module.exports = { | |
| parser: '@typescript-eslint/parser', | |
| extends: [ | |
| 'plugin:@typescript-eslint/recommended', | |
| 'prettier/@typescript-eslint', | |
| 'react-app', | |
| 'plugin:prettier/recommended', | |
| ], |
| const colors = { | |
| flatRed: { | |
| light: '#E74C3C', | |
| dark: '#C0392C', | |
| }, | |
| flatOrange: { | |
| light: '##E67E23', | |
| dark: '#D35400', | |
| }, | |
| flatYellow: { |
| Slot | Name | Source |
|---|---|---|
| Head | Sanctified Frost Witch's Headpiece | Vendor |
| Neck | Blood Queen's Crimson Choker | Blood Queen Lana'thel 25HC |
| Shoulders | Sanctified Frost Witch's Spaulders | Vendor |
| Back | Cloak of Burning Dusk | Halion 25HC |
| ssh-keygen -t rsa -b 4096 -e SHA512 -f jwtRS512.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS512.key -pubout -outform PEM -out jwtRS512.key.pub | |
| cat jwtRS512.key | |
| cat jwtRS512.key.pub |