This file contains hidden or 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 Nuke medium everywhere! | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Yes, for the love of God! | |
// @author Richard Vasquez | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 Remove medium on Hacker News | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://news.ycombinator.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 Nuke Medium on Lobste.rs | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author Richard Vasquez | |
// @match https://lobste.rs/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 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== |
This file contains hidden or 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
// Code submission for coding challenge "Prove Your Factorial Fluency" | |
// http://news.dice.com/2013/10/02/coding-challenge-046/ | |
// | |
// Archived at https://web.archive.org/web/20140204075900/http://news.dice.com/2013/10/02/coding-challenge-046/ | |
// | |
// Start with the number 987654321 - Assume the count is from that number to the lowest possible permutation | |
// value of 123456789, and that all values are sorted from maximum to minimum. Find the nth value, in this | |
// case, the 100,000th value. | |
// | |
// Author: Richard R. Vasquez, II |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
namespace OverOiled01 | |
{ | |
/// <summary> | |
/// WAY overdoing Euler Project Problem 1. | |
/// |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
namespace Permute | |
{ | |
class Program | |
{ | |
private const int Iterations = 1000; |
NewerOlder