named bind9 logging configs
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
/* | |
Please don't edit this file directly. | |
Instead, edit the stylus (.styl) files and compile it to CSS on your machine. | |
*/ | |
/* ---------------------------------------------------------------------------- | |
* Fonts | |
*/ | |
@import url("//fonts.googleapis.com/css?family=Montserrat:700|Open+Sans:300"); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Strapdown+Navigation</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<!-- amelia bootstrap cerulean cyborg journal paper readable sandstone spacelab united /--> | |
<meta id='page-params' | |
theme='amelia' |
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
<!DOCTYPE html> <html> <title>Page Title</title> <meta charset="utf-8"> | |
<xmp theme="flatly" style="display:none;" src="somefile.md" toc="true"> | |
Markdown content | |
=== | |
 | |
# TitleRequired.com |
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
################################################################################################################# | |
# | |
# Version 1.4 February 2016 | |
# Robert Pearman (WSSMB MVP) | |
# TitleRequired.com | |
# Script to Automated Email Reminders when Users Passwords due to Expire. | |
# | |
# Requires: Windows PowerShell Module for Active Directory | |
# | |
# For assistance and ideas, visit the TechNet Gallery Q&A Page. http://gallery.technet.microsoft.com/Password-Expiry-Email-177c3e27/view/Discussions#content |
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
#!/bin/bash | |
# Require 1 parameter | |
if [ $# -lt 1 ] || [[ ${#1} -lt 6 ]] || [[ "$1" = *"-h"* ]] ; then | |
echo "MAC lookup tool by njd" | |
echo "Usage: ${0##*/} MAC" | |
echo | |
echo "Dependencies: curl, grep, awk, sed, cut" | |
echo "Automatically downloads http://standards-oui.ieee.org/oui.txt" | |
echo |
For converting Windows users to Linux, I'd choose ElementaryOS for it's simplicty and ubuntu base.
Firstly changing min,max,& close window-manager icons to traditional right-side positioning.
Install Firefox and LibreOffice.
Modify launch bar for standard apps.
See attached shell commands.
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
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$True,Position=0,HelpMessage="vCenter Server")] | |
[string]$vCenter | |
) | |
# Also Accepts "-Verbose" Flag | |
Write-Host "UNMAPping all volumes on: $vCenter" | |
Import-Module VMware.VimAutomation.Core | Out-Null |