Instantly share code, notes, and snippets.
Discover gists
This page has been updated a lot in the past 3 years.Older revisions you might like more than this one:
- June 2021 - list of endpoints for other sports/leagues (i.e. nba, nhl, mlb)
- August 2021 - get historical fantasy league data
- September 2021 - list of endpoints in plain text
- May 2023 - collapsed endpoint response examples
- Mar 2025 - endpoint
-Title:Algunos ejercicios de Ampliación de Cálculo | |
Autor:Pedro Fortuny Ayuso | |
Link:https://openlibra.com/es/book/algunos-ejercicios-de-ampliacion-de-calculo | |
-Title:El tablero medieval de cálculo y las operaciones con números romanos: estudio histórico y pedagógico | |
Autor:José María Núñez | |
Link:https://openlibra.com/es/book/el-tablero-medieval-de-calculo-y-las-operaciones-con-numeros-romanos-estudio-historico-y-pedagogico | |
-Title:Apuntes de cálculo numérico | |
Autor:Sebastián A. Hernández |
font-family = BerkeleyMono Nerd Font | |
#font-family = Iosevka Nerd Font | |
# font-family = SFMono Nerd Font | |
font-size = 20 | |
theme = GruvboxDarkHard | |
shell-integration-features = no-cursor,sudo,no-title | |
cursor-style = block | |
adjust-cell-height = 35% | |
# background-opacity = 0.96 |
Use this to automatically scrape all of your savedInstapaper articles locally as HTML and PDF files. I originally wrote this to read my saved documents on my reMarkable tablet. Instapaper does not have an option to export all my stuff as PDF as far as I could tell (the built-in options only export a subset).
You will need to have the following packages installed:
Configure your username and password, then run the script. It will go through all articles shown on your home page and download the copy Instapaper has stored into a folder calledoutput
as HTML file and convert it into a PDF. You can customize the look by updating the includedstyles.css
file. Any errors will be reported and logged tofailed.txt
. Errors might be due to parsing errors on Instapaper's side or due to PDF conversion issues.
#!/usr/bin/env bash | |
# Change the MAC address of a given interface. | |
# Usage: sudo ./change-mac.bash <interface name> [<new mac address>] | |
# Example: sudo ./change-mac.bash wlan0 11:99:22:88:33:77 | |
# Author: @richin13 | |
if ["$#"-lt 1 ];then | |
echo"Usage:$0 <interface name> [mac address]" | |
exit 1 | |
fi |