Skip to content

Instantly share code, notes, and snippets.

View BryceEWatson's full-sized avatar

Bryce BryceEWatson

  • Palm Springs, California
View GitHub Profile

Mechabellum Counter Cheat-Sheet

Meta accurate as of Patch 1.5.1 — 30 May 2025

The newest patch added the Void Eye and tweaked many staples (Tarantula HP -5 %, Sabertooth +5 % HP, etc.) so counters have shifted.⭐ Start with S-tier; drop to 🟢 B-tier if shop RNG, tech, or supply block prevents the ideal pick.

Legend
⭐ S-Tier = highest win-rate responses 🟢 B-Tier = solid backups


<h1>GraphStarz: AI-Powered Image Analysis Meets Graph Relationships</h1>
<h2>Introducing GraphStarz</h2>
<p><strong>GraphStarz</strong> is an open-source application that combines AI-driven image analysis with a graph database to organize and explore your image collection. I created it to address a common problem: as our photo libraries grow, it becomes difficult to sort, tag, and find images manually. By leveraging AI, GraphStarz can automatically recognize attributes in images – such as objects, people, settings, style, and mood – and use those attributes to tag and relate images together. The motivation was to make image organization smarter and less labor-intensive, so you spend more time enjoying your photos instead of managing them.</p>
<p>At the heart of GraphStarz is a graph database that stores images as nodes with <strong>relationships</strong> linking them based on shared attributes or metadata. This approach allows the system to map complex many-to-many connections between photos in ways a tradi
@BryceEWatson
BryceEWatson / clean-reporter.js
Created December 13, 2024 19:38
Jest clean-reporter.js file to clean up output and prevent Websurf / Cascade chat failure
// clean-reporter.js
class CleanReporter {
constructor(globalConfig, options) {
this._globalConfig = globalConfig;
this._options = options;
this._failedTests = [];
this._totalTests = 0;
this._passedTests = 0;
this._failedTestsCount = 0;
}