🗃️ bioinformatics
1 item
🗃️ docusaurus
4 items
🗃️ git
1 item
📄️ How I Handle Recursive Config Discovery in CLI Tools
My approach to recursively locating config files like `frontMatterHelper.json` from the current working directory up to the root. Includes ChatGPT's formalized breakdown of the pattern, edge cases, and implementation considerations.
🗃️ postgresql
4 items
📄️ A Couple of Architectural Approaches: Emergent vs. Documentation-Driven Development
When building projects—especially smaller ones like CLIs—I’ve experimented with various architectural approaches. Two key strategies...
🗃️ unity
1 item
🗃️ unreal
1 item
📄️ Create Your Own Code Snippet in VS Code
Learn how to create and troubleshoot custom code snippets in Visual Studio Code. Covers snippet syntax, advanced features, common pitfalls, and real-world debugging with markdown-specific settings.
📄️
Writing a test runner isn't difficult, and doing so gives you full control over how tests are executed. Many developers default to using pre-built testing frameworks like Jest, Mocha, or PyTest, but these tools come with hidden assumptions and unnecessary overhead. By writing your own test runner, you eliminate black-box behaviors and ensure that your tests run exactly the way you intend.