-
Clone an existing repository:
git clone <repo>
(e.g.
https://gist.github.com/1125520.git
). -
[Checkout and pull an existing branch][gcp]:
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
Here's the idea, | |
You work in tech. You're in the NYC area. | |
You care about "people" issues. You think the hardest problem in computing is "people". | |
You are interested in how we work. How to structure work. How to work together. | |
How to help your colleagues succeed. | |
And... | |
There's so much to learn: |
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 os | |
def split(filehandler, delimiter=',', row_limit=10000, | |
output_name_template='output_%s.csv', output_path='.', keep_headers=True): | |
""" | |
Splits a CSV file into multiple pieces. | |
A quick bastardization of the Python CSV library. | |
Arguments: |