Skip to content

Instantly share code, notes, and snippets.

View chrisg32's full-sized avatar

Chris Gonzales chrisg32

View GitHub Profile
using System;
using System.Collections.Generic;
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$using System.Text;
$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;
$endif$
namespace $rootnamespace$
{
public class $safeitemrootname$
{
@chrisg32
chrisg32 / TexasJuryDuty.py
Last active March 22, 2016 04:53
A simple python script that I created when I had jury duty (Texas) and had to check daily to see if I need to report in.
import cookielib
import socket
import urllib
import urllib2
#r requires BeautifulSoup4
from bs4 import BeautifulSoup
#your jury summons info
participant_number = "#########"
zip_code = "#####"
@chrisg32
chrisg32 / fiddle.css
Last active August 29, 2015 14:04
Calendar Icon Creator
#colorpickers {
display: inline-table;
}
#colorpickers:before, #colorpickers:after {
content:"";
display: table;
}
#colorpickers:after {
clear:both;
}