[Server] GStreamer ---> HTML [Client]
- gstreamer-1.x
- Browser which supports video tag of HTML5
Compile requests 5063 | |
Compile requests executed 971 | |
Cache hits 558 | |
Cache misses 410 | |
Compilation failures 3 | |
Non-cacheable calls 4092 | |
Average cache write 0.002 s | |
Average cache read miss 2.511 s | |
Average cache read hit 0.007 s |
{-# LANGUAGE | |
TypeOperators, MultiParamTypeClasses, FunctionalDependencies, | |
FlexibleInstances, UndecidableInstances | |
#-} | |
module Brainfuck where | |
{- Usage: | |
Programs are encoded as cons-lists chained by (:-) and terminated by C0. |
sudo apt install git cmake clang-3.9 opencl-headers ocl-icd-dev ocl-icd-opencl-dev | |
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.9 100 | |
git clone https://github.com/doe300/VC4C.git | |
git clone https://github.com/doe300/VC4CL.git | |
git clone https://github.com/doe300/VC4CLStdLib.git | |
cd VC4C | |
cmake -DBUILD_TESTING=OFF -DSPIRV_FRONTEND=OFF |
$ sudo vim /etc/systemd/system/docker-compose.service | |
[Unit] | |
Description=DockerCompose | |
After=docker.service | |
Requires=docker.service | |
[Service] | |
ExecStart=/opt/bin/docker-compose -f /home/core/docker-compose.yml up -d |
This procedure will deploy Docker For AWS and go through the steps to build REX-Ray containers. This process will have some hiccups because Docker for AWS will provision resources in different availability zones (AZs). Multiple workers/agents will be spread across AZs (not regions) which means a potential host failure will trigger Swarm to restart containers that could spread across an AZ. If a container is restarted in a different AZ, the pre-emption mechanism for REX-Ray will not work because it no longer has access to the volume in the former AZ.
SSH into one of your Docker Manager Nodes
#!/usr/bin/env bash | |
set -e | |
cweb_version=0.6.16 | |
cweb=https://github.com/koute/cargo-web/releases/download/$cweb_version/cargo-web-x86_64-unknown-linux-gnu.gz | |
curl -Lo cargo-web.gz $cweb | |
gunzip cargo-web.gz | |
chmod u+x cargo-web |
Just an animated gif.
#!/usr/bin/env python3 | |
""" | |
Very simple HTTP server in python. | |
Usage:: | |
./dummy-web-server.py [<port>] | |
Send a GET request:: | |
curl http://localhost |
#!/bin/sh | |
# | |
# stunnel Start/Stop the stunnel daemons | |
# | |
# description: stunnel is a script that runs stunnel daemons | |
# version 1.00 | |
# | |
# chkconfig: 345 40 60 | |
# | |
# processname: stunnel |