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 Youtube minimalism | |
// @namespace https://churchman.nl/ | |
// @match https://*.youtube.com/* | |
// @grant none | |
// ==/UserScript== | |
function del(selectors) { | |
selectors.forEach((selector) => { | |
const ele = document.querySelector(selector); | |
if (ele) { |
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
function h = tabularHeatMap(data, varargin) | |
%% tabularHeatMap | |
% Author: Thomas Churchman | |
% Date: 2015/10/14 | |
% | |
% Plot a matrix as a tabular heat map. | |
% | |
% INPUTS | |
% data (required) - The matrix to plot as a tabular heat map | |
% OPTIONS (Optional) - Optional arguments as key-value pairs |