I hereby claim:
- I am cmpadden on github.
- I am colton (https://keybase.io/colton) on keybase.
- I have a public key ASCwK3SQtS5XjIp74HiayYF2vH29XmcKl4wxHEnaNjw3OQo
To claim this, I am signing this object:
| /* ==UserStyle== | |
| @name HN Minimalist | |
| @description Opinionated minimalist styling for Hacker News | |
| @match *://news.ycombinator.com/* | |
| ==/UserStyle== */ | |
| /******************************************************************************** | |
| * COLORS * | |
| ********************************************************************************/ | |
| :root { |
| #!/usr/bin/env bash | |
| # Apache Arrow - Python Development Environment Configuration | |
| ################################################################################################################### | |
| # Environment Setup # | |
| ################################################################################################################### | |
| git clone https://github.com/apache/arrow.git |
| from functools import reduce | |
| from pyspark.sql import DataFrame, SparkSession | |
| spark = SparkSession \ | |
| .builder \ | |
| .appName('Union DFs') \ | |
| .getOrCreate() | |
| df1 = spark.createDataFrame( | |
| [ |
| #!/bin/bash | |
| # Generate common PNG sizes from an SVG using ImageMagick | |
| SOURCE="example.svg" | |
| SIZES=("16" "32" "64" "128" "256" "512" "1024") | |
| for i in "${SIZES[@]}"; do | |
| DESTINATION="${SOURCE/\.svg/-${i}.png}" | |
| printf "%s\n" "Generating $DESTINATION..." |
| """ | |
| Convert CSVs into Excel sheets | |
| """ | |
| import glob | |
| import pandas as pd | |
| with pd.ExcelWriter("output.xlsx") as writer: | |
| for file in glob.glob("*.csv"): | |
| df = pd.read_csv(file) |
I hereby claim:
To claim this, I am signing this object: