How to interface with a Stream Deck device.
The device uses the HID protocol to communicate with its software.
module.exports = function (string) { | |
return btoa(string); | |
}; |
The first thing when you come to this topic is that when it comes to iptables, docker just behaves like a spoiled child that takes what (s)he want, although the child is been banned to do so.
In other words, as you may already know, by default, docker ignores any pre-existing iptables' rules when adding its own Chain in the tables. The result of this is a useless firewall when it comes to protecting the access to your services hosted in containers.
So, at the office, at the moment we had this problem we were migrating our projects into containers.
all: world.topo.json libs | |
libs: d3.geo.projection.v0.min.js d3.v3.min.js topojson.v1.min.js | |
clean: | |
rm -f world.*.json ne_10m_admin_0_countries.* *.min.js | |
.PHONY: all clean libs | |
%.topo.json: %.geo.json |
<?php | |
/** | |
* The Router class is a fast and lightweight router (yes it is). It can handle | |
* a path and call the matching controller. If there is no match, then an | |
* exception will be throwned. | |
* | |
* ...and it fits in a tweet. | |
* | |
* @author Quentin Schuler aka Sukei <[email protected]> |
package main | |
import ( | |
"fmt" | |
"labix.org/v2/mgo" | |
"labix.org/v2/mgo/bson" | |
"time" | |
) | |
type Person struct { |