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 hidden or 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 hidden or 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 hidden or 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 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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\"" | |
} | |
} |
This file contains hidden or 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 # Run the typescript compiler | |
$ yarn workspace @xproduct/ui run dev:docs # Run the storybook |
This file contains hidden or 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
{ | |
... | |
"resolutions": { | |
"react": "~16.11.0", | |
"react-dom": "~16.11.0" | |
} | |
} |
NewerOlder