Next week I’ll be presenting at an event in London organized by our partner Grey Matter. You can find more information and the link to sign up onhttp://www.greymatter.com/corporate/events/to-delphinity-and-beyond-free-delphi-workshop/
Titled “To Delphinity and Beyond” the event is focused on a general update of where the product is today and where it is heading in the…
Running a Delphi Linux Application on Google Cloud Shell
March 2, 2018
Google has made available to all Gmail users a Linux Shell called Google Cloud Shell for interacting with their Cloud Services. This shell is a free Debian 7 shell with a storage capacity of 5GB. It is not a VM that continues to run while you are disconnected, but rather a…
RAD Studio 10.2.2 Tokyo February 2018 Patch Re-Released
February 16, 2018
Last week, Embarcadero released a patch for Tokyo 10.2.2, focused on Android and RTL improvements. What happened is that Windows would not always ask for execution with admin account (on systems with active User Account Control) and could end up copying the replacement files…
Delphi 23 and Delphi 10.2.3
February 14, 2018
Today is Delphi’s 23rd birthday. The product was launched on Valentine day in 1995 in San Francisco (andI had the luck to be there, as I covered in the past). 23 years is a lot of time for people. It is a incredibly long time for technologies. It is hard to find a language, framework and IDE from 23 years ago you can use to build todays’s and tomorrow’s software. Of course…
My New RTTI in Delphi Class on Embarcadero Academy
February 5, 2018
As you might remember, I’m helping building the Delphi curricula on the Embarcadero Academy web site. My focus so far has been on the Delphi language, while other tackle VCL and other areas, or other languages and tools. Last week I completed my set of classes on the…
Try-Finally Blocks for Protecting Multiple Resources in Delphi
January 26, 2018
The Delphi language shares with many others a standard resource allocation pattern to make sure that in case of an exception the resources is properly released. Resources in this context are memory objects, files, operating system objects and handles, and the like. In…
HTTP Protocol Related Improvements in Delphi 10.2.2
January 18, 2018
The new features for the HTTP client library offer more flexibility and options in terms of protocol and standards support.
Better Secure Protocols Support
The first change is the improved support for security protocols. In the pastit wasn’t possible to specify the required security protocols (TLS1.1, TLS1.2, etc.) for an HTTP request. We have added a new…
RAD Studio has offered support for JSON in different ways and for a long time. From the JSON system unit (originally part of the DBX space) to the old DataSnap table mapping (also via DBX) and to FireDAC tables to JSON mapping, there are many ways to interact with JSON data…
New VCL Panels in Delphi 10.2.2
December 14, 2017
With the need to supportmore screen resolutions, while creating nice looking user interfaces and pleasant user experiences, we think it is important tooffer additional ways to build the UI of your VCL applications. This is why in 10.2.2 we introduced two new VCL…
Debugging Delphi Apps on Android 8.1 Works
December 14, 2017
When Google introduced Android 8 this summer, they increased platform security but happened to block socket access to the debugger, basically preventing debugging applications on a device. You’d see the error message “Can’t open socket: Permission denied.” as reported also at https://quality.embarcadero.com/browse/RSP-18992. The issue was not a change in our debugger…