Skip to content

Instantly share code, notes, and snippets.

View JoeKleinsorge's full-sized avatar

Joe Kleinsorge JoeKleinsorge

View GitHub Profile
@JoeKleinsorge
JoeKleinsorge / example-branch-to-select-environment.yaml
Created February 9, 2023 15:41
Using the Branch Name to select Environment
name: Using the Branch Name to select Environment
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
# Run the following steps with the environment
# variables based on what branch was chosen
@JoeKleinsorge
JoeKleinsorge / HugoHighChartsShortcode.md
Last active October 4, 2021 02:05
HugoHighChartsShortcode

{{< highcharts- custom chart="UNIQUE_NAME" height="400" width="600" >}}

Your chart goes here

{{< /highcharts- custom >}}

@JoeKleinsorge
JoeKleinsorge / notes.ps1
Last active February 18, 2022 10:51
My note taking helper
<#
.SYNOPSIS
A way for me to organize and add functionality to my note taking.
.DESCRIPTION
Allows the user to create a new note in VS Code automatically named the current month_day_year if no other inputs are used.
Allows the user to specify the name of the new note with the "-name" parameter, if a note with that name is already created in the directory, then it will open that note.
Allows the user to create a "week" note if the "-week" switch is used, this combines all the notes that were edited in the last week into one note.
Allows the user to create a "year" note if the "-year" switch is used, this combines all the notes that were edited in the last year into one note.
Allows the user to search through all notes in the directory for a string pattern match when the "-search" parameter is used.