Clásico juego de Simon donde el objetivo consiste en imitar la secuencia de botones musicales que se le va presentando.
Tecnologias utilizadas: HTML, CSS, Javascript, JQuery, Bootstrap.
| filetype off | |
| set nu | |
| set relativenumber | |
| set cursorline | |
| set encoding=utf-8 | |
| set showmatch | |
| set showcmd | |
| syntax enable | |
| call plug#begin('~/.vim/plugged') |
| """ | |
| preprocess-twitter.py | |
| python preprocess-twitter.py "Some random text with #hashtags, @mentions and http://t.co/kdjfkdjf (links). :)" | |
| Script for preprocessing tweets by Romain Paulus | |
| with small modifications by Jeffrey Pennington | |
| with translation to Python by Motoki Wu | |
| Translation of Ruby script to create features for GloVe vectors for Twitter data. |
| # coding: utf-8 | |
| # Sentiment analysis over imdb database using convolutional neural networks | |
| # ConvNN architecture follows Kim Yoon directives on paper | |
| # "Kim, Y. (2014). Convolutional Neural Networks for Sentence Classification. | |
| # Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP 2014), 1746–1751." | |
| # Link: http://arxiv.org/abs/1408.5882 | |
| # In[1]: |
| import os | |
| import sys | |
| import argparse | |
| import logging | |
| import requests | |
| import unicodedata | |
| import re | |
| import codecs | |
| import lxml.html |