The great thing about Delphi is that it makes the tough jobs really easy. For instance, take the task of controlling cloud servers. By using Windows App development tools like RAD Studio Delphi’s cross-platform Firemonkey FMX framework, you can actually EASILY write a small application that allows your users to control cloud-based virtual machines, cloud computing instances, and even…
This API Adds Machine Learning Computer Vision To Your App
April 28, 2021
Microsoft’s Azure has a broad collection of services you can access with an easy-to-use API.
Azure is Microsoft’s cloud hosting and computing platform with a catalog of more than 200 different products. It also includes products that allow you to implement…
Add STOMP to your apps for lightweight real-time streaming
April 25, 2021
STOMP is a publish/subscribe messaging protocol that allows for very lightweight communications between almost any mixture of programming languages, operating system platforms, and “message brokers”. This article goes into detail about what STOMP is, why you would want…
Easily Deploy Powerful AI Vision Tools On Windows And Mobile
April 22, 2021
The AI Vision API from Google Cloud provides powerful pre-trained machine learning models that you can easily use in your desktop and mobile applications via REST or RPC API method calls. Assume you want your app to detect objects, locations, activities, animal species, and products, or you want it to detect not only faces but also their emotions. Or you may require the ability to read printed or…
Easily Automate The DigitalOcean API From Windows And Mobile
April 19, 2021
DigitalOcean offers a set of APIs that we can access to manage their products from our application. You can create applications that act like DigitalOcean’s Droplets Control Panel. You can access DigitalOcean’s API documentation here…
Learn To Use ExchangeRates API With REST In C++ Builder
April 17, 2021
Do you want to add live exchange rates features to your applications? You can easily get live exchange rates in our C++ Builder and Delphi applications by using ExchangeRates API from theexchangeratesapi.iothat is free for 250 requests monthly. It is very easy to…
Currency exchange rates are an interesting financial dataset similar to stock quotes and cryptocurrency datasets. For building solutions like software or a POS system for a currency exchange business, it is a necessary dataset and there are APIs online that give you easy access to this data. One API that is available is from ExchangeRatesAPI.io which is owned by apilayer (a sister company of…
Flavius Fernandes has been using Delphi since Borland Delphi 5. His showcase entry (ERP Sirius +Mobile) is featured at the Delphi 26th Showcase Challenge and we interviewed him to learn more about his Delphi journey. You can learn more about his application at the ERP…
Google Cloud offers a Natural Language API which allows a developer to take unstructured text as an input and utilize Google’s machine learning capabilities to derive insight from it. They have a number of different operations that can be performed on a piece of text…
ORM For Delphi
March 25, 2021
Object Relational Mapping is the idea of being able to write queries using the object-oriented paradigm in your preferred programming language. So this means we are trying to utilize our language to talk with the database instead of using SQL.
Why utilize ORM?
It abstracts away the database system, so switching is easy.Your queries can be efficient than writing them with SQL.With ORM, you…