Skip to content

Instantly share code, notes, and snippets.

View teeheehee's full-sized avatar
☸️
DanK ᕕ❨ᐛ❩ᕗ

Dan Kissam teeheehee

☸️
DanK ᕕ❨ᐛ❩ᕗ
View GitHub Profile
@teeheehee
teeheehee / markdownify.user.js
Last active August 29, 2015 14:19
Markdownify CSS display via greasemonkey user script
// ==UserScript==
// @name Markdown CSS display
// @namespace http://howahumanwon.org
// @version 0.1
// @description Changes the HTML display of a page to look like Markdown text.
// @author Dan K
// @match http://*/*
// @match https://*/*
// @grant none
// ==/UserScript==

Keybase proof

I hereby claim:

  • I am teeheehee on github.
  • I am teeheehee (https://keybase.io/teeheehee) on keybase.
  • I have a public key whose fingerprint is C301 35FA 9EE1 63F1 0999 84F2 71C6 DF14 40A3 5DAD

To claim this, I am signing this object:

@teeheehee
teeheehee / Broken_Anagrams_PR.cs
Created December 12, 2017 18:29
Anagrams interview test with some broken features
public static void printAnagramList(String[] words)
{
// Store anagram groups
var groupings = new Dictionary<string, string>();
for (int i = 1; i < words.Length; i++)
{
var ws = GetSortedWord(words[i]);
for (int j = (i + 1); j < words.Length; j++)
{
char[] word2 = words[j].ToCharArray();