Skip to content

Instantly share code, notes, and snippets.

View caseymullineaux's full-sized avatar
💭
🔥

Casey Mullineaux caseymullineaux

💭
🔥
View GitHub Profile
#include <DS3231_Simple.h>
/*
* 3D printed smart shelving with a giant hidden digital clock in the front edges of the shelves - DIY Machines
==========
More info and build instructions: https://www.youtube.com/watch?v=8E0SeycTzHw
3D printed parts can be downloaded from here: https://www.thingiverse.com/thing:4207524
@caseymullineaux
caseymullineaux / htb.omp.json
Created November 29, 2021 23:58
htb oh-my-posh theme
{
"final_space": true,
"console_title": true,
"console_title_style": "folder",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"horizontal_offset": 0,
"vertical_offset": 0,
@caseymullineaux
caseymullineaux / hackthebox.json
Created September 12, 2021 01:41
HackTheBox theme for Windows Terminal
{
"background": "#141D2B",
"black": "#000000",
"blue": "#5CB2FF",
"brightBlack": "#A4B1CD",
"brightBlue": "#5CB2FF",
"brightCyan": "#61D6D6",
"brightGreen": "#C5F467",
"brightPurple": "#CF8DFB",
"brightRed": "#FF8484",
@caseymullineaux
caseymullineaux / hackthebox.json
Last active September 12, 2021 01:42
HackTheBox theme for OhMyPosh
{
"final_space": true,
"console_title": true,
"console_title_style": "folder",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"horizontal_offset": 0,
"vertical_offset": 0,
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[string]
$TableName,
[Parameter(Mandatory)]
[string]
$JsonData,
@caseymullineaux
caseymullineaux / htb-lite.omp.json
Last active November 29, 2021 23:58
hackthebox oh-my-posh theme
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"foreground": "#A4B1CD",
"properties": {
"display_host": false,
@caseymullineaux
caseymullineaux / Download-Build2020.ps1
Created May 30, 2020 04:26
A simple script to download on-demand content from Microsoft Build
param (
# Verify the sessions file exists
[ValidateScript( {
if (-Not ($_ | Test-Path)) {
throw "File does not exist"
}
return $true
})]
[System.IO.FileInfo]$InputFile,
@caseymullineaux
caseymullineaux / Firewatch-Custom.json
Last active December 2, 2019 00:42
Customized Firewatch theme for Windows Terminal
{
"name": "Firewatch-Custom",
"black": "#585f6d",
"red": "#d95360",
"green": "#5ab977",
"yellow": "#d7df63",
"blue": "#1f63bd",
"purple": "#d55119",
"cyan": "#44a8b6",
"white": "#e6e5ff",
@caseymullineaux
caseymullineaux / KaliLegit.json
Last active April 22, 2023 22:03
Windows Terminal Scheme - Kali Legit
// Font: Letter Gothic Std
// Download: https://www.wfonts.com/font/letter-gothic-std
{
"name": "KaliLegit",
"background": "#0C0C0C",
"black": "#0C0C0C",
"blue": "#0037DA",
"brightBlack": "#767676",
"brightBlue": "#3B78FF",
@caseymullineaux
caseymullineaux / UbuntuLegit.json
Last active May 24, 2022 00:14
Windows Terminal Scheme - Ubuntu Legit
{
"name": "UbuntuLegit",
"background": "#340034",
"black": "#4E9A06",
"blue": "#3465A4",
"brightBlack": "#555753",
"brightBlue": "#729FCF",
"brightCyan": "#34E2E2",
"brightGreen": "#8AE234",
"brightPurple": "#AD7FA8",