Systems | Development | Analytics | API | Testing

Development

How to Fix the Array Index Out Of Bounds Excepiton in Java

The ArrayIndexOutOfBoundsException is a runtime exception in Java that occurs when an array is accessed with an illegal index. The index is either negative or greater than or equal to the size of the array. Since the ArrayIndexOutOfBoundsException is an unchecked exception, it does not need to be declared in the throws clause of a method or constructor.

Before the Pandemic, the University of South Florida Went to School on Low-Code. Now it's Paying Off, Part 2

Not to get all gloomy about it, but the pandemic accelerated the largest declines in college enrollment in more than 50 years and slammed colleges and universities with $24 billion in COVID-related debt. In other words, COVID was a wake up call for higher education.

What Is iPaaS? Definition and Benefits

Businesses are always looking for new and innovative ways to improve their workflow. One way to do this is by using iPaaS solutions (integration Platform as a Service). iPaaS is a platform that allows businesses to integrate different applications, making it easier for employees to share data and collaborate. This article will discuss what iPaaS is, its benefits, and some of the top providers in the industry.

WSO2 Conducts First APAC Partner Developer Hackathon

While the year 2021 was a huge success, we've re-energized ourselves for 2022. By launching new cloud platforms, we began our path to radically simplify the production of digital experiences for our clients. This allows us to offer products and solutions as software as a service (SaaS), private cloud, or on-premises, with the ability to seamlessly move between the three alternatives in the future.

Getting Ready for Mobile CI/CD on Apple Silicon M1

As Apple leaps forward from Macs built with Intel-based chips to Macs with ARM-based chips, this transition means both Bitrise and our customers, need to update tooling and software in preparation for this transition in order to take full advantage of the Apple Silicon for the development work.

How to set up usage-based billing with Stripe and Moesif for your API

A good business model is one that can easily generate revenue. Often, when developers build something it could easily be packaged and used by another organization. This is extremely true when it comes to APIs. If an API is solving a well-known problem, there is likely a market for it. Being able to expose an API for public consumption can be done in many ways, a popular option being using an API gateway. The real hurdle comes when you decide to start billing for usage.

Stored Procedures: Native API/Native Code vs SourcePro DB

In the previous article, we walked through an example of how to use input parameter binding to send data to a MySQL database using the native MySQL C API and then compared that to the clean simplicity of using the SourcePro DB API. In this final article, we are going to walk through building an example that can invoke a stored procedure with an input parameter of the name of a new account holder and an output parameter of the new account id assigned by the database.