avatar

Andres Jaimes

Working with dynamic arrays in Delphi

One advantage of Delphi’s dynamic arrays is that they are automatically freed once they go out of scope. That simplifies memory management and gives you more flexibility on your applications.

You can declare a dynamic array like this:

Customers: …

Minor changes

I have applied some minor changes to this website: caching – to improve performance – and micro-blogging entries. Later I will add some style to the micro-entries.

Creating Shortcodes in WordPress

Shortcodes enable developers to create special kinds of content, following the idea of macros. One very famous short code is “gallery” needed to insert a gallery of images into a post.

The good thing about shortcode’s is that final users are free to …

Download YouTube videos using Java

From time to time we all have needed to show a YouTube video where no Internet connection is available.

This program will allow you to download a video from YouTube for later playback. It is important to say that YouTube constantly changes its video …