Wes Winham [email protected]
There are many tutorials floating around the web that almost get you a dynamic VPN in EC2. The goal of this tutorial is to be a one-stop-shop for this specific setup.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
'use strict'; | |
// Add ECMA262-5 method binding if not supported natively | |
// | |
if (!('bind' in Function.prototype)) { | |
Function.prototype.bind= function(owner) { | |
var that= this; | |
if (arguments.length<=1) { | |
return function() { | |
return that.apply(owner, arguments); |
Wes Winham [email protected]
There are many tutorials floating around the web that almost get you a dynamic VPN in EC2. The goal of this tutorial is to be a one-stop-shop for this specific setup.
netsh wlan stop hostednetwork | |
pause |
ul.tabs.primary li { | |
height: 30px; | |
line-height: 30px; | |
} | |
ul.tabs.primary li.active a:after { | |
content: ""; | |
position: relative; | |
bottom: -4px; | |
border-style: solid; | |
border-width: 8px 8px 0; |
jsWarrior.turn = function(warrior) { | |
// init status | |
if (!warrior._initialized) { | |
warrior._side_done = false; | |
warrior._last_health = 20; | |
warrior._initialized = true; | |
} | |
// check conditions | |
var health = warrior.getHealth(), |
master
branch is always production-ready, deployable, 100% green test suitegit pull
is configured to automatically rebase)# +--------------------------------------------------------------------------- | |
# | File : BackuptoS3_Snapshots.ps1 | |
# | Version : 1.0 | |
# | Purpose : Backs up to S3 & creates EBS snapshots | |
# | Synopsis: | |
# | Usage : .\BackuptoS3_Snapshots.ps1 | |
# +---------------------------------------------------------------------------- | |
# | | |
# | File Requirements: | |
# | Must have AWS S3 CLI installed & Powershell tools |
using System; | |
using System.Net.Http; | |
using System.Net.Http.Formatting; | |
using System.Threading.Tasks; | |
namespace MyProject.Extensions | |
{ | |
public static class HttpClientEx | |
{ | |
public const string MimeJson = "application/json"; |