Skip to content

Instantly share code, notes, and snippets.

@007v
007v / tracery-with-data.ipynb
Created June 27, 2017 02:52 — forked from aparrish/tracery-with-data.ipynb
Tracery and Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@007v
007v / csv-intro.ipynb
Created June 27, 2017 02:53 — forked from aparrish/csv-intro.ipynb
Quick intro to CSVs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@007v
007v / word_counts_with_counter.ipynb
Created June 27, 2017 02:54 — forked from aparrish/word_counts_with_counter.ipynb
Quick word counts with Counter
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@007v
007v / understanding-word-vectors.ipynb
Created June 27, 2017 02:54 — 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)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@007v
007v / spacy_intro.ipynb
Created June 27, 2017 02:54 — forked from aparrish/spacy_intro.ipynb
NLP Concepts with spaCy
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@007v
007v / find_emoji.r
Created February 27, 2018 02:37 — forked from hrbrmstr/find_emoji.r
find and extract emoji in R
# save this to '_chat.txt` (it require a login)
# https://www.kaggle.com/sarthaknautiyal/whatsappsample
library(ore)
library(dplyr)
emoji_src <- "https://raw.githubusercontent.com/laurenancona/twimoji/gh-pages/twitterEmojiProject/emoticon_conversion_noGraphic.csv"
emoji_fil <- basename(emoji_src)
if (!file.exists(emoji_fil)) download.file(emoji_src, emoji_fil)