View price.sh
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
curl "https://coincodex.com/api/coincodex/get_coin/eth" |
View price.sh
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
curl "https://api.coinpaprika.com/v1/tickers/usdc-ethereum" |
View go_fix.sh
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
# see order of binaires for go | |
echo $PATH | |
# remove local go | |
sudo rm -rf /usr/local/go |
View package_info.sh
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
curl -s "https://registry.npmjs.org/merkletreejs/latest" | jq '.version' |
View IpfsUpload.ts
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 fs from 'fs' | |
import path from 'path' | |
import pinataSDK from '@pinata/sdk' | |
require('dotenv').config() | |
const pinataApiKey = process.env.PINATA_API_KEY | |
const pinataSecretApiKey = process.env.PINATA_SECRET_API_KEY | |
export class IpfsUpload { | |
pinata = pinataSDK(pinataApiKey, pinataSecretApiKey) |
View Cloudflare.ts
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 fetch from 'isomorphic-fetch' | |
require('dotenv').config() | |
const CLOUDFLARE_ZONE_ID = process.env.CLOUDFLARE_ZONE_ID | |
const CLOUDFLARE_TOKEN = process.env.CLOUDFLARE_TOKEN | |
export class Cloudflare { | |
async getRecordId(dnslinkDomain: string) { | |
const url = `https://api.cloudflare.com/client/v4/zones/${CLOUDFLARE_ZONE_ID}/dns_records?name=${dnslinkDomain}` | |
const res = await fetch(url, { |
View timeout_url.txt
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
https://www.google.com:81/ |
View promiseTimeout.ts
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 TimeoutError extends Error {} | |
export async function promiseTimeout<T> (promise: Promise<T>, timeout: number): Promise<T> { | |
return await new Promise(async (resolve, reject) => { | |
let timedout = false | |
const t = setTimeout(() => { | |
timedout = true | |
reject(new TimeoutError('timedout')) | |
}, timeout) |
View instructions.sh
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
yay -S mullvad-vpn |
View image_uri_output.txt
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
moonbirds-oddities https://live---metadata-5covpqijaa-uc.a.run.app/oddities_images/1 | |
alphasharksofficial https://ettcvwksjfmsyce9.sfo3.digitaloceanspaces.com/1.jpg | |
illusion-pt-1 https://assets.bueno.art/images/cff13f6e-83dd-46a4-ac7a-696fc8f0cfd1/default/1?s=a1549611ccf81a9252c2ff1977757d15 | |
genesis-box https://wcnft.mypinata.cloud/ipfs/Qme4SpgD8jgNyDo8AUfAsHfWS4qL8du7Vw4J4qzJ3YKS4J | |
webaverse-genesis-pass https://arweave.net/wGACLov8--kcHSbwkNJ_hmZj76QC_Ddkj1LFdRePTpY/OT_Thumbnail.png | |
strangershq https://factorlabs.mypinata.cloud/ipfs/QmXDWzbzoajAr16ACrXLa2LpczVj86T83WvZ3kcvCu6fEg/CodingProjects/Crypto/StrangersV2/Strangers/FINALFINAL/1.png | |
blurbears ipfs://bafybeihwzci6b426f7bekqgwa6zu4vldioqri2ui2gdwd6as3p6u75urfu/1.png | |
blurglyphs ipfs://QmZKyoLPBxSuyeckFqUdxzzEXyryNdWMjFJwdYMosEe9jX | |
remilio-babies https://remilio.org/remilio/1.png | |
town-star undefined |
NewerOlder