[plexmediaserver]
title=Plex Media Server
description=The Plex Media Server is smart software that makes playing Movies, TV Shows and other media on your computer simple
ports=32400/tcp|1900/udp|32469/udp|5353/udp
[sonarr]
title=Sonarr
description=Sonarr is a PVR for Usenet and BitTorrent users
ports=8989/tcp|8989/udp
This file contains 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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases. | |
# Much of this was originally copied from: | |
# http://natelandau.com/my-mac-osx-bash_profile/ | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management |
This file contains 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
# sysDig Test Cases | |
# Test Case 1 | |
# A grabs a lock | |
# B opens same file, tries to grab a lock | |
# Contention | |
# 0 = succesfull, 1 or more = number of contentions | |
test1_result=1 | |
test1(){ | |
exec 3>foo.bar |
This file contains 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 -e | |
dir="/var/www/html" | |
dbname="wordpress" | |
dbuser="root" | |
dbpass="sshs" | |
clear | |
echo "============================================" | |
echo "WordPress Install Script" | |
echo "============================================" |
This file contains 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: '2' | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- "./data/db:/var/lib/mysql" | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: wordpress | |
MYSQL_DATABASE: wordpress |
This file contains 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
docker run -d -p 25565:25565 -e EULA=true --name spigot -v ./mc-srv:/minecraft nimmis/spigot |
This file contains 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
#archive_dir = "C:\Outlook Archives" | |
$network_share = "\\some\server" | |
<# | |
Gets a list of the last 20 logins/outs. Then counts the actions by each user. Returns the user with the highiest count. | |
Also purge domain\ from username and any spaces | |
#> | |
function get-freq-user | |
{ | |
$newest = 20 |
This file contains 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
##Add extension reg | |
$chromepath32 = "HKLM:\Software\Google\Chrome\Extensions" | |
$chromepath64 = "HKLM:\Software\Wow6432Node\Google\Chrome\Extensions" | |
$extension_id = "haiffjcadagjlijoggckpgfnoeiflnem" | |
if ($is64bit) { | |
if (-not(Test-Path "HKLM:\Software\Wow6432Node\Google")){ | |
New-Item "HKLM:\Software\Wow6432Node" -Name "Google" | |
} | |
if (-not(Test-Path "HKLM:\Software\Wow6432Node\Google\Chrome")){ |
This file contains 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
function get-freq-user | |
{ | |
$newest = 20 | |
$ComputerName = $env:computername | |
$UserProperty = @{ n = "User"; e = { ((New-Object System.Security.Principal.SecurityIdentifier $_.ReplacementStrings[1]).Translate([System.Security.Principal.NTAccount])).ToString() } } | |
$logs = Get-EventLog System -Source Microsoft-Windows-Winlogon -ComputerName $ComputerName -newest $newest | select $UserProperty | |
$logs = $logs | Group-Object user | Sort Count | Select -First 1 | Select-Object -Property Name | Out-String | |
$index = $logs.indexOf("\") + 1 |
This file contains 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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
cinst googlechrome | |
cinst jre8 | |
cinst firefox | |
cinst flashplayerplugin | |
cinst tor-browser | |
cinst 7zip | |
cinst chocolatey-core.extension |
OlderNewer