title: Affective Computing papersize: a4 numbersections: true documentclass: scrartcl toc: false toc-title: 'Contents' colorlinks: true toccolor: Mahogany linkcolor: BrickRed
These work in Firefox and Chrome, where %s is replaced with the search query. For Raycast and Alfred, the %s should be replaced with {query}. For more details also see my blogpost.
- Chrome: Settings -> Search engine -> Manage search engines and site search -> Add
- Firefox: Bookmarks -> Manage Bookmarks -> Add Bookmark, then set the keyword to the desired shortcut
I recommend picking keywords that are easy to memorize, like am=Amazon, an=Anaconda, gi=Github,... and switching to three letters when the two letter abbreviation appears to commonly in a sentence (eg goi=Google images, gom=Google Maps).
- Amazon (Germany): https://www.amazon.de/s?k=%s
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
| - eat eggs |
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 | |
| """Extract tab details from a Firefox/Zen profile or sessionstore file.""" | |
| from __future__ import annotations | |
| import argparse | |
| import json | |
| import struct | |
| import sys | |
| from datetime import datetime |
OlderNewer