Skip to content

Instantly share code, notes, and snippets.

View olejorgenb's full-sized avatar

Ole Jørgen Brønner olejorgenb

View GitHub Profile
@olejorgenb
olejorgenb / autosuggest-complete.zsh
Created September 3, 2017 02:13
Offer zsh-autosuggestion as a completion candidate
# Make the autosuggestion a completion value
function _autosuggest_complete() {
local -a candidates
# IMPROVEMENT: If we can be sure that autosuggest has already run we can
# just grab the suggestion variable, avoiding the double call
local orignal_ZSH_AUTOSUGGEST_USE_ASYNC=$ZSH_AUTOSUGGEST_USE_ASYNC
ZSH_AUTOSUGGEST_USE_ASYNC=0 # need the result immediately
_zsh_autosuggest_strategy_$ZSH_AUTOSUGGEST_STRATEGY "$BUFFER"
ZSH_AUTOSUGGEST_USE_ASYNC=$orignal_ZSH_AUTOSUGGEST_USE_ASYNC
@olejorgenb
olejorgenb / _copyq
Last active June 3, 2020 18:07
zsh completions for copyq
#compdef copyq
#autoload
typeset -A cmds
cmds=(
show 'show main window and optionally open tab with given name'
hide 'hide main window'
toggle 'show or hide main window'
menu 'open context menu'
@olejorgenb
olejorgenb / dconf-editor-with-extensions-schemas
Created December 10, 2017 17:17
dconf-editor-with-extensions-schemas
#!/usr/bin/env zsh
## man dconf-editor:
#
# > dconf-editor reads gsettings schemas from $XDG_DATA_DIRS/glib-2.0/schemas
# > to obtain descriptions, default values and allowed values for keys.
#
# It only reads compiled schemas and only look for a single file -
# 'gschemas.compiled' per XDG_DATA_DIR though.. (??)
#
@olejorgenb
olejorgenb / copy-permalink.lua
Last active July 2, 2023 02:07
mpv user script: copy a command that will resume video at current position
@olejorgenb
olejorgenb / places-exploration.sql
Last active April 7, 2024 00:35
Firefox places.sqlite exploration (browser history)
--- Firefox places.sqlite exploration
-- https://developer.mozilla.org/en-US/docs/Mozilla/Tech/Places/Database
-- https://wiki.mozilla.org/images/d/d5/Places.sqlite.schema3.pdf
-- http://forensicswiki.org/wiki/Mozilla_Firefox_3_History_File_Format (probably somewhat outdated)
-- [select text -> right click -> search] does not set from_visit :(
-- Gotchas :angry-face: https://superuser.com/a/1405880/153095 (Explains why your history is incomplete)
function applyMotionBlur(actor, n, dir, wFn=function() { return 1; }) {
function blurShaderSource() {
function SAMPLE(offx, offy, w) {
return `pixel += ${w} * texture2D (tex, cogl_tex_coord_in[0].st + vec2(width_inv, height_inv) * vec2 (${offx}, ${offy}));`
}
function motionBlur(n, sign=1) {
let vs = []
let weights = []
let sum = 0
@olejorgenb
olejorgenb / norway_ele.py
Created September 1, 2019 16:32
Lookup elevation in Norway based on geonorge's wms service
"""
Author: Ole Jørgen Brønner, olejorgen@yahoo.no
Lookup elevation in Norway (NB: might need to change dataset for northern Norway)
Dependencies:
- owslib
- rasterio
"""
#!/usr/bin/env gjs
/*
Create a window with given size constraints
Run it with:
gjs $FILENAME
*/
const Gio = imports.gi.Gio;
@olejorgenb
olejorgenb / compare-with-git-version.sh
Last active February 20, 2024 19:34
Compares the published firefox port of Tab Modifier with the github source code
#!/bin/bash
# set -x
# The URLs for the extension and the Git repo
EXTENSION_URL="https://addons.mozilla.org/firefox/downloads/file/4099496/tab_modifier-0.21.0.xpi"
GIT_REPO_URL="https://github.com/furybee/chrome-tab-modifier.git"
# The names of the extension and Git repo directories
EXTENSION_DIR="tab_modifier_extension"
@olejorgenb
olejorgenb / toggle-calendars-visibility.js
Last active November 16, 2023 12:19
Toggle meeting room calendar visibility in Google Calendar
// bookmarklet_title: Toggle meeting rooms
// bookmarklet_about: Toogle meeting room calendar visibility (Google Calendar)
function findCalendarCheckboxesOf(labelRegex) {
const calendarDiv = document.querySelector("[aria-label='Other calendars']")
let matches = []
for (const li of calendarDiv.querySelectorAll("li")) {
if (li.innerText.match(labelRegex)) {
matches.push(li.querySelector("input[type=checkbox]"))
}