Scratchpad for RTMP Controller/Gateway Related References
librtmp bindings
- Go: https://github.com/juntaki/go-librtmp
- Rust: https://github.com/Stargateur/rtmp-sys
- Haskell: https://github.com/greg42/hsRtmp
{- stack script | |
--resolver lts-16.0 | |
--package bytestring | |
--package email-validate | |
--ghc-options -Wall | |
--install-ghc | |
--compile | |
-} | |
-- * Command Line Usage: |
""" | |
This module provides various functions to work with XLSX file. | |
Reference: https://gist.github.com/vst/269aceb5a54de0adf2cb23e3482895f8 | |
""" | |
__all__ = ["read_workbook_data", "read_worksheet_data"] | |
from typing import Any, Dict, Iterable |
""" | |
This module provides various functions to inspect and normalize value inputs. | |
Reference: https://gist.github.com/vst/f377006ebe30f3a90d5d54366430ccee | |
""" | |
__all__ = ["identity", "strnorm", "is_positive_integer", "as_positive_integer"] | |
import re | |
from functools import wraps |
Note: For the Docker Swarm setup, check out the official guide.
bash setup.sh [<OPENFAAS-HOME-DIRECTORY>]
whereby OPENFAAS-HOME-DIRECTORY
defaults to /data/openfaas
.
Note: Follow the official guide.
bash setup.sh myusername mypassword
/data/docker/registry/auth
./data/docker/registry/storage
.ack | |
axel | |
curl | |
emacs | |
git | |
htop | |
jq | |
mc | |
network-manager | |
pandoc |
' Run the SaveAllAsCSV subroutine. | |
' Creates a CSV file from the active sheet under the given directory. | |
' | |
' Based on https://forum.openoffice.org/en/forum/viewtopic.php?t=41284 | |
sub SaveAsCSV(filename As String) | |
' Declare the document variable: | |
dim document as object | |
' Get the document: |
#!/usr/bin/env perl | |
=head1 NAME | |
sample.pl - Sample Perl Script | |
=head1 SYNOPSIS | |
perl sample.pl | |
perldoc sample.pl |