Before install nvidia-docker, you will need these first:
Then download these file:
Before install nvidia-docker, you will need these first:
Then download these file:
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| #!/bin/bash | |
| # This script will help you setup Docker for TLS authentication. | |
| # Run it passing in the arguement for the FQDN of your docker server | |
| # | |
| # For example: | |
| # ./create-docker-tls.sh myhost.docker.com | |
| # | |
| # The script will also create a profile.d (if it exists) entry | |
| # which configures your docker client to use TLS | |
| # |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| server { | |
| listen 0.0.0.0:12345; | |
| location / { | |
| root /home/zdwolfe/src/angularAWS/app; | |
| try_files $uri $uri/ /index.html =404; | |
| } | |
| } |
| #!/usr/bin/python | |
| #gypify.py for GYP (http://code.google.com/p/gyp) | |
| #Found @ http://code.google.com/p/gyp/issues/detail?id=82 (Oct 1, 2009) | |
| #Download original @ http://gyp.googlecode.com/issues/attachment?aid=1601673567448205219&name=gypify.py&token=qm9EhXN3mZxrS1pniUgsh5nG6Bs%3A1328804204976 | |
| #Attached is a script that converts a set of existing Chromium-dependent | |
| #.sln and .vcproj files to .gyp. It currently supports executable, shared | |
| #library, static library and build event projects. The output .gyp file is | |
| #created by: |