Skip to content

Instantly share code, notes, and snippets.

View alexgurrola's full-sized avatar
🔮
Building the Future of Technology

Alex Gurrola alexgurrola

🔮
Building the Future of Technology
View GitHub Profile
from __future__ import with_statement
import random
def create_chain(file_paths):
word_counter = {}
previous_word = ""
for path in file_paths:
with open(path) as file:
for line in file:
words = line.split(" ")
@alexgurrola
alexgurrola / Private-pypi-howto
Created February 18, 2019 21:30 — forked from Jaza/Private-pypi-howto
Guide for how to create a (minimal) private PyPI repo, just using Apache with directory autoindex, and pip with an extra index URL.
*
@alexgurrola
alexgurrola / git_branch_naming.md
Created February 18, 2019 21:29 — forked from revett/git_branch_naming.md
Git Branch Naming Conventions

<type>/<name>

<type>

bug    - Code changes linked to a known issue.
feat   - New feature.
hotfix - Quick fixes to the codebase.
junk   - Experiments (will never be merged).