Skip to content

Instantly share code, notes, and snippets.

View tripplyons's full-sized avatar

Tripp Lyons tripplyons

View GitHub Profile
@tripplyons
tripplyons / index.html
Created October 7, 2022 18:45
Letter Pairs
<script>
list = ["BC", "BD", "BE", "BF", "BG", "BQ", "BI", "BK", "BL", "BO", "BP", "BR", "BS", "BT", "BU", "BV", "BN", "BA", "CB", "CD", "CE", "CG", "CQ", "CJ", "CK", "CL", "CM", "CO", "CP", "CR", "CS", "CT", "CU", "CV", "CN", "CA", "DB", "DC", "DF", "DG", "DQ", "DI", "DJ", "DK", "DL", "DM", "DO", "DP", "DS", "DT", "DU", "DV", "DN", "DA", "EB", "EC", "EF", "EG", "EQ", "EI", "EJ", "EK", "EL", "EM", "EO", "EP", "ES", "ET", "EU", "EV", "EN", "EA", "FB", "FD", "FE", "FG", "FQ", "FJ", "FK", "FL", "FM", "FO", "FP", "FR", "FS", "FT", "FU", "FV", "FN", "FA", "GB", "GC", "GD", "GE", "GF", "GQ", "GI", "GJ", "GK", "GM", "GO", "GP", "GR", "GS", "GT", "GU", "GN", "GA", "QB", "QC", "QD", "QE", "QF", "QG", "QI", "QJ", "QK", "QL", "QM", "QO", "QP", "QR", "QT", "QV", "QN", "QA", "IB", "ID", "IE", "IG", "IQ", "IJ", "IK", "IL", "IM", "IO", "IP", "IR", "IS", "IT", "IU", "IV", "IN", "IA", "JC", "JD", "JE", "JF", "JG", "JQ", "JI", "JK", "JL", "JO", "JP", "JR", "JS", "JT", "JU", "JV", "JN", "JA", "KB", "KC", "KD", "KE", "KF", "KG",
https://twitter.com/TurtleMafiaNFT
https://twitter.com/nftpromises
https://twitter.com/themetagang
https://twitter.com/Leon_Daryl_
https://twitter.com/roundable_io
https://twitter.com/bouncenationke
https://twitter.com/RealCandyClub
https://twitter.com/BittrexGlobal
https://twitter.com/swankyfinance
https://twitter.com/AquaBiteNFT
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{"89470421-c7fa-5cc1-9bce-ccbbb02b5a06": 2299.99, "45d8815f-4123-5f4a-8a86-b9024dcac620": 426.73, "1f8e4051-8270-5902-8d85-88d0c0c19c4d": 499.99, "e6c9fe58-bc4f-529d-a387-77d61af87de4": 8066.66, "fd1fef0e-7fc8-5063-9e92-155fb93713d4": 49.2, "9aa589ba-91e7-5122-a28a-b0b61cab578e": 61.45, "22768213-dec8-5450-89b2-865bd07ccd52": 666.31, "60124c14-dc29-5c80-af4e-620dc2020046": 22.21, "351a1827-a9e8-516f-b477-8c4ff8013d43": 168.32, "5ece2022-479b-5210-b629-93eabf328a0f": 98.36, "6614c4a8-5ae6-502a-af01-6c35568ff5c0": 10.36, "1ad070b0-a4ab-5658-b599-1178c86a379e": 14.05, "a7fccc50-2d41-5aa1-9a99-3c3c3b3af4a8": 61.4, "1985d4ff-cadd-56d9-bd62-824f53a834df": 13.85, "4dfd9559-d640-5b39-a282-d46fbaf174ed": 69.9, "0b9b0210-2064-5876-9af4-0e8f607897af": 256.6, "f9dde014-ef02-5395-8c6e-229e5364d496": 96.57, "7a441d79-476c-5bbc-a1de-f97f4ed96114": 445.86, "885e4a17-35b7-5e81-bf76-3b6da1033aa6": 29.05, "ec318332-9206-5f6c-a218-31a4ef2e6d79": 169.0, "7d80be25-1bb5-517e-924d-a7e63d8b615d": 14.76, "7ba7938b-ff11-567c-87af-8b940
0xbCCeb56DC55213E4AFD3668729f20903D31C82bb
0xbCCeb56DC55213E4AFD3668729f20903D31C82bb
0xbCCeb56DC55213E4AFD3668729f20903D31C82bb

Keybase proof

I hereby claim:

  • I am tripplyons on github.
  • I am tripplyons (https://keybase.io/tripplyons) on keybase.
  • I have a public key ASA5KtyJ1Fc2DNtvxpgYx3KDt-BNycFwToVVYted1zBm0Ao

To claim this, I am signing this object:

@tripplyons
tripplyons / get.js
Created September 8, 2017 03:02
HTTP GET JavaScript
function get(url, cb) {
var xhr = new XMLHttpRequest()
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
cb(xhr.responseText)
}
}
xhr.open("GET", url, true) // true for asynchronous
xhr.send(null)
}