Skip to content

Instantly share code, notes, and snippets.

View dannysteenman's full-sized avatar
🚀
Blasting into orbit!

Danny Steenman dannysteenman

🚀
Blasting into orbit!
View GitHub Profile
@dannysteenman
dannysteenman / aipullrequests
Last active November 28, 2023 13:40
Inspired by aicommmits, this script automates the creation of a GitHub pull request, identifying the branch to merge from, generating a title and body based on conventional commit guidelines, and optionally linking a JIRA ticket.
#!/bin/bash
# Exit on error and uninitialized variables
set -euo pipefail
# Function to check if a command exists and instruct on installation if it doesn't
command_exists() {
if ! command -v "$1" >/dev/null 2>&1; then
echo "Error: $1 is not installed. Please install it to proceed."
exit 1
@dannysteenman
dannysteenman / email-signature
Created November 9, 2023 19:06
apple email signature etc (generated by hubspot)
<table
cellpadding="0"
cellspacing="0"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI"
style="
vertical-align: -webkit-baseline-middle;
font-size: small;
font-family: Arial;
"
>

Keybase proof

I hereby claim:

  • I am dannysteenman on github.
  • I am dannysteenman (https://keybase.io/dannysteenman) on keybase.
  • I have a public key ASBG3CUx2-aovUGTHRoCnWPyLfI1JDLrN7wKNqzKXj468wo

To claim this, I am signing this object:

@dannysteenman
dannysteenman / Text Substitutions.plist
Created July 16, 2020 19:59
macOS emoji text replacements
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>phrase</key>
<string>👎</string>
<key>shortcut</key>
<string>:-1:</string>
</dict>
@dannysteenman
dannysteenman / Readme-template.md
Created August 30, 2019 13:21
How to create a good readme using this template

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites