(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/usr/bin/env sh | |
| # This script downloads the Google News word2vec negative 300 model. | |
| # Script code was taken from https://gist.github.com/yanaiela/cfef50380de8a5bfc8c272bb0c91d6e1 | |
| WMDDATA=pycocoevalcap/wmd/data | |
| MODEL=GoogleNews-vectors-negative300 | |
| DIR="$( cd "$(dirname "$0")" ; pwd -P )" | |
| cd $DIR |
» sudo systemctl daemon-reload
System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
just try:
sudo apt-get update && sudo apt-get install -yqq daemonize dbus-user-session fontconfig
sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target
| import re | |
| import string | |
| import unicodedata | |
| from typing import Optional | |
| class TextNorm: | |
| def __init__(self): | |
| pass |