Skip to content

Instantly share code, notes, and snippets.

View nextechu's full-sized avatar

Bruce Kyle nextechu

View GitHub Profile
Login-AzureRmAccount
Install-Module AzureADPreview
-- connect to Azure Active Directory
-- puts up a log in dialog for your Azure subscription
Connect-AzureAD
Install-Module AzureAD
-- for preview version
-- Install-Module AzureADPreview
-- connect to Azure Active Directory
-- puts up a log in dialog for your Azure subscription
Connect-AzureAD
@nextechu
nextechu / install-azure-rm.ps
Last active May 15, 2017 20:27
Install Azure Resource Manager Powershell
-- check to see if you have PowerShellGet
Get-Module PowerShellGet -list | Select-Object Name,Version,Path
Install-Module AzureRM -AllowClobber
-- once everything is installed, you need to load the module into your PowerShell session
Import-Module AzureRM
Install-Module MSOnline
-- connect to Azure Active Directory
-- puts up a log in dialog for your Azure subscription
Connect-AzureAD
Get-Module AzureRM
Get-Command -Module AzureRM
<input list="browsers">
<datalist id="browsers">
<option value="Safari">
<option value="Internet Explorer">
<option value="Opera">
<option value="Firefox">
</datalist>
</input>
<ul id="display-inline-block-example">
<li>Item one</li><li>Item two</li><li>Item three</li>
</ul>
@nextechu
nextechu / inline-uneven.html
Created January 19, 2014 00:39
Inline-block for uneven items, with fix for IE7
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<style>
ul#display-inline-block-example,
ul#display-inline-block-example li {
/* Setting a common base */
margin: 0;
<!DOCTYPE html>
<html>
<head lang="en">
<title></title>
<style>
ul#display-inline-block-example,
ul#display-inline-block-example li {
/* Setting a common base */
margin: 0;
padding: 0;