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
@burn2delete
burn2delete / boot.properties
Last active December 25, 2016 22:07
Default boot.properties file
BOOT_VERSION=2.7.1
@burn2delete
burn2delete / Poshjure.psd1
Created June 23, 2016 03:50
Poshjure - Clojure from within Powershell
#
# Module manifest for module 'module'
#
# Generated by:
#
# Generated on:
#
@{
@burn2delete
burn2delete / README-Template.md
Created June 17, 2016 03:26 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisities

@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
@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 / 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 / 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 [email protected]
@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]
#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 / 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"