Skip to content

Instantly share code, notes, and snippets.

View beettlle's full-sized avatar

Cesar Delgado beettlle

View GitHub Profile
Brewing related classes
- Yeast Essentials, While Labs (San Diego, CA) - October 2012
- Introduction to Practical Brewing, University of California Davis, (Davis, CA) - January 2013
- Intensive Brewing Science for Practical Brewing, University of California Davis, (Davis, CA) - January 2014
Cicerone® Certification : Level 1 Beer Server
American Homebrewers Association Competition
* Big Beers, Belgian and Barleywines Festival (Vail, CO) - January 2013
- 2nd place, Category 16, Nelson Sauvin Saison
@beettlle
beettlle / mint-convert.py
Created October 15, 2017 19:56
Convert Mint output to something useful to me
with open("./transactions.csv", 'rb') as csvfile:
with open("./transactions2.csv", 'wb') as csvfile2:
fileread = csv.reader(csvfile, delimiter=',', quotechar='"')
filewrite = csv.writer(csvfile2, delimiter=',', quotechar='"', quoting=csv.QUOTE_ALL)
for row in fileread :
if row[3] != 'Amount' :
row.append(row[3] if row[4] == 'credit' else str(float(row[3])*-1))
else:
row.append("Calculated Amount")
filewrite.writerow(row)
@beettlle
beettlle / sled.nc
Created August 8, 2017 02:58
Sled gcode
(Generated by PartKam Version 0.05)
G20 G90 G40
(profile 1)
G0 Z0.25
T0 M6
G17
M3
G0 X7.7632 Y9.7698