Skip to content

Instantly share code, notes, and snippets.

View namgk's full-sized avatar

Nam Giang namgk

  • Vancouver
View GitHub Profile
@namgk
namgk / deploy.prototxt
Created April 4, 2018 00:50 — forked from bogger/deploy.prototxt
GoogLeNet_cars
name: "GoogleNet"
input: "data"
input_dim: 10
input_dim: 3
input_dim: 224
input_dim: 224
# hierarchy 1
# conv -> relu -> pool -> lrn
@namgk
namgk / servefile.sh
Last active May 5, 2019 01:14 — forked from talwai/servefile.sh
One-shot HTTP webserver to serve file contents using netcat
#!/bin/bash
if [[ $# -eq 0 ]]; then
echo "Usage: ./servefile.sh <file to serve>"
echo "Ctrl+C to exit"
exit 1
fi
FILE=$1