This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## AutoGenerated file. Do Not Edit. Regenerate by running | |
## Add-UIModule -AssemblyName System.Windows.Controls.Ribbon -Name Ribbon | |
@{ | |
ModuleVersion = '1.0' | |
RequiredModules = 'ShowUI' | |
RequiredAssemblies = 'System.Xaml','System.Windows.Controls.Ribbon' | |
ModuleToProcess = 'Ribbon.psm1' | |
GUID = 'b307ebad-cfb1-4c34-895c-471792c513db' | |
FunctionsToExport = @('New-KeyTipControl','New-RibbonContextualTabGroupsPanel','New-RibbonGalleryCategoriesPanel','New-RibbonGalleryItemsPanel','New-RibbonGroupItemsPanel','New-RibbonGroupsPanel','New-RibbonMenuItemsPanel','New-RibbonQuickAccessToolBarOverflowPanel','New-RibbonQuickAccessToolBarPanel','New-RibbonTabHeadersPanel','New-RibbonTabsPanel','New-RibbonTitlePanel','New-StarLayoutInfo','New-Ribbon','New-RibbonMenuButton','New-RibbonApplicationMenu','New-RibbonMenuItem','New-RibbonApplicationMenuItem','New-RibbonSplitMenuItem','New-RibbonApplicationSplitMenuItem','New-RibbonButton','New-RibbonCheckBox','New-RibbonComboBox','New-RibbonContextMenu','New-Ri |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -version 2 | |
<# | |
.SYNOPSIS | |
<Overview of script> | |
.DESCRIPTION | |
<Brief description of script> | |
.PARAMETER <Parameter_Name> | |
<Brief description of parameter input required. Repeat this attribute if required> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$cred = Get-Credential | |
$session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $cred -Authentication Basic -AllowRedirection | |
Import-PSSession $session | |
Get-Mailbox -Filter * | ForEach-Object {Set-Mailbox -Identity $_.UserPrincipalName -WindowsEmailAddress $_.UserPrincipalName -Verbose} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Configuration d9micromgmt { | |
Import-DscResource -ModuleName xPSDesiredStateConfiguration | |
Node localhost { | |
WindowsFeature DSCServiceFeature { | |
Name = "DSC-Service" | |
Ensure = "Present" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -version 3.0 | |
#requires -module Hyper-V | |
<# | |
.SYNOPSIS | |
Export virtual machines | |
.DESCRIPTION | |
This utility will export virtual machines to a target destination. By default | |
it will create a folder using the format: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns degree9.boot-d9micromgmt.impl | |
{:boot/export-tasks true} | |
(:require [boot.core :as boot] | |
[boot.pod :as pod] | |
[boot.tmpdir :as tmpd] | |
[boot.util :as util] | |
[boot.task.built-in :as tasks] | |
[clj-yaml.core :as yaml] | |
[clojure.string :as string] | |
[clojure.java.io :as io] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
ssh_authorized_keys: | |
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCkxGvQWuyteYw9DzH8JPJEsknXlSGEeLlbuaUnh1LLxrhEG0OJE+Vm535HCN5/g+RsxewqFh6iFYnU97D0iZz2PBnh6EZLV7ashNc5iXNgU5IaP7zNjRjTM8ZGJmdDBF2TYeCQzy99jRxLO3fbyYB1EzOtN7LMgXCpH36Wu/98Ej0cVbn8WljNTHRYdgFQ7AcCyUm7J5WO+K07fqj+xl7GJunyIlCiKztC5UZtinaGdzeo6c2Zz4nzgqAwgzHqbf3Q9jhcEEwwXXUvlgyyTsfBcl3qyBA5fLEhbimse1n3lKuCwCVCVjirtds5YcN3rROB8aQqo+cwIYvnD7BDEXUz [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[:app :lt.objs.style/set-skin "dark"] | |
[:app :lt.objs.plugins/load-js "user_compiled.js"] | |
[:editor :lt.objs.editor/no-wrap] | |
[:editor :lt.objs.style/set-theme "default"] | |
[:editor.clojure :lt.plugins.clojure/print-length 1000] | |
[:user.hello :lt.plugins.user/on-close-destroy] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matt-mbpr:theLounge matt$ boot dev-osx | |
Bower run successful... | |
Starting file watcher (CTRL-C to quit)... | |
Checking out boot-semver-0.6.0.jar... | |
Checking out lounge.setup-0.1.0.jar... | |
Checking out lounge.ui-0.1.0.jar... | |
Checking out lounge.boot-0.1.0.jar... | |
Checking out lounge.toolbar-0.1.0.jar... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM degree9/heroku-boot-clj:latest | |
ENV BOOT_VERSION=2.4.2 | |
# install node | |
RUN curl --silent --location https://deb.nodesource.com/setup_0.12 | bash - \ | |
&& apt-get install -y nodejs | |
# install bower | |
RUN npm install --global bower |
OlderNewer