Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View virgilwashere's full-sized avatar
😎
Investigating ways to increase technical debt with shiny

Virgil virgilwashere

😎
Investigating ways to increase technical debt with shiny
View GitHub Profile
@virgilwashere
virgilwashere / gist:6623566
Created September 19, 2013 13:36
powerCLI remote sessions
http://feedproxy.google.com/~r/LucdNotes/~3/EuhwdeHmqEQ/
@virgilwashere
virgilwashere / msiexec
Created September 28, 2013 14:14
msiexec command line options
Msiexec.exe /qb- /l*vx %LogPath%\<file>.log REBOOT=ReallySuppress UILevel=67 ALLUSERS=2 /i <File>.msi
Chef client and server bootstrap scripts/configs for Ubuntu 12.04LTS Server amd64.
@virgilwashere
virgilwashere / breakonexception.ps1
Created October 25, 2013 16:12
break on exception
# You can add this line in your profile instead of here... Set-PSBreakpoint -Variable BreakOnException -Mode ReadWriteWrite-Host "Enter"# then just add this where you want to enable breaking on exceptionstrap { $BreakOnException; continue }Write-Host "Starting"throw "stones"Write-Host "Ending"
@virgilwashere
virgilwashere / gist:04d86b3c10d9d049ba19
Created August 4, 2014 08:15
github README.md with shield badge
# graylog2-server
![Release](http://img.shields.io/github/release/Graylog2/graylog2-server.svg) [![Build Status](http://img.shields.io/travis/Graylog2/graylog2-server/0.21.0-beta1.svg)](http://travis-ci.org/Graylog2/graylog2-server)
This is Graylog2.
Please follow the release announcements and documentation links on http://graylog2.org/download for details.
@virgilwashere
virgilwashere / MyVeeamReport.ps1
Last active April 1, 2020 10:43 — forked from smasterson/MyVeeamReport.ps1
Veeam Backup Report
#Requires -Version 4
<#
.Notes
NAME: MyVeeamReport.ps1
AUTHOR: Virgil@endless.net.au
CREATED: 22/02/2014
LASTEDIT: 13/01/2016
@virgilwashere
virgilwashere / settings.json
Last active December 26, 2018 01:58
# gitProjectManager ## vscode extension Allows you to change easily between git projects. * https://github.com/felipecaputo/git-project-manager Specifies folders to be ignored. (node_modules for example), improving search performance. Edit in sett
"gitProjectManager.displayProjectPath": true,
"gitProjectManager.baseProjectsFolders": [
"C:\\Users\\Username\\Documents\\git"
],
"gitProjectManager.ignoredFolders": [
"node_modules",
"out",
"typings",
"test",
".haxelib"
@virgilwashere
virgilwashere / settings.json
Last active December 26, 2018 02:00
# vscode ## Explorer tree view display Configure glob patterns for excluding files and folders. For example, the files explorer decides which files and folders to show or hide based on this setting.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/_site": true,
"**/tmp": true,
"**/*.pyc": true,
"**/*.asset-cache": true,
@virgilwashere
virgilwashere / settings.json
Last active December 26, 2018 02:01
# Todo Tree ## vscode extension * https://github.com/Gruntfuggly/todo-tree Show TODO, FIXME, etc. comment tags in a tree view
"todo-tree.tags": [
"TODO",
"FIXME",
"DONE",
"INFO",
"BUG",
"REVIEW",
],
"todo-tree.defaultHighlight": {
"icon": "octoface",