Skip to content

Instantly share code, notes, and snippets.

@KorigamiK
KorigamiK / quizes.md
Last active April 26, 2025 02:46
Affective Computing

title: Affective Computing papersize: a4 numbersections: true documentclass: scrartcl toc: false toc-title: 'Contents' colorlinks: true toccolor: Mahogany linkcolor: BrickRed

@KorigamiK
KorigamiK / site_search_urls.md
Created May 3, 2025 13:22 — forked from siboehm/site_search_urls.md
Collection of site search urls

Site-specific search URLs

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.

How to add

  • 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).

- eat eggs
@KorigamiK
KorigamiK / extract_firefox_tabs.py
Created March 20, 2026 01:44
Extract the files from a firefox profile
#!/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