Skip to content

Instantly share code, notes, and snippets.

@fullyninja
fullyninja / test.html
Created February 4, 2023 00:20
Hello World Html
<html>
<head>
<style>
h1 {
font-family: Calibri;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
@fullyninja
fullyninja / test.md
Created February 4, 2023 00:19
Hello World Markdown

Hello World

This is content converted from Markdown!

Here' a JSON sample:

{
  "foo": "bar"
 }
@fullyninja
fullyninja / TMJiraDarkMode.js
Created February 24, 2021 01:43
A simple and hacky TamperMonkey script to convert Jira to dark mode. Sort of.
// ==UserScript==
// @name Jira Dark Mode
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Convert Jira to dark mode.
// @author Peter Evans
// @match https://*.atlassian.net/*
// @grant none
// @require https://cdn.walkme.com/player/resources/wmjQuery3315.js
// ==/UserScript==
@fullyninja
fullyninja / TMK2SmartformDesignerRules.js
Last active February 14, 2020 04:13
Tampermonkey: K2 Smartforms Designer Rule Editor improvements
// ==UserScript==
// @name K2 - Smartform Designer Rules
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Highlight a rule in K2 Smartforms designer that has the word TEST or FIX as the comment. Also displays the comments below a rule.
// @author Peter Evans
// @match http://example.com/designer/
// @grant none
// @require https://cdn.walkme.com/player/resources/wmjQuery3315.js
// ==/UserScript==
@fullyninja
fullyninja / CreateWordDocsFormList.ps1
Created August 30, 2016 05:10
PowerShell Snippet to create empty Word documents given a text file with a list of file names.
$docListPath = "C:\temp\doclist.txt"
$docList = Get-Content $docListPath
$basePath = "c:\temp\docListOut\"
$word = New-Object -ComObject Word.Application
foreach ($fileName in $docList)
{
$outPath = "$basePath$filename"