Skip to content

Instantly share code, notes, and snippets.

Avatar
⌨️
Cache rules everything around me.

Phred Lane fearphage

⌨️
Cache rules everything around me.
View GitHub Profile
@fearphage
fearphage / README.md
Last active August 22, 2022 21:08
Modifying Archidekt to add some convenience functionality
View README.md
@fearphage
fearphage / clap.sh
Created January 24, 2020 16:02 — forked from Microeinstein/clap.sh
Command Line Audio Playlist
View clap.sh
#!/bin/bash
# Requirements: dialog mpv
# Optional: youtube-dl wget hq
# Arguments: none
#
# Changelog:
# > + from function to standalone script
# + menu stack for saving previous menu command
# + choices stack for saving previous menu choice
@fearphage
fearphage / multiple_ssh_setting.md
Created December 30, 2019 04:07 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts
View multiple_ssh_setting.md
View .gitignore-global
# Python/Django files
*.pot
*.py[cod]
# Folder view configuration files
.DS_Store
Desktop.ini
# Thumbnail cache files
._*
@fearphage
fearphage / README.md
Created September 11, 2019 17:26
Collection of shell functions wrapping the Azure CLI
View README.md

az-get

Returns a property value of a resource passing additional params as needed.

Usage

az-get <resource> <property> [additional params]
@fearphage
fearphage / meh.sh
Created July 10, 2019 11:59
Does mapfile work on a mac?
View meh.sh
#!/usr/bin/env bash
mapfile -t meh < <(ps -ax)
echo "found ${#meh[@]} processes"
@fearphage
fearphage / expire-emails.js
Created October 2, 2018 20:34
Archives (removes from inbox) emails tagged with "expires" tag that are more than 10 days old
View expire-emails.js
// The name of the Gmail Label to expire
var GMAIL_LABEL = 'expires';
// Archive messages automatically after N days
var EXPIRE_AFTER = '10';
/*
* STOP EDITING BELOW HERE UNLESS
* YOU KNOW WHAT YOU'RE DOING
*
@fearphage
fearphage / output.md
Created June 15, 2018 16:20
Sends content before and after another stream
@fearphage
fearphage / h264-vivaldi-linux.md
Created May 23, 2018 04:38 — forked from ruario/h264-vivaldi-linux.md
How to enable HTML5 MP4 (H.264/AAC) video in Vivaldi for Linux, via an alternative FFMpeg library
View h264-vivaldi-linux.md

How to enable HTML5 MP4 (H.264/AAC) video in Vivaldi for Linux, via an alternative FFMpeg library

Intro

The following is a quick guide to get this working on various Linux distros. As a side note, if you have Chrome installed alongside Vivaldi, Netflix should also work after making these changes. Alternatively, use my latest-widevine.sh to fetch and extract Chrome's copy of Widevine, so that it can be used by Vivaldi.

If you don't have working Flash video and need that in addition, please refer to these instructions.

Note: This guide is primarrily aimed at users of Vivaldi stable releases. If it does not solve your issues, read this in addition.

@fearphage
fearphage / userstyle_jsonview.css
Created June 18, 2017 18:35 — forked from lennybacon/userstyle_jsonview.css
Dark Theme for Firefox/Chrome add-ons JSON View (http://jsonview.com/) and JSON Formatter (https://github.com/callumlocke/json-formatter) by using the add-on Stylish (https://userstyles.org/)
View userstyle_jsonview.css
div#json, div#jfContent{
margin: 0;
padding: 20px;
background: #191919;
color: #C4BD97;
position: fixed;
top:0;
bottom:0;
left:0;
right:0;