Skip to content

Instantly share code, notes, and snippets.

View jairovadillo's full-sized avatar

Jairo Vadillo jairovadillo

View GitHub Profile
@jairovadillo
jairovadillo / CONTRIBUTING-ios.md
Last active September 17, 2020 10:17
Contributing to 21 Buttons

Contributing to iOS

Code standards

Code architecture, principles and standards can be found on CODING_PRACTICES

Code Style

We are following Ray Wenderlich's Swift Style Guide.

import redis
from collections import Counter
REDIS_URL =
REDIS_PORT =
REDIS_DB =
REDIS_PASSWORD =
r = redis.StrictRedis(host=REDIS_URL, port=REDIS_PORT, db=REDIS_DB,
password=REDIS_PASSWORD)
@jairovadillo
jairovadillo / CODE_ARCH.md
Last active February 10, 2022 13:56
Coding architecture and best practices