Systems | Development | Analytics | API | Testing

Latest News

GPUs Public Preview: Run AI workloads on H100, A100, L40S, and more

Welcome to day two of Koyeb launch week. Today we're announcing not one, but two major pieces of news: Our lineup ranges from 20GB to 80GB of vRAM with A100 and H100 cards. You can now run high-precision calculations with FP64 instructions support and a gigantic 2TB/s of bandwidth on the H100. With prices ranging from $0.50/hr to $3.30/hr and always billed by the second, you'll be able to run training, fine-tuning, and inference workloads with a card adapted to your needs.

How to Modernize Your Legacy BI Tools with Embedded Analytics

Whether you’re an independent software vendor (ISV) or enterprise-sized company, you want the analytics software you invested in to enhance your users’ decision-making, open up greater access to key data, and improve operational performance for the long-term. However, continuously achieving these business outcomes requires a modern solution. Many organizations still rely on older business intelligence (BI) tools for reporting due to long-term licensing.

Empowering Enterprise Generative AI with Flexibility: Navigating the Model Landscape

The world of Generative AI (GenAI) is rapidly evolving, with a wide array of models available for businesses to leverage. These models can be broadly categorized into two types: closed-source (proprietary) and open-source models. Closed-source models, such as OpenAI’s GPT-4o, Anthropic’s Claude 3, or Google’s Gemini 1.5 Pro, are developed and maintained by private and public companies.

Database generated events: LiveSync's database connector vs CDC

Ably LiveSync is a product we launched last month to help developers deliver live updates in their applications by automatically keeping their database and frontend clients in sync. LiveSync is made of two components, the Models SDK that runs on the client, and the database connector that listens to changes in your database and syncs those changes to your clients.

Spreadsheets vs. Test Management Tools: Unleash the Power of Efficient Test Cases

In the ever-evolving world of software development, a well-defined test plan is the cornerstone of a successful Quality Assurance (QA) process. For QA professionals, testers, testers, and developers alike, a robust plan ensures comprehensive testing, minimizes risks, and ultimately delivers high-quality software. Traditionally, spreadsheets like Excel have been the go-to tool for crafting test plans. However, as projects grow in complexity, the limitations of spreadsheets become increasingly apparent.

New in PHP 8.4: engine optimization of sprintf() to string interpolation

PHPs compiler and bytecode cache OPcache not only cache the compile step from PHP source code to virtual machine bytecode, they also include optimizations that can produce faster bytecode: For example PHP can: For PHP 8.4 Tideways sponsored the work of our colleague Tim to add another compiler optimization for the function sprintf().

How to Create a MySQL REST API in 6 Easy Steps

According to StackOverflow’s 2022 survey, 46% of professional developers rate MySQL as the most popular database to use in the workspace. As programmers, we should not be bothered with repeatedly writing code which is otherwise readily available, robust, and well-tested. Yet this problem remains persistent in the REST API space, despite the implementation process being by this point in time rote, repetitive, and prone to error and oversight. This oversight is costly for several reasons.

How to Craft and Sign a Custom JWT in Kong Konnect

The JSON Web Token (JWT) is an open standard that allows information to be transferred securely between different parties. The token is digitally signed by using a private key (HMAC) or a public/private key (RSA) by building a JSON Web Signature (JWS). It guarantees that the JWT hasn’t been modified since its creation.