Akbar on Development
Attaining the Impossibles
  • All Projects
  • compass
    Jack Sparrow Compass
  • subtitles translator
    Subtitles Translator
  • usb-disk-manager
    USB Disk Manager
  • swift
    Swift MVC Framework
  • taskbar-ext
    TaskbarExt
  • quick-chess
    Quick Chess
  • basecamp-ext
    Basecamp Extension
  • language-tools
    Language Tools
  • rapid-downloader
    Rapid Downloader

When I migrated my website to the new hosting service, on the blog end, all was working fine except the Permalink Options page in the WordPress admin was not displaying any content. After trying multiple things and wasting time here and there, I found the solution as discussed in the following thread: http://wordpress.org/support/topic/356829 Basically, my […]

Most of the online software downliad site supports the PAD file for your application submisssion. The PAD (Portable Application Description ) is a machine-readable document format designed by the Association of Shareware Professionals Though it’s just an XML file and you can create this using an XML Editor or even a notepad, I find it […]

Here are few tips regarding the 4D v11 Plug-in development (particularly using the XCode): By default the Architecture mode for the Project Development Configuration is “Native Architecture of Build Machine”. This means if you are developing this plug-in on the Mac Intel machine, your plug-in will not work on the 4D if it’s running in […]

or the last couple of days, I have been working on the migration of one of the 4D Plug-in to the v11, and it has been a fun and frustrating experience (to some extent). It was frustrating, because there is very little help available, and there is no starting guide. You have to explore and […]

JavaScript doesn’t natively support the string trim (removing leading and trailing spaces) function, but this function is quite useful and required from time to time. Fortunately, you can do this as easily as by just single line of code using regular expression and can add support to all the string objects using the JavaScript prototyping. […]