The Future of Technology Blogs After ChatGPT

And Other AI Tools

With the launch of ChatGPT at the end of 2022, there have been numerous questions surrounding the future of certain things. One of them is blogging. Many people have already predicted different scenarios, but in this post, I will share my opinion on the future of technology websites like StackOverflow and technology blogs like mine. [Read More]

Reduce JS Size With Constant Strings

Refactor for micro-optimization of frontend packages, scripts, and bundles.

Do Repeated string literals in the JavaSript codebase increase the final file size? Yes, they do. Does it matter? Not for the backend applications, but for frontend applications – and anything that contributes towards them – it does. For example, npm packages and directly loaded scripts, server-side rendered web applications, and SPAs such as Angular, React, and Vue.

[Read More]

Remove Whitespaces Between Markdown Markers

To fix Bold, Italic, and Strikethrough tags.

Markdown Whitespace Inconsistencies

Markdown spec outlines markers, such as the asterisk (*), underscore (_), and double tilde (~~), for bold, italic and strikethrough, (or otherwise known as strong, emphasis, and delete), but requires these markers to wrap the text content on left and right without any whitespace(s). Any space on either side makes the markers appear as is instead of valid HTML tags after parsing/translation.

[Read More]

Multiple Ways to Build APIs to Use Airtable Data in Applications

With their advantages and disadvantages

Airtable is a tool much like Google sheets, only way more advanced; it is a low-code platform for building collaborative applications. You might be interested in consuming Airtable data in your applications, especially MVPs or POCs. For that, you can build APIs that return data sourced from Airtable. [Read More]

JavaScript SDK

This post discusses SDK, JavaScript/Typescript SDK, its types, benefits, and drawbacks.

[Read More]

JavaScript: Find if the String Has a Particular Case

Helper methods to tell if the case of the string is camel, snake, kebab, upper, lower, or start.

Instead of writing our own logic to determine if the given string is of a particular case or not, we can write a helper method that acts as a wrapper, in which we compare the original string with the one returned by lodash method, and return true or false. The wrapper is a good way to pass on the responsibility of correct logic to lodash, a thoroughly tested library.

[Read More]

Replace All Keys of Deeply Nested Objects or Array of Objects in JavaScript

Change the case of object keys recursively to camel, snake, kebab, upper, lower, and start. Or modify in another way.

For a deeply nested object or array of objects, we might want to replace all the keys in some way, such as modifying their case (camel case, snake case, etc.) or adding an underscore at the start of each key or on both sides. Or we may like to change the keys in any other way.

[Read More]
When you purchase through links on techighness.com, I may earn an affiliate commission.