Skip to content

Instantly share code, notes, and snippets.

View michaelsteuer's full-sized avatar
:octocat:

Michael Steuer michaelsteuer

:octocat:
View GitHub Profile
@michaelsteuer
michaelsteuer / bb-compare.fish
Created December 30, 2024 04:38 — forked from james2doyle/bb-compare.fish
Create a bitbucket URL to compare 2 commits
# Based on: https://gist.github.com/danlherman/8a32fa05c2cf6018ed10
# creates a URL to compare 2 commits
# takes 2 commit hashes (future past), or 1 hash and it will compare to the current commit
function bb-compare
set repo_name (git remote show origin | grep "Fetch URL:" | awk -F: '{print $3}')
switch (count $argv);
case 1
set commit_one (git log --pretty=format:"%h" | head -n 1)
set commit_two $argv[1]
echo "Comparing latest commit ($commit_one) and $commit_two"
@michaelsteuer
michaelsteuer / CustomJwtHandler.cs
Created November 1, 2024 06:20 — forked from kbajpai/CustomJwtHandler.cs
Google JWT Token Validation
using System;
using System.Collections.Generic;
using System.IdentityModel.Tokens;
using System.Linq;
using System.Net.Http;
using System.Web;
using System.Web.Configuration;
using Newtonsoft.Json;
using System.Net;
using System.Threading.Tasks;
@michaelsteuer
michaelsteuer / xrdp-nvidia-setup.sh
Created June 7, 2024 06:57 — forked from Nexarian/xrdp-nvidia-setup.sh
Setup for XRDP using Nvidia Acceleration
#!/usr/bin/env bash
set -e
cd ~
sudo -v
# Make sure system is in a good, updated, clean, state.
sudo apt-get -y update
@michaelsteuer
michaelsteuer / Naty's FFXIV Endwalker Add-ons, Plugins and Mods.md
Created June 2, 2024 04:52 — forked from natyusha/Naty's FFXIV Dawntrail Add-ons, Plugins and Mods.md
All the third party add-ons, plugins and mods I use for FFXIV.

Last Updated: Patch 6.58

The program which most people use for parsing in FFXIV and several other MMOs. For an open source alternative consider using IINACT though configuring it won't be covered here.

Options

  • Main Table Encounters
    • General
      • Uncheck: Number of seconds to wait after the last combat action to begin a new encounter.
      • Uncheck: Number of seconds to wait after the last combat action to pause the encounter duration.

Plugins

@michaelsteuer
michaelsteuer / AXES IN COLUMN CHART.js
Created April 19, 2024 08:30 — forked from DNTech/AXES IN COLUMN CHART.js
Google Charts - Customizing Axes ( hAxis and vAxis ) | Code Based Learning by RichNet
<!-- AXES IN COLUMN CHART -->
<html>
<head>
<link href="/css/w3.css" rel="stylesheet" />
<link href="/css/print.min.css" rel="stylesheet" />
<script>
//Declaring Global Variables
var GV, CHT, DT, OPT;
function drawChart(){
GV = google.visualization;