Systems | Development | Analytics | API | Testing

Latest News

Using Moesif, Kong, and Stripe to Monetize Your AI APIs - Part 3: Managing Customer Credit

Things can get tricky when managing pre-paid, pay-as-you-go billing for monetized APIs. Three mechanisms must be in place for this type of billing to work: first, you need to be able to add credits to an account. Second, you need to be able to burn down those credits. Third, you need to be able to block users from accessing the API once they have run out of credits.

Interview with Miguel Jetté, Vice President of AI at Rev

In this latest entry of our fascinating interview series that focuses on major players in the global tech arena, we are delighted to present Miguel Jetté, Vice President of Artificial Intelligence at Rev. Join us as we dive into his career development, provide tips for aspiring AI leaders, and discuss the key lessons he has learned along the way.

Navigating the Enterprise Generative AI Journey: Cloudera's Three Pillars for Success

Generative AI (GenAI) has taken the world by storm, promising to revolutionize industries and transform the way businesses operate. From generating creative content to automating complex tasks, the potential applications of GenAI are vast and exciting. However, implementing GenAI in an enterprise setting comes with its own set of challenges. At Cloudera, we understand the complexities of enterprise GenAI adoption.

How To Build A Good Test Infrastructure?

Any (functioning) system is built upon an infrastructure. This infrastructure supports all of the functions and activities of the system. Testing is no exception. With a good test infrastructure, QA teams can speed up their testing efforts and drastically improve efficiency. In this article, we will explore the concept of test infrastructure, and how you can effectively build one.

What is a Test Report? A Comprehensive Guide To Build One

At the end of every testing project, a test report is usually created to summarize the results. This report provides insights into how the test project was executed if it aligned with the initial plan, and what areas need further optimization. In this article, we’ll explore in-depth what needs to be included in a test report, as well as the key metrics that QA teams need to look at if they want to gauge their testing efficiency.

Debugging in Ruby with pry-byebug

For a software engineer, even the basic use of a debugger can save a lot of pain: adding breakpoints (places in the code the program will stop at and expose the current context) is very easy, and navigating from one breakpoint to another isn't difficult either. And with just that, you can say goodbye to a program's many puts and runs. Just add one or more breakpoints and run your program.

Effective Testing in JavaScript

Kernighan & Pike, The Practice of Programming, 1999 Despite constantly changing technologies and the needs of customers, some wisdom seems eternal. Programmers need to test their code. But thorough testing takes time. When we do it well, everything works, and a massive testing effort feels like a waste. However, when we do it badly, our code is often broken, and we wish that we had done better testing. I have some good news for you.