Systems | Development | Analytics | API | Testing

SVG animation with CSS

If you're looking to add some spice to your web designs, you may be considering adding animation. SVG animation with CSS can be used to create rich, interactive experiences on the web. SVG is a vector graphic format that can be scaled to any size without losing quality. CSS is a style sheet language that can be used to style HTML elements. Combined, these two technologies can be used to create animations that are responsive, fluid, and resolution-independent.

How to start linting your JavaScript Code?

Linting refers to the process of identifying potential errors in code by using a program. Initially, the lint tool, like earlier similar utilities, analyzed source code to determine which compiler optimizations could be made. In time, lint-like tools added many other types of checks and verifications. The Linting software provides developers with tools to help them write highly scalable code.

Digital Transformation for Financial Institutions: Start with the Tech You Have

Financial services institutions are playing the long game in working toward digital transformation. Considering the rapid rate of change and innovation over just the last 10 years, leading financial organizations are realizing that digital transformation isn’t a destination. It’s a journey. While there isn’t one right way to approach digital transformation, some strategies are less effective than others.

Surviving the API Security Apocalypse

With more and more businesses transforming themselves digitally, it has become critical to secure your APIs. An insecure API is an easy target for attackers to gain access to an otherwise secure computer or network. We invite you to learn about API security best practices to protect against cyberattacks, API misuse, data breaches, and zombie APIs.

11 Features in Node.js 18 you need to try

Node.js 18 was released on the 19th of April this year. You can read more in the official blog post release or in the OpenJS Blog announcement. The community couldn't be more excited! If you want to lend a hand, we welcome your ideas or solutions contact us, or if you would like to help us continue supporting open source, you can contribute with an issue here.

Build a Table Editor with Trix and Turbo Frames in Rails

In this post, we will implement a basic ActionText table editor for your Rails application. We'll learn how: This article draws inspiration from the excellent 'Adding Tables to ActionText With Stimulus.js' blog post from 2020. That was written before the advent of Turbo though, which we can expect to simplify matters quite a bit. Let's get going!

AWS Lambdas with TypeScript: Improve the Dev Experience

In part one of this series, we successfully built a TypeScript Lambda on the AWS cloud. But we left a lot of room for improvement in terms of the developer experience. For starters, the Lambda didn’t run on a local machine, which is cumbersome. The code we wrote is also not testable, which makes refactoring hard or, at least, dangerous. In this take, let’s focus on improving the developer experience. The goal is to make the code more robust and easier to work with. Ready?