Skip to content

Instantly share code, notes, and snippets.

@recordcrash
recordcrash / 3d-alchemy-workflow.json
Created March 21, 2024 10:00
3D Alchemy ComfyUI workflow
{
"last_node_id": 34,
"last_link_id": 42,
"nodes": [
{
"id": 9,
"type": "SaveImage",
"pos": [
2249,
52
@recordcrash
recordcrash / finetuned_overseer_alchemy.jsonl
Created June 30, 2023 09:22
.jsonl used to train a finetuned alchemy model with Overseer Project item data
This file has been truncated, but you can view the full file.
{"prompt": "Wheelchair || UNREAL AIR###", "completion": " UNREAL chAIR (It is RIDICULOUS what kind of chair this thing is getting. Dude come get the...yeah, this isn't working) END"}
{"prompt": "Mirror || Claymore###", "completion": " Mirrored Blade (A large blade made of mirrors, so the enemy can see the whites in their own eyes (and reflect on their life decisions) before they die) END"}
{"prompt": "Chainbreaker && Jewel of Elemental Power###", "completion": " Elemental Chainbreaker (Alright, so, hear me out, a chain made of candy with a jawbreaker on the end... BUT, its imbued with elemental forces. SWEET SHIT RIGHT?) END"}
{"prompt": "Basic Doom God Tier Outfit || Rogue's Hooded Cloak###", "completion": " Rogue of Doom God Tier Outfit (The garb worn by a Rogue of Doom) END"}
{"prompt": "Pepper Spray || Medieval Mace###", "completion": " Pepper Mace (Not only a mace that you can fling around, but it also sprays a highly painful irritant that will confound enemies as well! Note: Don't hit yourself in the fa
@recordcrash
recordcrash / wordCount.gs
Created January 16, 2021 12:32
Google Apps Script to fetch word counts from a folder filled with google docs into a spreadsheet
var GETFILEURLS_FUNCTION_REGEX = /=GETFILEURLS\((.+)\)/;
var GETDOCWORDCOUNT_FUNCTION_REGEX = /=GETDOCWORDCOUNT\((.+)\)/;
var GETDOCTITLE_FUNCTION_REGEX = /=GETDOCTITLE\((.+)\)/;
var A1_CELL_REGEX = /^[A-Z]+[1-9][0-9]*$/;
function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu("Custom scripts")
.addItem("Run everything", "runEverything")