Skip to content

Instantly share code, notes, and snippets.

View nextechu's full-sized avatar

Bruce Kyle nextechu

View GitHub Profile
View Install Azure AD Preview
Install-Module AzureADPreview
-- connect to Azure Active Directory
-- puts up a log in dialog for your Azure subscription
Connect-AzureAD
View Install Azure Active Directroy v2 PowerShell
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
View install-azure-rm.ps
-- 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
View Install Azure Active Directory v1 Powershell
Install-Module MSOnline
-- connect to Azure Active Directory
-- puts up a log in dialog for your Azure subscription
Connect-AzureAD
View Check Azure Powershell install
Get-Module AzureRM
Get-Command -Module AzureRM
View datalist-example
<input list="browsers">
<datalist id="browsers">
<option value="Safari">
<option value="Internet Explorer">
<option value="Opera">
<option value="Firefox">
</datalist>
</input>
View linline-block-fix-for-whitespace.html
<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
View inline-uneven.html
<!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;
View inline-block.html
<!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;