Skip to content

Instantly share code, notes, and snippets.

View mindingdata's full-sized avatar

Wade Gausden mindingdata

  • Auckland, New Zealand
View GitHub Profile
swagger: "2.0",
info:
title: "Swagger Sample App",
description: "Please to click Terms of service"
termsOfService: "javascript:alert(document.cookie)"
contact:
name: "API Support",
url: "javascript:alert(document.cookie)",
email: "javascript:alert(document.cookie)"
version: "1.0.1"
USE [master]
GO
/****** Object: Database [DapperExample] Script Date: 3/08/2019 3:26:01 PM ******/
CREATE DATABASE [DapperExample]
GO
USE [DapperExample]
GO
/****** Object: Table [dbo].[Event] Script Date: 3/08/2019 3:26:01 PM ******/
SET ANSI_NULLS ON
GO
struct MyStruct
{
public int MyValue { get; set; }
public void UpdateMyValue(int value)
{
MyValue = value;
}
}
using HtmlAgilityPack;
using LinqToWiki.Generated;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UFCKnockouts.Downloader
@mindingdata
mindingdata / RockNoRepeat.cs
Created January 20, 2016 19:32
Easy C# Code to pull TheRock.net.nz playlist
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using HtmlAgilityPack;
using System.Text.RegularExpressions;
using System.IO;