Skip to content

Instantly share code, notes, and snippets.

@BrandonBoone
BrandonBoone / DeployRabbitMQToAzure.ps1
Last active January 26, 2018 18:30
Powershell Script to deploy RabbitMQ to Azure Container Group
# Must run Login-AzureRmAccount first
Import-Module AzureRM
$resourceGroup = "dockerTest-$(Get-Random)"
$registryName = "myContainerRegistry$(Get-Random)"
$instanceName = "rabbit-$(Get-Random)"
$location = "EastUS"
New-AzureRmResourceGroup -Name $resourceGroup -Location $location
@BrandonBoone
BrandonBoone / codecampnyc.md
Last active October 15, 2017 01:42
Code Camp NYC

Disrupting the Application Eco-System with Progressive Web Apps

Chris Love

Spotify is a progressive Web App in the Windows App store. MS gives more premissions to Apps hosted in the store vs the web.

AppCache is on its way out, marked for deprecation. Service Workers are the new jam.

Native Apps are a bridging technology, like flash.

@BrandonBoone
BrandonBoone / ReactConf17.md
Last active March 22, 2017 02:10
React Conf 2017 Notes

React 2017

Our Shop

Immediate Action Items

// ==UserScript==
// @name Premier Tools
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Charts & Graphs for PremierDesigns.com Jewelers.
// @author Brandon Boone
// @match https://order.premierdesigns.com/Account/CVReport?y=Y
// @grant GM_xmlhttpRequest
// @grant GM_addStyle
// ==/UserScript==
@BrandonBoone
BrandonBoone / SpectacleIcon.js
Last active October 12, 2016 13:59
Icon Component for FormidableLabs/Spectacle
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = undefined;
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _class;
@BrandonBoone
BrandonBoone / BuzzJs_2016.md
Last active June 4, 2016 12:25
My notes from the Buzz JS conference