Dear all Github friends,
I moved this gist to the Github repository.
Following this repository https://github.com/nijicha/install_nodejs_and_yarn_homebrew
# 1.install gource using HomeBrew | |
$ brew install gource | |
# 2.install avconv | |
git clone git://git.libav.org/libav.git | |
cd libav | |
# it will take 3-5 minutes to complie, be patient. | |
./configure --disable-yasm | |
make && make install |
Dear all Github friends,
I moved this gist to the Github repository.
Following this repository https://github.com/nijicha/install_nodejs_and_yarn_homebrew
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 |
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 |
const colors = { | |
flatRed: { | |
light: '#E74C3C', | |
dark: '#C0392C', | |
}, | |
flatOrange: { | |
light: '##E67E23', | |
dark: '#D35400', | |
}, | |
flatYellow: { |
// .eslintrc.js | |
module.exports = { | |
parser: '@typescript-eslint/parser', | |
extends: [ | |
'plugin:@typescript-eslint/recommended', | |
'prettier/@typescript-eslint', | |
'react-app', | |
'plugin:prettier/recommended', | |
], |
version: '3' | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: PASSWORD_HERE |
yarn add blueimp-load-image |
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, |