Thanks to /u/zpoo32 for reporting several issues in this list!
- deemix: just the cli and the library
- deemix-pyweb: the app with a GUI
- deemix-server: just the server part of deemix-pyweb
| listen 1935; | |
| max_connections 20; | |
| daemon on; | |
| pid /usr/local/srs/objs/srs.pid; | |
| srs_log_tank file; # console; | |
| srs_log_file /var/log/srs.log; | |
| ff_log_dir /dev/null; | |
| # can be: verbose, info, trace, warn, error | |
| srs_log_level warn; |
| listen 1935; | |
| max_connections 20; | |
| daemon on; | |
| pid /usr/local/srs/objs/srs.pid; | |
| srs_log_tank file; # console; | |
| srs_log_file /var/log/srs.log; | |
| ff_log_dir /dev/null; | |
| # can be: verbose, info, trace, warn, error | |
| srs_log_level warn; |
| MAKE := make --no-print-directory | |
| DESCRIBE := $(shell git describe --match "v*" --always --tags) | |
| DESCRIBE_PARTS := $(subst -, ,$(DESCRIBE)) | |
| VERSION_TAG := $(word 1,$(DESCRIBE_PARTS)) | |
| COMMITS_SINCE_TAG := $(word 2,$(DESCRIBE_PARTS)) | |
| VERSION := $(subst v,,$(VERSION_TAG)) | |
| VERSION_PARTS := $(subst ., ,$(VERSION)) |
Thanks to /u/zpoo32 for reporting several issues in this list!
| var ethUtil = require('ethereumjs-util'); | |
| var data = 'Login'; | |
| var message = ethUtil.toBuffer(data); | |
| var msgHash = ethUtil.hashPersonalMessage(message); | |
| var privateKey = new Buffer('62debf78d596673bce224a85a90da5aecf6e781d9aadcaedd4f65586cfe670d2', "hex") | |
| var sig = ethUtil.ecsign(msgHash, privateKey); | |
| var signature = ethUtil.toBuffer(sig) |
| <div> | |
| <iframe appIframeTracker (iframeClick)="onIframeClick()" src="http://www.google.com"></iframe> | |
| </div> |
Command Flags
| Flag | Options | Description |
|---|---|---|
-codec:a |
libfaac, libfdk_aac, libvorbis | Audio Codec |
-quality |
best, good, realtime | Video Quality |
-b:a |
128k, 192k, 256k, 320k | Audio Bitrate |
-codec:v |
mpeg4, libx264, libvpx-vp9 | Video Codec |
| > tsc --lib es2016,dom --experimentalDecorators true --emitDecoratorMetadata true lazy.module.ts |
sentrySENTRY_SECRET_KEY to random 32 char stringdocker-compose up -ddocker-compose exec sentry sentry upgrade to setup database and create admin userdocker-compose exec sentry pip install sentry-slack if you want slack plugin, it can be done laterdocker-compose restart sentry9000| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "sort" | |
| "time" | |
| ) | |
| // a struct to hold the result from each request including an index |