This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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": "[email protected]", | |
"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.", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
array( | |
'AL' => 'Alabama', | |
'AK' => 'Alaska', | |
'AZ' => 'Arizona', | |
'AR' => 'Arkansas', | |
'CA' => 'California', | |
'CO' => 'Colorado', | |
'CT' => 'Connecticut', |