Skip to content

Instantly share code, notes, and snippets.

View mfreyeso's full-sized avatar

Mario Reyes Ojeda mfreyeso

View GitHub Profile
@mfreyeso
mfreyeso / understanding-word-vectors.ipynb
Created November 25, 2018 00:27 — forked from aparrish/understanding-word-vectors.ipynb
Understanding word vectors: A tutorial for "Reading and Writing Electronic Text," a class I teach at ITP. (Python 2.7) Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mfreyeso
mfreyeso / patrones.md
Created March 20, 2017 12:55
Patrones de Arquitectura

Welcome to StackEdit!

Hey! I'm your first Markdown document in StackEdit[^stackedit]. Don't delete me, I'm very helpful! I can be recovered anyway in the Utils tab of the Settings dialog.


Documents

@mfreyeso
mfreyeso / .py
Created March 7, 2017 15:12
Speech API Google
import re
from transcribe import main
def test_main(resource, capsys):
main(resource('audio.raw'))
out, err = capsys.readouterr()
assert re.search(r'how old is the Brooklyn Bridge', out, re.DOTALL | re.I)
@mfreyeso
mfreyeso / openapi_specification_fka_swagger_specification_tutorial.md OpenAPI Specification (fka Swagger Specification) tutorial files from [API Handyman blog](http://apihandyman.io)