This list has moved to a GitHub repo for easier tracking: https://github.com/coreos/awesome-kubernetes-extensions
Please comment below if you are using Kubernetes Third-Party Resources and I will add you to the list.
Known Users:
This list has moved to a GitHub repo for easier tracking: https://github.com/coreos/awesome-kubernetes-extensions
Please comment below if you are using Kubernetes Third-Party Resources and I will add you to the list.
Known Users:
(originally from my proposal on moby/moby#17142 (comment) but generic)
The profile would generate artificats of an apparmor profile and seccomp filters.
Obviously doesn't have to be toml since that's super hipster :p
Assumptions
aa-genprof
it is never(setq inferior-erlang-machine "rebar3") | |
(setq inferior-erlang-machine-options '("shell")) | |
(setq inferior-erlang-shell-type nil) |
# entry point for shard rebalancer | |
def rebalance_table_shards(relation regclass, | |
threshold float4 default 0.1, | |
max_shard_moves int default 1000000, | |
excluded_shard_list bigint[] default '{}'): | |
# acquire lock on the relation to prevent concurrent rebalance operations | |
# acquire lock on the realtion id to prevent schema changes | |
for colocatedTables in colocatedTableList: |
;; An example of append method combination to form a projection of an object's slots | |
(defclass odour-mixin () | |
((odour :initarg :odour :initform nil :reader odour))) | |
(defclass colour-mixin () | |
((colour :initarg :colour :initform nil :reader colour))) | |
(defclass sound-mixin () | |
((sound :initarg :sound :initform nil :reader sound))) |
wget http://mirror.sdunix.com/gnu/emacs/emacs-24.5.tar.gz | |
tar zxvfp emacs-24.5.tar.gz | |
cd emacs-24.5/ | |
./configure | |
sudo yum -y install libXpm-devel libjpeg-turbo-devel openjpeg-devel openjpeg2-devel turbojpeg-devel giflib-devel libtiff-devel gnutls-devel libxml2-devel GConf2-devel dbus-devel wxGTK-devel gtk3-devel | |
./configure | |
make | |
sudo make install |
#ifndef UNITY_CG_INCLUDED | |
#define UNITY_CG_INCLUDED | |
#define UNITY_PI 3.14159265359f | |
#include "UnityShaderVariables.cginc" | |
uniform fixed4 unity_ColorSpaceGrey; | |
uniform fixed4 unity_ColorSpaceDouble; | |
uniform half4 unity_ColorSpaceDielectricSpec; |
These are just proof of concept at the moment. All taken from the following sources:
Credits for Nescaline to:
* Copyright (c) 2014 Vesa Kivimäki
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get --assume-yes install wget | |
sudo apt-get --assume-yes install libssl-dev | |
sudo apt-get --assume-yes install ncurses-dev | |
sudo apt-get --assume-yes install m4 | |
# erlang | |
wget http://erlang.org/download/otp_src_18.2.tar.gz | |
tar -xvzf otp_src_18.2.tar.gz | |
cd otp_src_18.2 |
This is an example of a socket-activated per-connection service (which is usually referred to as inetd-like service). A thorough explanation can be found at http://0pointer.de/blog/projects/inetd.html.
The key point here is to specify Accept=yes
, which will make the socket accept connections (behaving like inetd) and pass
only the resulting connection socket to the service handler.