🔗 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

🔗 IPA Reader

IPA Reader This is a tool for reading International Phonetic Alphabet (IPA) notation aloud. It makes it easy to actually hear how words are pronounced based on their phonetic spelling, without having to look up each character in the IPA chartand string the sounds together yourself.

September 6, 2023 Â· 1 min Â· 46 words

🔗 Intro.js

User Onboarding and Product Walkthrough Library | Intro.js Intro.js is a lightweight JavaScript library for creating step-by-step and powerful customer onboarding tours Good way to announce and introduce new features to users.

August 31, 2023 Â· 1 min Â· 32 words

🔗 Youtube to Webpage

GitHub - obra/Youtube2Webpage: I learn much better from text than from videos Youtube-to-Webpage is a Perl script to create a webpage from a Youtube video with a transcript generated from the video’s closed captions paired with screenshots of the video. You can see an example at https://obra.github.io/Youtube2Webpage/example/

August 31, 2023 Â· 1 min Â· 47 words

🔗 Interactive SVG template

From static to interactive: turn SVGs into exciting experiences | The Flourish blog Have you ever created the perfect static graphic but you just didn’t know how to bring interaction and responsiveness to it? Look no further! With the Flourish “Interactive SVG” template, you can easily make any SVG file interactive and clickable – all within our user-friendly interface. … transform static Scalable Vector Graphics (SVG) images into interactive diagrams, complete with clickable elements that reveal in-depth information....

August 30, 2023 Â· 1 min Â· 101 words

🔗 Readme Typing SVG

Readme Typing SVG Dynamically generated, customizable SVG that gives the appearance of typing and deleting text for use on your profile page, repositories, or website. See also the demo site

August 28, 2023 Â· 1 min Â· 30 words