Referenced here:
https://msdn.microsoft.com/en-us/library/aa719104(v=vs.71).aspx
- Use ref keyword for inout params
- Use out keyword for out params
| Windows Data Type | .NET Data Type |
Referenced here:
https://msdn.microsoft.com/en-us/library/aa719104(v=vs.71).aspx
| Windows Data Type | .NET Data Type |
https://github.com/rg3/youtube-dl/
apt-get install libav-tools ffmpeg # Linux (either one of either should do) brew install ffmpeg # OSX choco install ffmpeg # Windows
| fmpeg -i $file -c:v libx265 -x265-params lossless -c:a copy -c:s copy output.mkv |
| #!upstart | |
| # NodeJS 'Upstart' Start-up script. | |
| # Works on Ubuntu 14.04. Systemd is being used for Ubuntu 16.04 though. | |
| description "your node js web app" | |
| start on started mountall | |
| stop on shutdown |
| #!/bin/sh | |
| # AUTHOR | |
| # DANIEL E. GILLESPIE (2016) | |
| # https://github.com/dantheman213 | |
| # DESCRIPTION | |
| # Import all *.sql files in a folder recuresively into your PostgreSQL database | |
| # Batch export all table schemas and stored functions with this script located here: |
| #!/bin/sh | |
| # AUTHOR | |
| # DANIEL E. GILLESPIE (2016) | |
| # https://github.com/dantheman213 | |
| # DESCRIPTION | |
| # Export your app's table schemas and stored functions from a PostgreSQL | |
| # database into individual *.sql files for easy management and source control. |