Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.
from __future__ import absolute_import | |
from __future__ import print_function | |
import numpy as np | |
np.random.seed(1337) # for reproducibility | |
import random | |
from keras.datasets import mnist | |
from keras.models import Sequential | |
from keras.layers.core import * | |
from keras.optimizers import SGD, RMSprop |
#https://www.vultr.com/docs/setup-nginx-rtmp-on-ubuntu-14-04 | |
apt-get install -y build-essential libpcre3 libpcre3-dev libssl-dev unzip software-properties-common | |
mkdir /usr/build | |
#Download the Nginx and Nginx-RTMP source. | |
wget http://nginx.org/download/nginx-1.7.8.tar.gz | |
wget https://github.com/arut/nginx-rtmp-module/archive/master.zip | |
#Extract the Nginx and Nginx-RTMP source. | |
tar -zxvf nginx-1.7.8.tar.gz | |
unzip master.zip | |
#Switch to the Nginx directory. |
*.tif filter=lfs diff=lfs merge=lfs -text | |
*.cubemap filter=lfs diff=lfs merge=lfs -text | |
*.tga filter=lfs diff=lfs merge=lfs -text | |
*.png filter=lfs diff=lfs merge=lfs -text | |
*.raw filter=lfs diff=lfs merge=lfs -text | |
*.wav filter=lfs diff=lfs merge=lfs -text | |
*.psd filter=lfs diff=lfs merge=lfs -text | |
*.mov filter=lfs diff=lfs merge=lfs -text | |
*.mb filter=lfs diff=lfs merge=lfs -text | |
*.duf filter=lfs diff=lfs merge=lfs -text |
user rtmp; | |
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include mime.types; | |
default_type application/octet-stream; |
package com.irinnovative.enablegps; | |
import android.app.Activity; | |
import android.content.Intent; | |
import android.content.IntentSender; | |
import android.os.Bundle; | |
import android.support.annotation.NonNull; | |
import android.support.annotation.Nullable; | |
import com.google.android.gms.common.api.GoogleApiClient; |
Streaming your Linux desktop to Youtube and Twitch via Nvidia's NVENC and VAAPI:
Considerations to take when live streaming:
The following best practice observations apply when using a hardware-based encoder for live streaming to any platform:
Set the buffer size (-bufsize:v
) equal to the target bitrate (-b:v
). You want to ensure that you're encoding in CBR mode.
Set up the encoders as shown: