Skip to content

Instantly share code, notes, and snippets.

@micah686
micah686 / PokemonRandomizer
Created September 13, 2014 20:38
Pokemon Randomizer
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Pokemon Generator</title>
<meta name="description" content="A generator for randomizing Pokemon Battles">
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<style>
@micah686
micah686 / ColorChangerWindowClick.cs
Created September 30, 2022 05:44
Touch Event Info
using System.Data;
using System.Drawing;
using System.Linq;
public class ColorChangerWindowClick
{
private void button1_Click(object sender, EventArgs e)
{
button1.BackColor = Color.FromArgb(rand.Next(256), rand.Next(256), rand.Next(256));
button1.Text = RandomString(50);
//MessageBox.Show("button Clicked");
@micah686
micah686 / Steam_Deck.MD
Last active December 3, 2022 04:05
Steam Deck Links
@micah686
micah686 / Complete.cs
Last active April 15, 2023 02:47
TestCert-- Generate Certificate
using System;
using System.IO;
using System.Security;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Threading.Tasks;
namespace TestCert
{
internal class Complete
@micah686
micah686 / hulublock.txt
Last active April 28, 2023 14:57
Hulublock
ads.hulu.com
a.huluad.com
hulu.112.2o7.net
huludev.112.2o7.net
ll.a.hulu.com
t2.huluim.com
t-ak.hulu.com
track.hulu.com
tw.i.hulu.com
urlcheck.hulu.com
@micah686
micah686 / CertHelper.cs
Created November 11, 2023 17:40
Create X509Cert
using System.Globalization;
using System.Net;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
internal class CertHelper
{
internal static void CreateCerts()
{
var rootCA = CreateX509Cert(CertTypes.RootCA);
var normalCert = CreateX509Cert(CertTypes.UtilitiesAPI, "ReflectTube.RootCA.key");