Skip to content

Instantly share code, notes, and snippets.

View TinoDidriksen's full-sized avatar
🐺

Tino Didriksen TinoDidriksen

🐺
View GitHub Profile
@TinoDidriksen
TinoDidriksen / youtube-sub-list.js
Created August 30, 2017 15:07
YouTube Subscription List Density
function move_descs() {
$('ytd-item-section-renderer').find('#description-text').each(function() {
var e = $(this);
var p = e.closest('ytd-shelf-renderer');
e.detach();
p.append(e);
});
}
$(function() {
@TinoDidriksen
TinoDidriksen / keybase.md
Created April 27, 2017 06:47
keybase.md

Keybase proof

I hereby claim:

  • I am TinoDidriksen on github.
  • I am tinodidriksen (https://keybase.io/tinodidriksen) on keybase.
  • I have a public key whose fingerprint is 2CAE AFA9 987D B153 FB4B CF1C 3C2D D086 F452 3F9D

To claim this, I am signing this object:

@TinoDidriksen
TinoDidriksen / 10-apriori.cpp
Created September 29, 2016 15:01
DM555 Assignment 1: Apriori Algorithm
#include <iostream>
#include <set>
#include <vector>
#include <map>
#include <algorithm>
#include <string>
using namespace std; // Wrong, but easier to read in homework
// Helper types
typedef set<char> row_t;
#!/bin/bash
vshadow.exe -q | grep SNAP | perl -wpne 'chomp; s/^.*(\{[^}]+\}).*$/$1/; print `vshadow -ds=$_`; $_ = "";'