I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| <template> | |
| <label> | |
| <input type="checkbox" ref="showHeader" checked="false"> | |
| Show Header? | |
| </label> | |
| <h1 if.bind="showHeader.checked" ref="theHeader">${message}</h1> | |
| The header is: ${theHeader} | |
| </template> |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| <!-- Video element (live stream) --> | |
| <label>Video Stream</label> | |
| <video autoplay id="video" width="640" height="480"></video> | |
| <!-- Canvas element (screenshot) --> | |
| <label>Screenshot (base 64 dataURL)</label> | |
| <canvas id="canvas" width="640" height="480"></canvas> | |
| <!-- Capture button --> | |
| <button id="capture-btn">Capture!</button> |
Connects the sortable to a script that can save it via ajax
A Pen by Matthijs Alles on CodePen.
| Abstract: | |
| Hooks existing preferences/about/quit functionality from an existing Java app into handlers for the Mac OS X application menu. | |
| Tailored to provide compatibility with the Java 9 EA releases so that the app may be built on other platforms. Note that there | |
| is no compatibility with Java 8, though all that is required is to change java.awt.desktop -> com.apple.eawt in all handler methods | |
| This work was inspired by an OSX compatibility layer provided by Apple that used a different API. This is an otherwise original | |
| contribution and is a reimplementation using newer interface methods. | |
| Usage: |
| { | |
| "plugins": { | |
| "dkim": { | |
| "enabled": "sender", | |
| "domain": "example.com", | |
| "selector": "test", | |
| "path": "/path/to/private/key.pem" | |
| } | |
| } | |
| } |
ZoneMTA emits logs over UDP in MessagePack format, so a MessagePack parser is needed to read log messages
npm install msgpack-js
Edit your ZoneMTA application config to activate remote UDP logging. Add remote to the log section. Port and host should point to the server where logger.js app is running.
| import {customAttribute, bindable, LogManager} from 'aurelia-framework'; | |
| const logger:Logger = LogManager.getLogger("attached"); | |
| /** | |
| * MIT License. Patrick Eisenmann. | |
| * Apply this attribute to an element to have a callback invoked when the element added to the DOM | |
| * | |
| * @param {Function} callback. Required. The function to be invoked. | |
| * The first argument to the callback is the Element that had the attached on it. |
| # | |
| # Launches configured Graylog 2.3.1 instance | |
| # | |
| # - Docker-compose 1.16 required | |
| # - Please configure following according to your network: | |
| # * gelf-address URL (for each container) | |
| # * GRAYLOG_WEB_ENDPOINT_URI | |
| # - After launch define GELF tcp and GELF udp inputs in graylog web ui | |
| # - Containers send logging to the graylog itself | |
| # - By default tuned to 30 days retention |
| 'use strict' | |
| const net = require('net') | |
| const chalk = require('chalk') | |
| const path = require('path') | |
| const cp = require('child_process') | |
| const rimraf = require('rimraf') | |
| function getPath() { |