VSCodium is a fully open-source alternative to the not-so-FOSS VS Code. Learn why open-source enthusiasts who are conscious about privacy and transparency should switch to VSCodium.
Developer's Cafe
VSCodium is a fully open-source alternative to the not-so-FOSS VS Code. Learn why open-source enthusiasts who are conscious about privacy and transparency should switch to VSCodium.
This article will take you through the step-by-step process to build a REST API using API Gateway. The API invokes a Lambda function that in turn invokes OpenAI APIs and returns a response. Your applications can invoke this API to embed Artificial Intelligence capabilities similar to ChatGPT.
Learn how to fix “‘StreamingBody’ object is not subscriptable” error in boto3 framework when invoking functions in AWS Lambda.
OpenAI provides APIs to programmatically access the functionalities provided by ChatGPT, which allows you to integrate AI capabilities into your applications and services. This article provides a step-by-step guide to setting up the environment and invoke OpenAI APIs from your AWS Lambda functions.
ChatGPT is a conversational bot launched by OpenAI in November 2022 as a prototype for beta testing and feedback. Among the many things it can do, it can teach you programming languages. This article explores how the conversational nature of ChatGPT can be leveraged to learn Python.
The First Edition of this book was released in May 2020, about two and a half years ago. Since its…
Find yourself printing a lot to the Terminal during development and surprised to find your output missing? Read on…
AWS Lambda makes it easy to build highly available serverless applications quickly. However, setting up resources in multiple regions makes…
Re:Link for Mac is a Browser, except that it doesn’t open any website; instead, it redirects the request to other installed browsers in the system based on customizable rules.
Re:Link is a Windows application that registers itself as a browser in your machine, intercepts your URL requests and link clicks, and open them in different browsers (Chrome, Firefox, Edge, etc.) based on a set of predefined rules.
MySQL is an RDBMS platform that stores data in a tabular format in a normalized manner, whereas, MongoDB is a NoSQL database that stores information in the form of documents that are grouped under collections. The representation of data is completely different and hence migration of MySQL table data to MongoDB collections might sound like a mammoth task. Fortunately, Python makes it a breeze with its strong connectivity and data handling capabilities.
Are you looking for resources to get started with migrating SQL Server Databases to PostgreSQL? This is the book for you. This concise eBook is intended to be a ready reference and a checklist for migrating your databases, applications and services from Microsoft SQL Server to PostgreSQL and discusses all the important information you need to be aware of before beginning a migration project.
C# 8 comes with a host of changes and language improvements that make it more interesting than ever to write code in the world’s most popular programming language. This article describes the most important new features and enhancements to the language.
.NET Core 3.0, with a significant number of changes and improvements, was released on 23rd September 2019. The most important changes are discussed in this article.
Introduction The stock DropDown control that comes with ASP.NET allows us to select only one item. To overcome this limitation,…
System.String is one of the few classes in the .NET Framework Base Class Library that is given special treatment by the CLR. …