🔗 IndieMaker

Buy and Sell Side-Projects, SaaS, Domains and Social Media Accounts | IndieMaker IndieMaker is a community marketplace with 21,057+ members where makers sell their side-projects, unused domains and online businesses.

May 13, 2024 Â· 1 min Â· 30 words

🔗 Your Essential dbt Project Checklist

Your Essential dbt Project Checklist | dbt Developer Blog If you’ve been using dbt for over a year, your project is out-of-date. This is natural. … This post is the checklist I created to guide our internal work, and I’m sharing it here so you can use it to clean up your own dbt project. … with this in hand, you’ll at least know what you’re looking for.

May 4, 2024 Â· 1 min Â· 68 words

🔗 Turn newsletters into feeds

Feed Your Email Send newsletters to your feed reader. Generate an email address you can use for any newsletter, and a corresponding feed you can use to read those emails. Kill the Newsletter! Convert email newsletters into Atom feeds

April 29, 2024 Â· 1 min Â· 39 words

🔗 The Up-Goer Five Text Editor

The Up-Goer Five Text Editor Can you explain a hard idea uso g only the ten hundred most used words? It’s not very easy. Type in the box to try it out.

March 25, 2024 Â· 1 min Â· 32 words

🔗 Difftastic, a structural diff

Difftastic, a structural diff Difftastic is a CLI diff tool that compares files based on their syntax, not line-by-line. Difftastic produces accurate diffs that are easier for humans to read.

March 22, 2024 Â· 1 min Â· 30 words

🔗 Approval Tests

Approval Tests - Home Unit testing asserts can be difficult to use. Approval tests simplify this by taking a snapshot of the results, and confirming that they have not changed. Interesting approach to testing using Combination Approvals: @Test public void upateQuality() throws Exception { CombinationApprovals.verifyAllCombinations( this::doUpdateQuality, new String []{"foo", "bar", "baz"}, new Integer []{-1, 0, 11}, new Integer[0, 1, 49, 50}); } private String doUpdateQuality(String name, int sellIn, int quality) { /*....

November 6, 2023 Â· 1 min Â· 115 words

🔗 AndrewWalsh/openapi-devtools: Effortlessly discover API behaviour with a Chrome extension

GitHub - AndrewWalsh/openapi-devtools: Effortlessly discover API behaviour with a Chrome extension OpenAPI DevTools is a Chrome extension that generates OpenAPI specifications in real time from network requests. Once installed it adds a new tab to Chrome DevTools called OpenAPI. While the tool is open it automatically converts network requests into a specification.

October 30, 2023 Â· 1 min Â· 52 words

🔗 PRQL - Pipelined Relational Query Language

PRQL Pipelined Relational Query Language, pronounced “Prequel” PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement For example, “Top N by group”: from employees group role ( sort join_date take 1 ) WITH table_0 AS ( SELECT *, ROW_NUMBER() OVER ( PARTITION BY role ORDER BY join_date ) AS _expr_0 FROM employees ) SELECT * FROM table_0 WHERE _expr_0 <= 1

October 26, 2023 Â· 1 min Â· 67 words

🔗 AI Emoji Generator

AI Emoji Generator Turn your ideas into emojis in seconds. Generate your favorite Slack emojis with just one click.

October 4, 2023 Â· 1 min Â· 19 words

🔗 Leporello.js

Leporello.js · Interactive functional programming IDE for JavaScript Your code is executed instantly as you type, with the results displayed next to it. No need to set breakpoints for debugging. Just move the cursor to any line and see what’s happening. Reminds me of some of the concepts from Inventing on Principle by Bret Victor.

October 3, 2023 Â· 1 min Â· 55 words