Skip to content

Instantly share code, notes, and snippets.

View ZackBoe's full-sized avatar
🐧

Zack Boehm ZackBoe

🐧
View GitHub Profile
@ZackBoe
ZackBoe / spotify-maloja.js
Last active September 14, 2020 21:06
Spotify Recently Played scrobbler for Maloja
const fetch = require('node-fetch');
const qs = require('querystring');
const low = require('lowdb')
const FileSync = require('lowdb/adapters/FileSync')
const db = low(new FileSync('tracks.json', {
serialize: (obj) => JSON.stringify(obj),
deserialize: (data) => JSON.parse(data)
}))
db.defaults({ tracks: [] }).write()
@ZackBoe
ZackBoe / yt-watched.css
Created August 25, 2022 02:13
YouTube Watched Overlay for Stylus
@-moz-document url-prefix("https://www.youtube.com/") {
.ytd-thumbnail-overlay-resume-playback-renderer[style="width: 100%;"] {
position: relative;
}
.ytd-thumbnail-overlay-resume-playback-renderer[style="width: 100%;"]:after {
position: absolute;
bottom: 0;
box-sizing: border-box;
width: 100%;
@ZackBoe
ZackBoe / userstyle.css
Created June 16, 2023 03:09
Blue's News userstyle
:root {
--style-color: #282c34;
--style-color-alt: #1d1f24;
--sale-color: #97c37c;
--headline-color: #4aa4ed;
--visited-color: #c678dd;
--link-color: var(--headline-color);
--max-width: 1200px;
}