I hereby claim:
- I am warlyware on github.
- I am warly (https://keybase.io/warly) on keybase.
- I have a public key ASDp4YUfXR2rc53HnO1ytL8lhstqn2G-0FGJGTOwH40m_go
To claim this, I am signing this object:
| async function getPriorityFees(instructions: TransactionInstruction[]): Promise<number> { | |
| // replace with real function | |
| return 426; | |
| } | |
| async function getSimulationUnits( | |
| connection: Connection, | |
| instructions: TransactionInstruction[], | |
| payer: PublicKey, | |
| lookupTables: AddressLookupTableAccount[] |
I hereby claim:
To claim this, I am signing this object:
| {"lastUpload":"2021-01-22T01:10:38.889Z","extensionVersion":"v3.4.3"} |
| {"lastUpload":"2021-01-21T23:25:08.542Z","extensionVersion":"v3.4.3"} |
| const LogRocket = require('logrocket') | |
| const express = require('express') | |
| const { SESSION_SECRET } = require('../auth-api/config/config') | |
| const app = express() | |
| LogRocket.init(process.env.LOGROCKET_APP_ID) | |
| require('../auth-api/config/passport')(app) | |
| app.use(require('cookie-parser')()) |
| class HTMLMapMarker extends OverlayView { | |
| constructor() { | |
| super(); | |
| this.latlng = args.latlng; | |
| this.html = args.html; | |
| this.setMap(args.map); | |
| } | |
| createDiv() { | |
| this.div = document.createElement('div'); |
| // ==UserScript== | |
| // @name Spotify Saver Script | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://open.spotify.com/* | |
| // @grant none | |
| // @require https://code.jquery.com/jquery-3.3.1.min.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js |
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
| class BinarySearchTree { | |
| constructor() { | |
| this.root = null; | |
| } | |
| add(value) { | |
| const node = this.root; | |
| if (!node) { | |
| this.root = new Node(value); | |
| return this.root; |