You can use strace on a specific pid to figure out what a specific process is doing, e.g.:
strace -fp <pid>
You might see something like:
select(9, [3 5 8], [], [], {0, 999999}) = 0 (Timeout)
# web_page_logger.py | |
import logging | |
class WebPageHandler(logging.Handler): | |
def __init__(self): | |
logging.Handler.__init__(self) | |
self.messages = [] | |
def emit(self, record): |
events { | |
worker_connections 1024; | |
} | |
http { | |
default_type text/html; | |
access_log /dev/stdout; | |
sendfile on; | |
keepalive_timeout 65; |
instances := $(basename $(wildcard *.lua)) | |
hosts := n4 n6 n11 n12 n16 n17 n18 n19 n20 | |
all: | |
echo "nothing" | |
start: clean | |
$(foreach i, $(instances), tarantoolctl $@ $i;) | |
stop: |
def isolation_level(level): | |
"""Return a Flask view decorator to set SQLAlchemy isolation level | |
Usage:: | |
@main.route("/thingy/<id>", methods=["POST"]) | |
@isolation_level("SERIALIZABLE") | |
def update_a_thing(id): | |
... | |
""" | |
def decorator(view): |
Create a template service file at /etc/systemd/system/[email protected]
. The template parameter will correspond to the name
of target host:
[Unit]
Description=Setup a secure tunnel to %I
After=network.target
global | |
log /dev/log local0 | |
log /dev/log local1 notice | |
chroot /var/lib/haproxy | |
stats socket /run/haproxy/admin.sock mode 660 level admin | |
stats timeout 30s | |
user haproxy | |
group haproxy | |
daemon | |
maxconn 2048 |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
AES67 (an open standard for high quality audio over IP) is becoming mainstream in the world of broadcast and professional audio industries, however there is a very limited amount of open source software available to interoperate with it. As a result we are often just replacing XLRs with Ethernet, without taking advantage of the possibilites the software give. While Virtual Soundcards enable some of this, native network implementations would allow greater flexibility.
This is my wishlist of things that would help change that. Hopefully one day it can be turned into a AES67 Awesome List.
As open source has resulted in very rapid evolution of the web, I believe the same is possible for professional/broadcast audio.
It is possible that some of this already exists and I just havn't found it yet. Please add a comment below if you know of something!