- Docker & docker-compose
- Brew
brew install colima
You are a creative assistant focused on helping users create and maintain a <system> campaign set in the world of <worldname>. | |
You will emphasize keeping track of the existing lore and structure of <worldname>, ensuring that all generated sessions, plots, and ideas are grounded in the established world. You must actively use and reference uploaded knowledge files to maintain consistency with the established lore, avoiding the introduction of elements that do not align with the world's lore unless explicitly asked to generate new lore for unexplored parts of the world. It provides guidance on developing engaging storylines, creating characters, balancing encounters, and maintaining the overall narrative flow, while also offering creative inspiration within the established framework of <worldname>. | |
When planning a session, you will ask for details on the campaign's current state, suggest a session structure, and help with NPC interactions and plot twists but will not assist in generating maps. You can also help |
# Provided as is | |
# Make sure to check the code! | |
# Folder for Meilisearch should include config.toml, this is not created automatically atm | |
# Script will require you to have the meilisearch binary exe on the filesystem | |
# IT WIL NOT FETCH FROM GITHUB | |
function Show-Menu { | |
Write-Host "=================================" | |
Write-Host " Meilisearch Management Program" | |
Write-Host "=================================" |
diff --git a/node_modules/@meilisearch/instant-meilisearch/dist/instant-meilisearch.cjs.js b/node_modules/@meilisearch/instant-meilisearch/dist/instant-meilisearch.cjs.js | |
index 0727dba..1f822cf 100644 | |
--- a/node_modules/@meilisearch/instant-meilisearch/dist/instant-meilisearch.cjs.js | |
+++ b/node_modules/@meilisearch/instant-meilisearch/dist/instant-meilisearch.cjs.js | |
@@ -90,11 +90,6 @@ function __spreadArray(to, from, pack) { | |
return to.concat(ar || Array.prototype.slice.call(from)); | |
} | |
-typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) { | |
- var e = new Error(message); |
import { unstable_useControlled as useControlled } from '@mui/utils'; | |
import type { | |
UsePaginationItem, | |
UsePaginationProps, | |
UsePaginationResult | |
} from './usePaginationTypes'; | |
/** | |
* VERIFIED USING | |
* - [email protected] |
# Clean up old releases on the server | |
# This script will check a specified folder for all release versions (i.e. R1, R2, R3, etc.) and delete all except the last X releases. | |
# Can be used together with Azure DevOps releases, each rlease is named RX which this script takes care of | |
# Modify $regex = '^.*?\(R(?<release>\d+)\).*' if you want to look for your own foldertype | |
# Usage | |
# release-cleanup.ps1 -releasesPath /path/to/release -releasesToKeep 3 | |
# Options |
services: | |
mssql: | |
image: mcr.microsoft.com/mssql/server | |
ports: | |
- '1433:1433' | |
environment: | |
SA_PASSWORD: 'SoM3C0mLiC4t3dP4szWoRd' | |
ACCEPT_EULA: 'Y' | |
MSSQL_PID: 'Express' | |
volumes: |
mode: ContinuousDelivery | |
increment: Inherit | |
major-version-bump-message: '\+ver:\s?(breaking|major)' | |
minor-version-bump-message: '\+ver:\s?(feature|minor)' | |
patch-version-bump-message: '\+ver:\s?(fix|patch)' | |
no-bump-message: '\+ver:\s?(none|skip)' | |
tag-prefix: '[vV]' | |
assembly-versioning-scheme: MajorMinorPatch | |
assembly-file-versioning-scheme: MajorMinorPatchTag | |
assembly-informational-format: '{InformationalVersion}' |
#!/bin/sh | |
HOST=http://local.radarr | |
API_KEY= | |
# Add your min date here | |
# All movies added before this date gets deleted | |
date=$(date "+%s" -d "2020-04-01") | |
ids=$(curl --silent $HOST/api/v3/movie -X GET -H "X-Api-Key: $API_KEY" \ | | |
jq '[.[] | select ((.monitored == false) and (.added | fromdateiso8601 < '"$date"')) | .id']) |
{ | |
/** OUTDATED **/ | |
//based on https://gist.github.com/ojame/93560d99149124ea2f89b9d78cbcadd1 | |
// RadarrAPI: Go to Radarr and click 'settings' => 'general'. | |
// TautulliAPI: Go to Tautulli and click 'Settings' => 'Web Interface' | |
// Open the JavaScript Console in Google Chrome (View => Developer => Javascript Console) | |
// Past the following in. Hit enter and away you go. | |
// Alternatively you can use Sources->Snippets in Chrome | |
//Update 2020-04-08: |