Skip to content

Instantly share code, notes, and snippets.

View burn2delete's full-sized avatar
:octocat:
Building an open-source world....

Matt Ratzke burn2delete

:octocat:
Building an open-source world....
View GitHub Profile
## 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
#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>
@burn2delete
burn2delete / o365-ProxyAddressFix.ps1
Created February 25, 2015 19:54
Update the Office365 Email (proxyAddress) to match UPN
$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}
@burn2delete
burn2delete / micromgmt.ps1
Created April 30, 2015 20:57
d9-MicroMgmt
Configuration d9micromgmt {
Import-DscResource -ModuleName xPSDesiredStateConfiguration
Node localhost {
WindowsFeature DSCServiceFeature {
Name = "DSC-Service"
Ensure = "Present"
#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:
@burn2delete
burn2delete / test.clj
Last active August 29, 2015 14:24
boot-tasks
(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]
@burn2delete
burn2delete / cloud_config.yml
Created November 25, 2015 21:10
quick core os setup with ssh
#cloud-config
ssh_authorized_keys:
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCkxGvQWuyteYw9DzH8JPJEsknXlSGEeLlbuaUnh1LLxrhEG0OJE+Vm535HCN5/g+RsxewqFh6iFYnU97D0iZz2PBnh6EZLV7ashNc5iXNgU5IaP7zNjRjTM8ZGJmdDBF2TYeCQzy99jRxLO3fbyYB1EzOtN7LMgXCpH36Wu/98Ej0cVbn8WljNTHRYdgFQ7AcCyUm7J5WO+K07fqj+xl7GJunyIlCiKztC5UZtinaGdzeo6c2Zz4nzgqAwgzHqbf3Q9jhcEEwwXXUvlgyyTsfBcl3qyBA5fLEhbimse1n3lKuCwCVCVjirtds5YcN3rROB8aQqo+cwIYvnD7BDEXUz matt@MacBookPro.local
@burn2delete
burn2delete / user.behaviors
Created December 3, 2015 19:33
Lighttable - user.behaviors config
[
[: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]
@burn2delete
burn2delete / gist:f5ff4476d3d2e8630b24
Created December 14, 2015 00:40
Console output.....
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...
@burn2delete
burn2delete / Dockerfile
Created June 14, 2016 20:41
Boot-clj Heroku-Docker
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