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 time | |
import datetime | |
import httpx | |
class ThrottleTransport(httpx.HTTPTransport): | |
""" | |
A custom httpx transport that adds some basic rate-throttling functionality. | |
Args: |
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
#!/usr/bin/env python3 | |
import csv | |
import html | |
import sys | |
from pathlib import Path | |
if len(sys.argv) != 2: | |
print(f"Usage:\n\t{sys.argv[0]} [lastpass_export.csv]") | |
sys.exit(1) |
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
package main | |
import ( | |
"fmt" | |
"os" | |
"sort" | |
"strings" | |
) | |
func main() { |

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
// This file was generated from JSON Schema using quicktype, do not modify it directly. | |
// To parse and unparse this JSON data, add this code to your project and do: | |
// | |
// txns, err := UnmarshalTransactionList(bytes) | |
// bytes, err = txns.Marshal() | |
package main | |
import "encoding/json" |
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
// ==UserScript== | |
// @name Real Estate Priced in BTC | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Display all home prices in BTC. | |
// @author Phteven | |
// @match http*://www.zillow.com/* | |
// @match http*://www.redfin.com/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none |
OlderNewer