Skip to content

Instantly share code, notes, and snippets.

@kjerk
kjerk / sd_v1_artists.txt
Created May 3, 2023 20:19
Artist list from parrot zone's 'Stable Diffusion V1 Artist Style Studies', changed to 'Firstname Lastname' and clean formatted
A-1 Pictures
A. J. Casson
Aaron Douglas
Aaron Horkey
Aaron Jasinski
Aaron Siskind
Abbott Fuller Graves
Abbott Handerson Thayer
Abram Efimovich Arkhipov
Adam Elsheimer
@kjerk
kjerk / git-loglive.ps1
Last active December 28, 2015 19:29 — forked from ofiesh/git-loglive
Powershell version for git-loglive with cmdlet binding for default params and documentation sytax so get-help works on the command.
function Git-Loglive()
{
<#
.SYNOPSIS
Outputs git log information live.
.DESCRIPTION
Outputs log information in a loop with a specified polling rate.
.PARAMETER lines
The number of log lines to output.
.PARAMETER sleep
@kjerk
kjerk / Function_Http-Get.ps1
Last active December 21, 2015 09:39
HTTP Get function for powershell. Possible to to do a simple http GET request with parameters. Json formatting if Newtonsoft.Json.dll is found in your powershell profile directory and response type is Json. Supports string interpolation to parameterize request.
# Usage:
# Http-Get http://api.asite.com/getUser/45
# or string interpolation style:
# Http-Get "http://api.asite.com/{0}/{1}" getUser 45
function Http-Get
{
if($args.Length -lt 1)
{
"Invalid args."
return;