Skip to content

Instantly share code, notes, and snippets.

@aparrish
aparrish / understanding-word-vectors.ipynb
Last active April 30, 2026 09:31
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.
@asher-pembroke
asher-pembroke / partial.py
Last active March 12, 2025 08:35
A partial function decorator that doesn't suck (python3.7)
# pip install decorator
# pip install python-forge
from decorator import decorator, decorate
import forge
import inspect
def decorator_wrapper(f, *args, **kwargs):
"""Wrapper needed by decorator.decorate to pass through args, kwargs"""
return f(*args, **kwargs)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.