Systems | Development | Analytics | API | Testing

%term

SQL Server API: What It Is and How to Create One

SQL Server is a modern relational database management system. It helps data teams store and manage vast amounts of data. However, organizations need efficient methods to access and manipulate this data to leverage it fully. This is where SQL Server APIs come into play. APIs, or Application Programming Interfaces, act as intermediaries enabling different software applications to communicate.

It Not Just About Code

It was never just about code. Pamela Oliveira is a firm believer that societal norms can be transformed by the power of open source technology. Experts need to see this and take ownership despite a rapidly changing industry. In this episode of Test Case Scenario, Jason and Pamela dissect the opportunities and difficulties that technical minds have in attempting to solve social issues with open source.

EP9: Platforms - Insights from the Experts

Sanjiva and Asanka welcome Gregor Hohpe and Frank Leymann to explore the modern landscape of platforms. This episode explores the strategic value of platforms, their role in creating platforms, and key architectural principles. Learn about the importance of APIs, cloud native middleware, and developer experience (DX), along with operational considerations like governance and CI/CD. They’ll explore real-world examples, the debate on building vs. buying platforms, and future trends shaped by AI and machine learning.

Exploring Text Analysis with OpenAI and NodeJS

In the world of natural language processing (NLP), the dream has always been to create systems that can understand, analyze, and generate human-like text. The good news is we are getting closer to this aspiration, thanks to innovations in artificial intelligence, particularly through platforms like OpenAI. In this article, we’ll explore text analysis with OpenAI, exploring the methodologies, tools, and metrics utilized to decipher the complex tapestry of human language. Let’s get started.

Comprehensive Guide to Test Case Management with TestQuality

In today's rapidly evolving software testing landscape, maintaining high-quality assurance standards is more critical than ever. Test Case Management plays a pivotal role in ensuring that software meets user expectations and functions flawlessly. Whether you're a QA professional, a software tester, or a developer, understanding and effectively implementing Test Case Management can significantly impact your project's success.

5 Ways Healthcare and Life Sciences Organizations Are Using Gen AI

Much has been said about how generative AI will impact the healthcare and life sciences industries. While generative AI will never replace a human healthcare provider, it is going a long way toward addressing key challenges and bottlenecks in the industry. And the effects are expected to be far-reaching across the sector.

What to look for when selecting a Test Management tool?

Gone are the days when selecting software was as easy as comparing two different providers and choosing either of them based on how the box looked (yes, software used to come in boxes). Today, selecting the right tool requires careful evaluation of several requirements, including your budget, how your team is built, your tech stack, and projections for future growth (scalability).

API versioning in Ruby on Rails

Versioning APIs is a critical part of building web applications, as it allows you to make changes that may otherwise break existing API users. Changing the contract between the API and the clients that depend on it is dangerous, and versioning endpoints adds flexibility and safety. Versioning is implemented in many ways - You can version with subdomains, query parameters, URL schemas, headers, and more!