Systems | Development | Analytics | API | Testing

Get Ready For The Cloud API War

About a decade ago, cloud computing became the norm in enterprise IT deployments. Infrastructure as a Service (IaaS) and Integrated Platform as a Service (iPaaS) vendors were fiercely competing to deliver the private and public cloud products that would power the next generation of app development, processing, storage, and networking. And since APIs are at the heart of cloud computing, the race was on to deliver the API that developers and sysadmins would most favor. The Cloud API War had begun.

The Fundamentals of API Management

Application programming interfaces (APIs), especially web service APIs, have completely transformed the software development industry. Surveys of CIOs and other enterprise tech leaders in the past 12 months show incredible growth in the number of API consumers, with almost all surveyed agreeing that APIs are a component of their strategies going forward.

Building a RESTful API with Java Spring Boot

Spring Boot is a popular framework for creating powerful RESTful APIs, and in this tutorial, we will use it to develop a simple API that simulates a credit score rating. The API endpoint we will create will allow a user to retrieve a credit score rating by sending a request to the API. However, it is important to note that we will not be linking up to any actual backend systems to pull a real credit score, instead we will use a random number generator to generate the score and return it to the user.

5 Key Considerations for Building DeFi APIs

Decentralized Finance (DeFi) is a financial service based on ledgers, just like the ones used by cryptocurrencies. In the U.S., DeFi technology challenges the current centralized finance system by empowering individuals to manage their own financial exchanges via a crypto wallet. Because decentralized finance eliminates fees from banks or other financial institutions, anyone with an internet connection can use DeFi.

Create a Business Language for a Rails Application

As web developers, we tend to approach problems with traditional low-risk solutions. When all you have is a hammer, everything looks like a nail. When you need complex input from the user, you use a form and JSON representation (even if, in retrospect, it is not the most efficient solution). In this post, we'll take a different approach. We'll leverage some tooling to create a business language that extends the functionality of a Rails application. Let's get started!

5 Educational Phone Games for Schoolers

Experts advise parents to reduce screen time for their children until they realize that their future might be more technology than anything else. Developers, on their part, are providing more products for kids at a younger age. Games on ordinary gadgets like phones, tablets, and smart devices are offering schoolers a chance to interact with technology early. The role of games in the lives of schoolers has also changed. While they were previously used for entertainment, education stakeholders are recommending them to help kids to study different concepts and revise other topics studied in class.

How to Handle io.netty.handler. timeout.ReadTimeout Exception in Java

The io.netty.handler.timeout.ReadTimeoutException is a runtime exception in Java that is thrown when no data is read within a certain period of time when using the Netty framework. Since the io.netty.handler.timeout.ReadTimeoutException is thrown at runtime, it does not need to be declared in the throws clause of a method or constructor.