View declutter-outlook.user.css
This file contains 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
/* ==UserStyle== | |
@name Declutter Outlook | |
@namespace https://github.com/solarkraft | |
@version 1.0.2 | |
@description Remove all the unnecessary junk from the Outlook Web App and polish it a little | |
@author solarkraft | |
==/UserStyle== */ | |
@-moz-document domain("outlook.office.com") { | |
#app > div > div:nth-child(2) { |
View keybindings.json
This file contains 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
[ | |
// Quickly run tasks | |
{ | |
"key": "cmd+r", | |
"command": "workbench.action.tasks.reRunTask" | |
}, | |
{ | |
"key": "shift+cmd+r", | |
"command": "workbench.action.tasks.runTask" | |
}, |
View syncthing-automerge.py
This file contains 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
import os | |
import time | |
import re | |
import subprocess | |
from watchdog.observers import Observer | |
from watchdog.events import FileSystemEventHandler | |
def get_relative_path(path): | |
return os.path.relpath(path) |
View shut_up_mac.sh
This file contains 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 | |
path=$1 | |
check() { | |
file=$1 | |
echo "Checking $file" | |
# Anything matching /._* | |
if [[ $file =~ \/\._. ]] || [[ $file =~ \/\.DS_Store ]]; then | |
echo "Shut up $file" |
View micropython-webrepl-cli.py
This file contains 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 python | |
import sys | |
import tty | |
import termios | |
import asyncio | |
import websockets | |
uri = "ws://192.168.2.69:8266" | |
password = "" |
View tasks.json
This file contains 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
{ | |
// You can bind "Rerun Last Task" to something convenient like cmd+R | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Run current file", | |
"type": "shell", | |
"command": "echo Running from file: \"$(cat ${file})\"", | |
}, | |
{ |
View .prettierrc
This file contains 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
{ | |
"useTabs": true, | |
"tabWidth": 4, | |
"semi": false, | |
"printWidth": 120 | |
} |
View Tidal.user.js
This file contains 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
// ==UserScript== | |
// @name Tidal declutterer | |
// @namespace http://tampermonkey.net/ | |
// @version 0.7 | |
// @description Gives the Tidal web app some nice visual tweaks and hides non-personalized recommendations (ads). User configurable. | |
// @author solarkraft@mailbox.org | |
// @match https://listen.tidal.com/* | |
// ==/UserScript== | |
// The app is made with react and it would be preferable to directly hook into that to |
View index.html
This file contains 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
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8" /> | |
<link href="static/css/style.css" rel="stylesheet" type="text/css" /> | |
<!-- By far the least important --> | |
<!-- <link href="static/css/tabler-icons.min.css" rel="stylesheet" type="text/css" /> --> | |
<link href="custom.css" rel="stylesheet" type="text/css" /> |
View mailbox-declutter.js
This file contains 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
// ==UserScript== | |
// @name Decluttered mailbox.org | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Make io.ox (mailbox.org's webmailer) a bit nicer on the eyes | |
// @author solarkraft@mailbox.org | |
// @match https://office.mailbox.org/* | |
// @match https://webmail.strato.de/appsuite/* | |
// ==/UserScript== |
NewerOlder