Skip to content

Instantly share code, notes, and snippets.

View mcapodici's full-sized avatar

Martin Capodici mcapodici

View GitHub Profile
1. Install user CSS extension (or similar): https://chrome.google.com/webstore/detail/user-css/okpjlejfhacmgjkmknjhadmkdbcldfcb?hl=en
2. Apply the following style to news.ycombinator.com
.c00, .c00 a:link { color:#000000; }
.c5a, .c5a a:link, .c5a a:visited { color:#000000; }
.c73, .c73 a:link, .c73 a:visited { color:#000000; }
.c82, .c82 a:link, .c82 a:visited { color:#000000; }
.c88, .c88 a:link, .c88 a:visited { color:#000000; }
.c9c, .c9c a:link, .c9c a:visited { color:#000000; }
.cae, .cae a:link, .cae a:visited { color:#000000; }
@mcapodici
mcapodici / Program.cs
Created July 26, 2015 21:00
List Monad implemented in C#
using System;
using System.Collections.Generic;
using System.Linq;
namespace Monad
{
class Program
{
static void Main(string[] args)
{