Software required:
After installation and putting the youtube-dl
in PATH
youtube-dl \
Software required:
After installation and putting the youtube-dl
in PATH
youtube-dl \
### variables | |
variable "env" {} | |
variable "riak_count" {} | |
variable "elastic_count" {} | |
### hostname.tpl | |
${name}-${env}-${format("%02s",index)} ${extra} | |
### ansible.tpl |
data "template_file" "inventory" { | |
template = "${file("inventory.tpl")}" | |
vars { | |
backend_ip = "${aws_instance.backend.public_ip}" | |
frontend_ip = "${aws_instance.frontend.public_ip}" | |
landing_ip = "${aws_instance.landing.public_ip}" | |
key_path = "${var.instance_key_path}" | |
} | |
} |
# from https://docs.openshift.com/container-platform/3.9/install_config/install/advanced_install.html#running-the-advanced-installation-system-container | |
[OSEv3:children] | |
lb | |
masters | |
etcd | |
nodes | |
[lb] | |
prod-lb-01.example.com |
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
//CSS | |
<!doctype html> | |
<html> | |
<head> | |
<title>SSH Client</title> | |
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.5/socket.io.min.js"></script> | |
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; |
import { ExchangeService, ExchangeVersion, WebCredentials, Uri, DateTime, CalendarView, WellKnownFolderName, EwsLogging } from "ews-javascript-api"; | |
import credentials = require("./credentials"); //for username and password | |
EwsLogging.DebugLogEnabled = false; | |
var service = new ExchangeService(ExchangeVersion.Exchange2010); | |
service.Credentials = new WebCredentials(credentials.userName, credentials.password); | |
service.Url = new Uri("https://outlook.office365.com/Ews/Exchange.asmx"); | |
var view = new CalendarView(DateTime.Now.Add(-1, "week"), DateTime.Now); // appointments in last one week. |
var ldap = require('ldapjs'); | |
var ssha = require('node-ssha256'); | |
var BASE = 'ou=Users,dc=example,dc=org'; | |
// default port for ldaps | |
var URL = 'ldaps://ldap.example.org/:636'; | |
// user and pass are for existing user with rights to add a user |