Skip to content

Instantly share code, notes, and snippets.

View jquintus's full-sized avatar

Josh jquintus

  • MasterDevs
  • New York, NY
  • 17:57 (UTC -04:00)
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
https://go.microsoft.com/fwlink/?LinkID=529180&aid=0ce3a7ad-5cba-4b30-b35f-5fd40eab402d&invite=0d73f8bd-bd3f-46e6-859e-1e4d190b5d5c&type=ByLink
@jquintus
jquintus / gapper.cs
Created January 14, 2019 21:08
Outputs the difference between two dates specified on the command line
using System;
using System.IO;
using System.Text.RegularExpressions;
namespace Gapper
{
public class Program
{
public static void Main(string[] args)
{
using System;
using System.Threading.Tasks;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Queue;
namespace QTils
{
public static class Program
{
public static async Task Main(string[] args)
using HtmlAgilityPack;
using System;
using System.IO;
using System.Linq;
using System.Text;
namespace ConsoleApp1
{
class Program
{
@jquintus
jquintus / LoadIt.js
Created May 15, 2018 17:47
Loads all hidden diffs in a github pull request
Array.from(document.getElementsByClassName("js-button-text")).forEach(b => b.click());
class Program
{
static void Main(string[] args)
{
char[,] cars = new char[3, 4]
{
{'a', 'b', 'c', 'd' },
{'e', 'f', 'g', 'h' },
{'h', 'i', 'j', 'k' },
};
@jquintus
jquintus / SLN.bat
Created September 7, 2016 16:39
batch file to find and open the prefered sln file
REM ******************************************
REM SLN
REM ******************************************
REM Find and open the prefered sln file
REM If a prefered file can't be found, just
REM open the first one you see
REM ******************************************
:SLN
REM Using arrays in batch
REM http://www.tutorialspoint.com/batch_script/batch_script_arrays.htm
@jquintus
jquintus / chart.fs
Last active October 2, 2016 21:46 — forked from anonymous/chart.cs
// System
// System.Core
// System.Drawing
// System.Numerics
// System.Windows.Forms
// System.Windows.Forms.DataVisualization
open FSharp.Charting
open System;