Skip to content

Instantly share code, notes, and snippets.

View nathankellenicki's full-sized avatar

Nathan Kellenicki nathankellenicki

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<title>Wordle Solver</title>
</head>
<body>
<div id="suggestions"></div>
<input id="answer" /> <button id="answer_button">Go</button>
<script>
@nathankellenicki
nathankellenicki / hwnftg.js
Last active October 28, 2022 21:57
Code for finding unique owners of Hot Wheels NFT Garage series's
import axios from "axios";
import moment from "moment";
const Series = {
"Series 1 Employee Rodger Dodger": ["401460"],
"Series 1": ["353670", "353671", "353672", "353673", "353674", "353675", "353676", "353677", "353678", "353679", "353680", "353681", "353682", "353683", "362065", "353685", "353686", "353687", "353688", "353689", "353690", "353691", "362066", "353693", "353694", "353695", "353696", "353697", "353698", "362067", "353700", "353701", "353702", "353703", "353704", "362068", "353706", "353707", "353708", "353709"],
"Series 2": ["476736", "473693", "473694", "473695", "473696", "473697", "473698", "473699", "473700", "476737", "473702", "473703", "473704", "473705", "473706", "473707", "473708", "473709", "473710", "476738", "473712", "473713", "473714", "473715", "473716", "473717", "473718", "473719", "473720", "476739", "473722", "473723", "473724", "473725", "473726", "473727", "473728", "473729", "473730", "476740", "473732", "473733", "473734"],
"Series 3": ["542222", "54222
export MARKPATH=$HOME/.marks
function jump {
cd -P $MARKPATH/$1 2>/dev/null || echo "No such mark: $1"
}
function mark {
mkdir -p $MARKPATH; ln -s "$(pwd)" $MARKPATH/$1
}
function unmark {
rm -i $MARKPATH/$1
}