Skip to content

Instantly share code, notes, and snippets.

View MiPnamic's full-sized avatar
Fast-forward

Marco Orlandin MiPnamic

Fast-forward
View GitHub Profile
@Hendler
Hendler / cuda_aws_ubuntu_theano_tensorflow_nlp.md
Last active July 4, 2021 10:06
Installing the best Natural Language Processing Python machine learning tools on an Ubuntu GPU instance

Awesome NLP on AWS GPU

Tech:

  • Ubuntu
  • Nvidia Cuda
  • Python
  • Theano
  • TensorFlow
  • Keras
@chrisjlee
chrisjlee / wp.sh
Created August 6, 2012 21:24 — forked from bgallagh3r/wp.sh
Wordpress: Bash Install Script
#!/bin/bash
echo “Database Name: ”
read -e dbname
echo “Database User: ”
read -e dbuser
echo “Database Password: ”
read -s dbpass
echo “run install? (y/n)”
read -e run
if [ "$run" == n ] ; then