- Perceptron (P)
- Feed Forward (FF)
- Radial Basis Network (RBF)
- Deep Feed Forward (DFF)
- Recurrent Neural Network (RNN)
- Long / Short Term Memory (LSTM)
from __future__ import print_function # (at top of module)
print('Hello', 'Guido')
print('Hello', file=sys.stderr)
print('Hello', end='')
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JavaScript Code Completion as a "N"LP Problem | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
http://courses.csail.mit.edu/6.864/fall_2016/past_projects.html | |
Many techniques in natural language processing rely on statistical | |
methods because natural language is fuzzy and imprecise. In contrast, | |
computer languages follow precise known rules, so tools for working | |
with computer languages are usually strictly rule-based. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lisp -lang | |
postgres -db | |
python -lang | |
supervise -monitor | |
sloney -db-replication | |
memcached -cache | |
spread -cache-sync | |
thingdb -table-structure | |
haproxy -load-balancer(logged-in-users) | |
akamai -cdn(logged-out-users) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd emacs-26.2/ | |
./configure --with-x-toolkit=no --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no --with-tiff=no --with-gnutls=no --wihout-x | |
make | |
sudo make install |
taken from http://www.elmindreda.org/emacs.html
"Why can't I enter command mode?"
This is intended as an introductory guide for vi users wishing to learn the basics of Emacs. I’m writing it because I’m one of them, and I suspect that I’m not alone in being mystified by the lack of a command mode, text objects and
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Computer Incident Security Incident Handling Guide | |
https://csrc.nist.gov/publications/detail/sp/800-61/rev-2/final |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"title":"Trippledex","body":"Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n\nProin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.\n\nAenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.","created":"2019-04-22T20:06:31Z","author":"cszwandt0"}, | |
{"title":"Pannier","body":"Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.","created":"2018-08-13T20:18:23Z","author":"hpowderham1"}, | |
{"title":"Temp","body":"Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.\n\nFusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
if [[ $EUID -ne 0 ]]; then | |
echo "ERROR: Must be run with root privileges." | |
exit 1 | |
fi | |
apt-add-repository ppa:rodsmith/refind |
OlderNewer