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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class QueueNode<T> { | |
public promise: () => Promise<T>; | |
public next: QueueNode<T> | null; | |
public finished: boolean; | |
constructor(promise: () => Promise<T>) { | |
this.promise = promise; | |
} | |
} | |
class AsyncQueue { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"kty": "RSA", | |
"e": "AQAB", | |
"use": "sig", | |
"kid": "tRmWkDkZSIxS0XDBlzg-H8wGBNbs7HrUa0o_NmeF58o", | |
"alg": "RS256", | |
"n": "gFd3QhSe_AbIZ9DVj4bzXixDWcc_vtapXhoz2qqtDcAVMdV8FksZIdFb4zL93e_woEue373k97uk9ecXB39c4Ti1ejngJ6r4Wq-ojvKf_5Baf8jeXym6GQbKose4oEplSweL8YmdE7KXWyt-o7crE9_agmt3HXmeLOsT0mMOTd75KUSiB9ySVwN4HD6d4LKoRe3wmMWm1fhtTvnvqi6KKgPeTBEXv4v6WDnK84KiUOpwGusqr6tJ4PtkcehRjjCySsRzItOs8Jc9V_rLPzd0U7wwv6y9xifju3XekrUjBXTBSlLluAaBndJGX5ib5DTVeTB309QBrWkYtSptiZJpYQ" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as anchor from "@project-serum/anchor"; | |
import fs from "fs/promises"; | |
export const getWallet = async (keyPairFile: string) => { | |
const payer = anchor.web3.Keypair.fromSecretKey( | |
Buffer.from( | |
JSON.parse( | |
await fs.readFile(keyPairFile, { | |
encoding: "utf-8", | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Created a /etc/wsl.conf containing | |
[network] | |
generateResolvConf = false | |
I exited wsl and then issued a wsl --shutdown | |
entered wsl force deleted the /etc/resov.conf to stop it being a symbolic link | |
sudo rm -fd /etc/resov.conf |
I hereby claim:
- I am kevinrodriguez-io on github.
- I am misterkevin_rs (https://keybase.io/misterkevin_rs) on keybase.
- I have a public key ASBF5E3XnJflKkRLS1M4dPl2RRji-YibxjWg8XCBoqv2Cgo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { createContext, useReducer, useEffect, useState } from 'react'; | |
import { useContext } from 'react'; | |
import { useAsyncStorage } from '@react-native-async-storage/async-storage'; | |
const initialState = { | |
loading: true, | |
todos: [], | |
}; | |
const TodosStateContext = createContext(initialState); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { XPButton } from '@xproduct/ui'; | |
// Use it here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ yarn workspace @xproduct/ui run dev:all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// xproduct/ui package.json | |
"scripts": { | |
// ... | |
"dev:all": "concurrently \"yarn dev\" \"yarn dev:docs\"" | |
} | |
} |
NewerOlder