Skip to content

Instantly share code, notes, and snippets.

{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Jim Kutter",
"label": "Chief Technology Officer at Mailinglists.com",
"image": "",
"email": "kutter@mailinglists.com",
"phone": "",
"url": "https://jimkutter.com/",
"summary": "Hello! I'm a seasoned technology professional with over 25 years of experience in the industry. Currently, I'm serving as the CTO for a small mailing list broker where I oversee the technology strategy and implementation.\n\nMy passion for technology dates back to when I was a young boy with my parent's Apple IIc and has only grown since then. In my free time, I enjoy tinkering with old computers and keeping up with the latest tech trends.\n\nWhen I'm not working with computers, you can usually find me outdoors. I love mountain biking, skiing, and hiking, and I make it a priority to get outside and explore nature whenever I can.",
@jimkutter
jimkutter / convert.py
Last active January 29, 2019 14:11
Uses python 3, may work with 2. Install xlrd, and tqdm using pip. Then pass xls(x) filename as first argument.
import xlrd
import sys
from tqdm import tqdm
filename = sys.argv[1]
book = xlrd.open_workbook(filename)
sheet = book.sheet_by_index(0)
header = sheet.row(0)
@jimkutter
jimkutter / convert.py
Created January 29, 2019 14:11
Uses python 3, may work with 2.
import xlrd
import sys
from tqdm import tqdm
filename = sys.argv[1]
book = xlrd.open_workbook(filename)
sheet = book.sheet_by_index(0)
header = sheet.row(0)
@jimkutter
jimkutter / gist:1370525
Created November 16, 2011 16:21
List of US States in a PHP array
<?php
array(
'AL' => 'Alabama',
'AK' => 'Alaska',
'AZ' => 'Arizona',
'AR' => 'Arkansas',
'CA' => 'California',
'CO' => 'Colorado',
'CT' => 'Connecticut',