Skip to content

Instantly share code, notes, and snippets.

View fischgeek's full-sized avatar

Jeremiah fischgeek

  • Fargo, ND
  • 21:29 (UTC -05:00)
View GitHub Profile
@fischgeek
fischgeek / gist:aadbb936b71fef625a16dfc3bb32dc61
Last active February 25, 2026 14:34
Transparent Columns in Jira Sprint Boards
// ==UserScript==
// @name Transparent Columns in Jira Sprint Boards
// @namespace http://tampermonkey.net/
// @version 2026-02-23
// @description Transparency effect on sprint boards.
// @author fischgeek
// @match https://*.atlassian.net/jira/software/c/projects/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=atlassian.net
// @run-at document-start
// @grant GM_addStyle
function shortcode_custom_date($fmt) {
extract(shortcode_atts(array(
'format' => 'Ymd'
), $fmt));
return date($format);
}
add_shortcode('custom_date', 'shortcode_custom_date');
// usage: [custom_date format="r"] // Thu, 29 Jun 2023 14:49:05 +0000
<html lang="en">
<head>
<meta charset="utf-8">
<title>canopy test results</title>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style>
.masthead ul,
@fischgeek
fischgeek / resume_template.json
Last active April 26, 2022 00:19
Resume Template as JSON
{
"personal_info": {
"name": "first last",
"age": 0,
"phone": "000-000-0000",
"email": "email@domain.com",
"address": "address",
"website": "https://dev.to"
},
"cv": {
@fischgeek
fischgeek / utils.js
Created October 20, 2021 03:43
Scriptable Utils
function baseGrad() {
let g = new LinearGradient()
g.locations = [0, 1]
return g
}
function gradBaseBlackTop(clr) {
let g = baseGrad()
g.colors = [
new Color("141414"),
# WSL Configuration
## Update Ubuntu components:
Update and upgrade system
sudo apt-get update && sudo apt-get upgrade
Install LAMP stack (note the caret)
class Program
{
static void Main(string[] args)
{
var iter = rl("Iterations:");
var iterInt = Convert.ToInt32(iter);
long val1 = 0;
long val2 = 1;
for (int i = 1; i < iterInt; i++) {
long calc = val1 + val2;
open System
[<EntryPoint>]
let main argv =
let rec DoFib val1 val2 i =
if i > 0 then
let calc = val1 + val2
if i = 1 then
Console.Write(calc.ToString())
@fischgeek
fischgeek / tampermonkey-outlook-space-liberation.js
Last active June 14, 2019 16:52
Take back that space that those annoying ads and upgrade prompts are currently holding prisoner
// ==UserScript==
// @name Outlook Space Liberation
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Gains that space back by annoying ads and upgrade prompts.
// @author fischgeek
// @match https://outlook.live.com/mail/*
// @grant none
// @require http://code.jquery.com/jquery-1.12.4.min.js
// ==/UserScript==
class Notification {
;Things to configure:
; Font,color,size title
; Font,color,size body
; duration
; pop in location/behavior
Title := ""
TitleSize := 30
TitleColor := "7FA2CF"