đź”—Â 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.
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.
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.
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
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.
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.
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) { /*....
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.
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
AI Emoji Generator Turn your ideas into emojis in seconds. Generate your favorite Slack emojis with just one click.
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.