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 bash | |
| # GistID: 21910d755c6222cc3e89bce8071c9bd5 | |
| STATE_FILE="/tmp/price_prev" | |
| price=$($1) | |
| subject=$2 | |
| notify=${3:-'true'} | |
| prev="" |
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
| #!/bin/zsh | |
| # Retrieve a link from history firefox with the title | |
| # GistID: b0f0f613a0e9752f75654d7dd569841e | |
| history_dir=${FIREFOX_PROFILE_DIR:-~/.mozilla/firefox/lpaxa2pv.travail-1729068729785} | |
| title=$1 | |
| database=file:${history_dir}/places.sqlite?immutable=1 | |
| sqlite3 $database <<EOF | |
| SELECT url FROM moz_places WHERE title LIKE '%${title}' | |
| EOF |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| module https://gist.github.com/tyjak/fc9b3cfc6d616fdc5df1718729d44d0f | |
| go 1.20 |
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 bodyreplace | |
| import ( | |
| "bytes" | |
| "io" | |
| "net/http" | |
| "regexp" | |
| ) | |
| type Config struct { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder