Skip to content

Instantly share code, notes, and snippets.

View ghulsmann's full-sized avatar
🛋️
Working from home

Greg Hulsmann ghulsmann

🛋️
Working from home
View GitHub Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@ghulsmann
ghulsmann / Dockerfile
Created March 18, 2019 12:05 — forked from richlander/Dockerfile
.NET Core 3.0 Preview 3 Dockerfile
FROM mcr.microsoft.com/dotnet/core/runtime:3.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/core/sdk:3.0 AS build
WORKDIR /src
COPY ["WebApplication4/WebApplication4.csproj", "WebApplication4/"]
RUN dotnet restore "WebApplication4/WebApplication4.csproj"
COPY . .
@ghulsmann
ghulsmann / unifi_on_rpi.md
Last active August 25, 2022 10:16
Guide to how to install the UniFi Controller software on the Raspberry Pi.

alt text

Introduction

The below guide will run you through the steps to install the Uqiquiti UniFi Controller software on your Raspberry Pi, this has been tested with a Raspberry Pi 3 Model B v1.2.

Instructions

Install NOOBS LITE on your SD card and insert in to the Raspberry Pi:
function Get-ADdirectReports
{
[CmdletBinding()]
PARAM ([String]$SamAccountName,$SearchBase)
PROCESS{
#Splatting
$ADSplatting = @{}