Skip to content

Instantly share code, notes, and snippets.

View RichardVasquez's full-sized avatar
🐿️

Richard Vasquez RichardVasquez

🐿️
View GitHub Profile
@RichardVasquez
RichardVasquez / nukeMediumDevurls.js
Created July 30, 2019 17:26
Basically, I've gotten tired of medium.com, and I want to avoid temptation, so this TamperMonkey script removes the Medium.com block from DevURLs.com
// ==UserScript==
// @name Nuke Medium
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Just avoid temptation and don't feed medium.com links
// @author Richard Vasquez
// @match https://devurls.com/
// @grant none
// ==/UserScript==
@RichardVasquez
RichardVasquez / aoc2020-01.cs
Created December 1, 2020 17:12
Day 1 Advent of Code 2020
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using AdventOfCode.Library;
namespace AdventOfCode
{
// Day 01
internal static class Program
@RichardVasquez
RichardVasquez / aoc2020-02.cs
Created December 2, 2020 05:29
Day 2 Advent of Code 2020
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using AdventOfCode.Library;
namespace AdventOfCode
{
internal static class Program
{
@RichardVasquez
RichardVasquez / aoc2020-03.cs
Created December 3, 2020 05:20
Day 3 Advent of Code 2020
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using AdventOfCode.Library;
namespace AdventOfCode
{
internal static class Program
{
@RichardVasquez
RichardVasquez / aoc2020-04.cs
Created December 4, 2020 05:51
Day 4 Advent of Code 2020
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using AdventOfCode.Library;
namespace AdventOfCode
{
// Day 04
// THIS IS JUNK! IT WORKS BUT IT IS JUNK!
@RichardVasquez
RichardVasquez / aoc2020-05.cs
Last active December 1, 2021 20:55
Day 5 Advent of Code 2020
using System;
using System.Collections.Generic;
using System.Linq;
using AdventOfCode.Library;
namespace AdventOfCode
{
// Day 05 - Massive cleanup
internal static class Program
{
@RichardVasquez
RichardVasquez / CustomsForm.cs
Created December 6, 2020 06:07
Day 6 Advent of Code - 2020
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
namespace AdventOfCode
{
[DebuggerDisplay("People: {People} - Distinct: {DistinctQuestions} - AllMatch: {AllMatchedQuestions}")]
public class CustomsForm
{
@RichardVasquez
RichardVasquez / Bag.cs
Last active December 1, 2021 20:54
Day 7 Advent of Code 2020
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
namespace AdventOfCode
{
[DebuggerDisplay("Name: {Name} Parents: {Parents}")]
public class Bag
{
public readonly string Name;
@RichardVasquez
RichardVasquez / aoc2020-08.cs
Created December 8, 2020 17:16
Day 8 Advent of Code 2020
using System.Collections.Generic;
using System.Linq;
using AdventOfCode.Library;
using AdventOfCode.Library.Interpreter;
namespace AdventOfCode
{
// Day 8
internal static class Program
{
@RichardVasquez
RichardVasquez / aoc2020-09.cs
Created December 9, 2020 05:18
Day 9 Advent of Code 2020
using System;
using System.Collections.Generic;
using System.Linq;
using AdventOfCode.Library;
namespace AdventOfCode
{
// Day 9
internal static class Program
{