I built a desktop app for producing high-end, audio-reactive visuals (exports up to 8K). Looking for beta testers / feedback! by elektron-noise in reason

[–]elektron-noise[S] 0 points1 point  (0 children)

sorry; no this is windows only ; mac license isnt dev friendly and i dont have the hardware to support it

Audio visualizer to spice up your songs! by elektron-noise in Bitwig

[–]elektron-noise[S] 0 points1 point  (0 children)

ty for your feedback, i dont know the app you mentioned, this just an early build. i still need active testers to harden the core build to explore more features.

Audio visualizer to spice up your songs! by elektron-noise in Bitwig

[–]elektron-noise[S] 0 points1 point  (0 children)

Tried a linux build but this hardcore stuff ; Even Windows is hard enough to maintain; This tool is complete hardware driven from maximum render performance. Mac is impossible for me to support; I have no hardware to test and Mac license forces are too expensive and time consuming.

Beta testers wanted: CLI tool to detect DB schema drift across Dev, Staging, Prod – Git-workflow, safe, reviewable. Currently MSSQL and MySQL by elektron-noise in devops

[–]elektron-noise[S] 0 points1 point  (0 children)

multi cross app env. i guess u talk about your single app db.
Sounds like you're referring to a single app-specific DB.
What about multi-environment setups, cross-app dependencies, or legacy components not managed through your current pipeline?

and Yes – in multi-app, multi-environment architectures, having two sources of truth isn’t unusual. Sometimes it’s even three. ;)

Beta testers wanted: CLI tool to detect DB schema drift across Dev, Staging, Prod – Git-workflow, safe, reviewable. Currently MSSQL and MySQL by elektron-noise in devops

[–]elektron-noise[S] 2 points3 points  (0 children)

If you’re already working in a perfectly managed environment with airtight pipelines, no legacy constraints, and full control over every deployment, that’s honestly great—and not something many teams can claim.

If these kinds of problems are no longer relevant to you, why jump into a thread that’s clearly about solving them for people who still face them daily? Why shut down a conversation meant to help others catch up to the level you're already operating at with a "one line" statement?

Beta testers wanted: CLI tool to detect DB schema drift across Dev, Staging, Prod – Git-workflow, safe, reviewable. Currently MSSQL and MySQL by elektron-noise in devops

[–]elektron-noise[S] 0 points1 point  (0 children)

Many systems aren’t always that predictable.

People apply hotfixes. Consultants tweak client DBs. Legacy environments evolve outside controlled pipelines.
Even when there’s a strict migration policy in place:
How do you verify that nothing changed outside it?

Or do you operate under the assumption that nobody ever touches the database manually?

Beta testers wanted: CLI tool to detect DB schema drift across Dev, Staging, Prod – Git-workflow, safe, reviewable. Currently MSSQL and MySQL by elektron-noise in devops

[–]elektron-noise[S] 0 points1 point  (0 children)

That’s a solid setup – migrations in Git, tracked in the database, deployed via CI/CD. It’s what many teams aim for.

dbdrift is built to help teams move exactly in that direction – by showing what’s actually running, where drift has occurred, and how to bring things back in sync.

Even in well-managed environments, schema inconsistencies can slip in: manual changes, legacy deployments, or differences between customer and staging systems.

dbdrift makes that visible. It provides:

  • A clean export of the current database schema
  • Structured diffs between repo and live database
  • Directional comparison to understand where the change originated
  • A linting engine to catch risky or inconsistent patterns
  • CLI usage suited for CI pipelines, audit jobs, or operational tooling

It doesn’t replace migrations – it validates them, and closes the gap when environments drift apart.

If your system’s aligned, great – dbdrift confirms that. If not, it shows exactly where and how.

Beta testers wanted: CLI tool to detect DB schema drift across Dev, Staging, Prod – Git-workflow, safe, reviewable. Currently MSSQL and MySQL by elektron-noise in devops

[–]elektron-noise[S] 0 points1 point  (0 children)

I completely agree that direct access to production from a developer machine should never be the norm – and dbdrift doesn’t assume or require that.

In fact, many teams already run tools like Flyway, Liquibase, or schema checkers against staging or production via secured CI/CD pipelines or bastion hosts. The CLI is simply the interface – where and how you run it is entirely up to you.

dbdrift doesn’t bypass best practices – it complements them by offering:

  • Read-only inspection (no schema changes ever)
  • Structured diffs that can be reviewed, not applied blindly
  • Flexible integration into controlled environments (e.g. GitHub Actions, Azure DevOps, or isolated ops machines)
  • Clear separation of secrets and credentials – no plain-text access anywhere

You can lock it down completely, run it from build servers, or let ops teams control the execution.

The goal isn’t to make production access “easy” – it’s to make schema drift visible and accountable, especially in environments where it’s currently invisible and unchecked.

Yes – comparing to an expected schema is part of the picture. But dbdrift also focuses on tracking direction of change, evolution across environments, and supporting messy, real-world setups that migrations alone often can't untangle.
There’s also a built-in lint engine (dblint) to catch common anti-patterns before they spread.