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
{
"meta": {
"theme": "stackoverflow"
},
"basics": {
"name": "Virgil",
"email": "virgil@virgilwashere.co",
"label": "Cloud Engineer",
"phone": "+61 419 170 749",
"website": "https://registry.jsonresume.org/virgilwashere",
@virgilwashere
virgilwashere / detect-os.sh
Last active July 25, 2022 21:04 — forked from prabirshrestha/detect-os.sh
detect os in bash
#!/usr/bin/env bash
# "unofficial" bash strict mode
# See: http://redsymbol.net/articles/unofficial-bash-strict-mode
set -o errexit # Exit when simple command fails 'set -e'
set -o errtrace # Exit on error inside any functions or subshells.
set -o nounset # Trigger error when expanding unset variables 'set -u'
set -o pipefail # Do not hide errors within pipes 'set -o pipefail'
IFS=$'\n\t'
@virgilwashere
virgilwashere / README-Template.md
Created June 27, 2019 03:44 — 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.

Prerequisites

@virgilwashere
virgilwashere / git-install-intro.md
Last active June 18, 2019 02:21 — forked from derhuerst/intro.md
Installing Git on Linux, Mac OS X and Windows
@virgilwashere
virgilwashere / _Mautic_nginx_config_files.md
Last active February 17, 2024 02:28 — forked from magnetikonline/README.md
Mautic nginx config files
@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",
@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 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 / 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 / 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.