From: http://tleyden.github.io/blog/2014/10/25/running-caffe-on-aws-gpu-instance-via-docker/
ls -la /dev | grep nvidiaYou should see:
crw-rw-rw- 1 root root 195, 0 Oct 25 19:37 nvidia0
From: http://tleyden.github.io/blog/2014/10/25/running-caffe-on-aws-gpu-instance-via-docker/
ls -la /dev | grep nvidiaYou should see:
crw-rw-rw- 1 root root 195, 0 Oct 25 19:37 nvidia0
| nightlystats <- read.csv("summaries/nightly-stats.csv", header=F, | |
| col.names=c('year', | |
| 'month', | |
| 'day', | |
| 'satellite', | |
| 'filtered_count', | |
| 'raw_count', | |
| 'mean', | |
| 'min', | |
| 'median', |
| #!/usr/bin/env node | |
| /* | |
| * Read a newline-delimited stream of GeoJSON features, | |
| * write a valid GeoJSON FeatureCollection. | |
| */ | |
| var geojsonstream = require('geojson-stream') | |
| var ndjson = require('ndjson') | |
| process.stdin |
| #!/usr/bin/env node | |
| /** | |
| * Convert the given omnivore-compatible vector source into an mbtiles | |
| * file of vector tiles. | |
| */ | |
| var path = require('path') | |
| var multi = require('multimeter')(process) | |
| var tilelive = require('tilelive') |
| // Usage: node index.js "twitter search string" | |
| var request = require('request'); | |
| // Grab a bearer token using application-only auth | |
| // (doc: https://dev.twitter.com/oauth/application-only) |
| @mixin min-width-query($size) { | |
| @media screen and (min-width: $size) { @content; } | |
| } | |
| /** | |
| * Media query shorthand. Usage: | |
| * | |
| * @include mq([condition1], [condition2], [condition3], [...]) { | |
| * // the stuff that should happen under the given conditions. | |
| * } |