Skip to content

Instantly share code, notes, and snippets.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Base64.Encoder
{
public class Base64Encoder
{
@aevv
aevv / fix_nuget.py
Created June 10, 2015 14:11
Removes all nuget automatic updating from project files from a directory
import xml.etree.ElementTree as ET
import sys
import getopt
import os
schema = ''
def main(argv):
try:
opts, args = getopt.getopt(argv, 'f:')
@aevv
aevv / fix_ref.py
Last active August 29, 2015 14:20
Recursively fixes .csproj file hint paths. If a dll is found in a \Debug\ or \Release\ folder with no other hints, will assign that to the debug configuration and create a new hintpath mirroring the other but for release
import xml.etree.ElementTree as ET
import sys
import getopt
import os
schema = ''
def main(argv):
try:
opts, args = getopt.getopt(argv, 'f:')
@aevv
aevv / CookieWebClient.cs
Created April 10, 2013 02:08
reddit shitposting bot to randomly correct "your" usages to "youre"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
namespace YourYoure
{
class CookieWebClient : WebClient
{