View a
what | |
is | |
love? | |
baby | |
don't | |
hurt | |
me | |
don't | |
hurt | |
me |
View GitRepoSpider.cs
using System; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
using Newtonsoft.Json; | |
namespace GitSpider | |
{ | |
class Program | |
{ | |
private static string ApiBase => "https://api.github.com/"; |
View SetiDecryptChallenge-1.cs
using System; | |
using System.Linq; | |
using System.Drawing; | |
using System.IO; | |
using System.Drawing.Imaging; | |
namespace CrackTheCode | |
{ | |
class MainClass | |
{ |
View SetiDecryptChallenge.cs
using System; | |
using System.Linq; | |
using System.Drawing; | |
namespace CrackTheCode | |
{ | |
class MainClass | |
{ | |
public static void Main (string[] args) | |
{ |
View ReCaptcha.cs
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net.Http; | |
namespace Antiyes | |
{ | |
public class ReCaptcha | |
{ |
View AdventOfCodeDay21.cs
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace AdventOfCodeDay21 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
View AdventOfCodeDay20.cs
using System; | |
using System.Collections.Generic; | |
namespace AdventOfCodeDay20 | |
{ | |
class MainClass | |
{ | |
public static void Main (string[] args) | |
{ | |
var input = 36000000; |
View AdventOfCodeDay19.cs
using System; | |
using System.IO; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
using System.Text; | |
namespace AdventOfCodeDay19 | |
{ | |
class MainClass |
View AdventOfCodeDay18.cs
using System; | |
using System.IO; | |
using System.Linq; | |
namespace AdventOfCodeDay18 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
View AdventOfCodeDay17.cs
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace AdventOfCodeDay17 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
NewerOlder