Skip to content

Instantly share code, notes, and snippets.

View qzm's full-sized avatar
🚀
I may be slow to respond.

Aaron Qiu qzm

🚀
I may be slow to respond.
View GitHub Profile
@qzm
qzm / install-tensorflow.sh
Created November 2, 2017 07:27 — forked from erikbern/install-tensorflow.sh
Installing TensorFlow on EC2
# Note – this is not a bash script (some of the steps require reboot)
# I named it .sh just so Github does correct syntax highlighting.
#
# This is also available as an AMI in us-east-1 (virginia): ami-cf5028a5
#
# The CUDA part is mostly based on this excellent blog post:
# http://tleyden.github.io/blog/2014/10/25/cuda-6-dot-5-on-aws-gpu-instance-running-ubuntu-14-dot-04/
# Install various packages
sudo apt-get update
@qzm
qzm / clearfix.css
Last active March 20, 2017 15:34 — forked from red2678/clearfix.css
ClearFix
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
@qzm
qzm / bootstrap3-media-query.css
Last active December 28, 2016 04:04 — forked from redfrost/Media Query
Bootstrap3 Media Query
/* Desktop */
@media (min-width: 1601px) { }
/* Laptop */
@media (min-width: 1200px) { }
/* Tablet Horizontal */
@media (min-width: 992px) and (max-width: 1199px) { }
/* Tablet Vertical */