Flotsam and Jetsam #112

  • Been a while, eh? 
  • Obviously the biggest news to cover is the Idera acquisition.  By now I’m sure you all are aware that Idera Software has acquired Embarcadero. (It always seems strange to me when a smaller company bys a bigger one, but never mind….)  They’ve done an interesting thing.  They’ve taken the Embarcadero database tools (what we used to call “DataGear”) and incorporated them into Idera’s software brand.  Then, they’ve left RAD Studio and Interbase under the Embarcadero banner as a separate entity.  I don’t know what the accounting setup is, but it does seem like a separate company altogether.  Neither website mentions the other.  Embarcadero put out a press release stating that they are exclusively focused on development tools, which I really liked to see.  It does seem like Idera wanted the “DataGear” stuff and have now set up “CodeGear” as a separate entity.  What that means I don’t know. But here’s to continued success under the new management.
  • Along those lines, I did have a conversation with Atanas Popov, General Manager for Embarcadero. He was quite confident in things going well as they execute on the roadmap.  He’s actually quite open and accessible – he publishes his email: atanas.popov@idera.com  Don’t be afraid to get in touch with him if you have any questions or issues about the path forward.
  • I can’t vouch for the book, but you can get Delphi Succinctly for free.
  • I will be presenting two days of material at the Danish Delphi User Group at the end of April.  I’m really looking forward to it, not only for the excellent conference, but also because my youngest will be making the trip with me.  I’ve talked at this conference twice before, and it’s always been fun.  If you are in thearea and want to excellent Delphi content (if I do say so myself), then you should attend.
  • My books continue to sell, and I’m very grateful to each and everyone of you that have made a purchase.  If you still want to buy, supplies are unlimited, but don’t let that stop you!  You can buy both books in paper copy, both on  electronic copy from LeanPub, and if you are really excited, you can buy them both as an electronic bundle for a $15 savings.  Again, you have my thanks and gratitude for your purchases.  The books have been way more successful than I ever hoped.
  • The bummer news is, of course, the departure of Allen Bauer from Embarcadero. Allen is a great friend, and I wish him well on his new endeavors at Google. He was with the Delphi team from the very beginnning.  His loss is a blow to the product.  But the team isn’t just one guy, so here’s to others stepping up to fill the void. 
  • Link of the Week:  Giving up on TDD by Uncle Bob.  Apparently a guy named Ian Sommerville “gave up” on TDD, and Uncle Bob refutes his argument. Uncle Bob doesn’t pull his punches.  Good stuff.
  • Flotsam and Jetsam #111

    • My friends David Millington and Roman Yankovsky have teamed up to offer a Christmas time special.  You can buy both of their tools for the price of Fix Insight.  What are those tools?  Well, David’s tool is Navigator – a powerful, easy to use way to navigate your code.  Roman’s tool is Fix Insight – a static code analysis tool.  Right now, you can get both for the price of Fix Insight – that’s a $40 in savings.  I can vouch for both tools as being very useful and of high quality.  Don’t miss this good chance to get two excellent tools at a low price.  (While you are at David’s website, be sure to download the excellent and free Bookmarks plugin. And did you know that he has some open source items available as well?)
    • ‘Tis the season for Delphi updates.  Of course, Delphi 10 Seattle Update 1 is out.  It even includes a few new features.  It is available for all people on Update Subscription.  (For those of you complaining about this, I hate to say it, but you were given plenty of warning and opportunities to get on board.)  Dr. Bob reports on two hot fixes that are also available.
    • It looks like I’m going to be speaking in Denmark in April at DAPUG’s annual conference.  I have spoken twice before, and have always enjoyed my trips there, and the fine hospitality provided by Jens Fudge and his family.  I’m looking forward to speaking there again.  Not 100% sure what the topics will be yet, but I promise it will be interesting.
    • I had a great time at EKON 19 – you should attend next year no matter where you are in the world – and the thing I enjoyed the most was my three hour seminar on Dependency Injection.  I covered Dependency Injection in Coding in Delphi,  but things have changed in the mean time, and there have been additions to the Spring for Delphi framework that make things even more powerful and capable.  So much so, in fact, that I’ve decided to write a book entitled Dependency Injection in Delphi. It will very likely be shorter than my other two books, and I think to start I’ll sell it as an ebook only (MOBI, ePub, and PDF) on Leanpub.  It will, however, go into Dependency Injection much more in depth than my two chapters in Coding in Delphi.   In any event, you can follow this link and sign up for updates about  the book and let me know how much you think I should charge for it.  There’s absolutely no time table on this – as you saw above, I have a lot of preparation to do for DAPUG – but I will be working on it.  I’ll go with “it will be available later this year”.  Again, I’m humbled and grateful by all the people who have bought my books.  

    More Coding In Delphi Now in Electronic Form

    My deal with Embarcadero has expired, so More Coding in Delphi is now available for sale in electronic form

    That makes a total of four ways to buy my two books:

    Both books are also available on Amazon

    Both books have been more successful than I could have hoped for, and I’m very grateful to all of you that have purchased.  I hope you are pleased with it.

    Registering Primitives in the Spring Container

    I just got back from attending EKON 19 in Köln, Germany. I had a really good time and learned a lot. In fact, I learned the most in one of the sessions I gave – a three hour workshop on Dependency Injection.  Stefan Glienke was there – he maintains and enhances the Spring Framework – and he showed me something that the Spring Container can do that I didn’t know it could do — resolve primitive values by name and an anonymous method.

    Here’s how this works.  First, we’ll take a look at a simple class:

    type
      TPerson = class 
      private 
        FName: string; 
        FAge: integer; 
        function GetName: string; 
        function GetAge: integer; 
      public 
        constructor Create(aName: string); 
        property Name: string read GetName;  
        property Age: integer read GetAge; 
      end;
    

    This is a simple class — so simple that I won’t bother showing you the implementation, which I know you can figure out.

    What is cool, however, is that you can inject both Name and Age properties.  I’ll demo one as a constructor-injected parameter, and the other as a field-injected value.

    First, we’ll register the Name property.  We’ll get the name property using the following function that gets the user’s Windows Name:

    function GetLocalUserName: string;
    var
      aLength: DWORD;
      aUserName: array [0 .. Max_Path - 1] of Char;
    begin
      aLength := Max_Path;
      if not GetUserName(aUserName, aLength) then
      begin
        raise Exception.CreateFmt('Win32 Error %d: %s', [GetLastError, SysErrorMessage(GetLastError)]);
      end;
      Result := string(aUserName);
    end;
    

    This is just a wrapper around the Windows API call GetUserName.  The real fun is here:

      GlobalContainer.RegisterType;
      GlobalContainer.RegisterType('name').DelegateTo(
                                       function: string
                                       begin
                                         Result := GetLocalUsername;
                                       end
                                       );
        GlobalContainer.RegisterType('age').DelegateTo(
                                       function: integer
                                       begin
                                         Result := 42; 
                                       end
                                       );
    

    First, we register the TPerson class so that the container can resolve things for it. Then we register a string with the name ‘name’, and delegate its “construction” to an anonymous function that calls our GetLocalUserName function. The point here is that we now have a “handle” – the string ‘name’ – to a string value that can resolve at runtime. We do the very same thing for the FAge field. That might seem like over-controlling things, but in effect it is quite powerful.  We can use it to ensure that both interface and primitive values in a class are resolved with the Container.  Imagine a constructor that requires not only interface dependencies, but a string value as well.  You can let the container resolve the values for the entire class.

    Now, all we need to do is to change the above class to have these attributes:

    type
      TPerson = class 
      private 
        FName: string; 
        [Inject('age')]
        FAge: integer; 
        function GetName: string; 
        function GetAge: integer; 
      public
        [Inject(‘name’)] 
        constructor Create(aName: string); 
        property Name: string read GetName; 
        property Age: integer read GetAge; 
      end;
    

    Now, the Name property of the TPerson class will automatically be filled with the Windows user name without actually writing any more code to make it do that. The FAge field will be set with our favorite number ’42’.

    (The code for this application can be found here.)

    Now, at this point I bet you are asking “Why would I do that?”

    It does, on the surface, seem like a bit of overkill.  But, in the world of Dependency Injection, being able to resolve all the dependencies of a given class – interfaces, classes, and primitives  — is golden.  Not having to write code, and centralizing the resolution of constructor parameters, properties, and fields –no matter what the type — are very useful indeed.  Remember, the more you can decouple your code via the Container, the better.

    And you don’t even need but the one call to the ServiceLocator.

    Flotsam and Jetsam #110

    • I am doing two Embarcadero Partner Spotlights in the coming weeks.  Both will be 15-20 minute videos about chapters in my book.  The first will be on the Command Pattern, and the second will be on Aspect-oriented Programming.  You can sign up here.  There are some other good partner spotlights coming up as well, including Parnassus (which I talk about below.)  You can also watch all the past Partner Spotlights on YouTube.
    • I’ll be speaking at EKON 19 this year.  Topics include Operator Overloading, Parallel Programming, and a three hour tutorial on Dependency Injection.  I always have a great time at this event, and I always learn a lot.  Marco Cantu and Cary Jensen will be there.  I’d recommend attending – and you get early bird pricing before 01 October.
    • I’ll tell you what, the advertising team at Embarcadero is playing at the top of their game.  I can’t go anywhere on the web without seeing an ad for Delphi 10 Seattle.  Google ads is working quite nicely for them.  If you are a Delphi developer and use Google for searching, you have no excuse not to know DX Seattle exists.
    • I’m a big user and fan of Parnassus Bookmarks, and they have released a version for DX Seattle.  Highly recommended.  And I look forward to seeing what they have in store in the future.  David Millington is a great developer, and I expect some cool stuff in the IDE Plugin department from him.  You should also check out his Navigator tool.
    • The Embarcadero newsgroups are back up and running on new hardware and a new backend.  They’ve been reliable and speedy for about two weeks or so, now, so hopefully they will stay that way.  I think the “catch” is that you have to use SSL to connect.  But in any event, if you are still into using the newsgroups, they seem solidly back up now.

    Flotsam and Jetsam # 109

    Flotsam and Jetsam #108

    • It’s Delphi Survey time.  You can take it here.  I can assure you from personal experience that the results of the survey have a big impact on the future direction of the product, so please take the time to fill it out as completely as possible.  I think it is only out for a limited time –until the 28th if my math is correct —  so do it right now.
    • I was stunned to discover that Visual Studio Code didn’t syntax highlight *.pas files.  Wow.  So here’s a couple of things.  First, vote here on UserVoice for this entry that asks for Object Pascal support.  At that link I found this link, which is an unofficial project to add support.  It seems to work – and I appreciate the effort from Wosi —  but I find it ridiculous that VS Code doesn’t support Pascal out of the box.
    • Looks like the next release of Delphi is just around the corner, as they are starting to talk about it with hints about new features. So far I’ve seen:
    • I attended the webinar about CodeSite and the Konopka Signature VCL controls and was very impressed.  I knew the basics of CodeSite, but never really knew its full power.  And I hadn’t looked at the VCL controls in a while, either.  As I’ve said, Ray has forgotten more about good UI design than I’ll ever know, and his controls reflect that.  A couple of things to note from the webinar and the Q&A:
      • Both CodeSite and the Konopka Signature controls will be sold as separate products and not ship as part of Delphi.  The limited-but-still-very-useful CodeSite Express will continue to ship with Delphi, RAD Studio, and C++Builder.
      • CodeSite also has a .Net version, so if you are doing Net development, you can use can use it there as well.  I like that Embarcadero is making a foray into the .Net world.  Maybe I’ll get really smart on CodeSite and give a CodeSite for .Net presentation at our next Philly code camp. 
      • It appears  that Ray will continue to work on both products, but that wasn’t 100% clear.
      • The fate of Ray’s cool Radiant Shapes for FireMonkey wasn’t made entirely clear, but it was hinted that more news was coming on that front. 
    • I’m a huge FinalBuilder fan, and the folks at VSoft have just released Version 8.  Sounds like a great release from a great product.

    More Coding in Delphi

    I hope most of you have heard by now, but my second book is out and it is called “More Coding in Delphi”.   It’s a book very similar in nature to my first book (Coding in Delphi, which is still very much for sale) in that it covers coding techniques for Delphi Developers. 

    You can get the book for free if you own Delphi XE8.  If you don’t yet own Delphi XE8, I suggest you upgrade, get the great product, and then get both my and Marco’s new book as well – both for free.  It’s a win all around.   Sorry, but the only way to get the ebook is to be a Delphi XE8 owner.  Well, I shouldn’t say sorry; as I said – it’s a win for everyone to own XE8. 

    If you want a paperback copy of More Coding in Delphi, you can buy it from CreateSpace.  You can also buy it on Amazon, but you’ll be doing me a favor if you buy it from CreateSpace – my royalty is markedly bigger there.   CreateSpace is owned by Amazon if that makes a difference, and you’ll get the exact same book either way.

    Here’s the Table of Contents of the main body of the book:

    • Six Things Before We Start
    • Writing SOLID Code
    • Patterns
      • Factory Pattern
      • Observer Pattern
      • Adapter Pattern
      • Decorator Pattern
      • Command Pattern
    • Operator Overloading
    • Multi-Threading and Parallelism Overview
    • Using TThread
      • The Parallel Programming Library
      • Parallel For Loops
    • Interception and Aspect-oriented Programming
    • A History and Review of TSmiley

    In addition, here are also Appendices about Duck Typing and “Things Nick Does When He Codes”. 

    More Coding in Delphi was a lot of work, but well worth it. It’s quite satisfying to complete a book. 

    I hope you like it. 

    Flotsam and Jetsam #107

    • David Millington of Parnassus Software – author of the great and free Bookmarks plugin —  has released a new commercial IDE plugin called Navigator.  Looks pretty sweet.
    • The book is this close to being done.  I just have to get it past the folks at CreateSpace.  Actually, the writing and editing is all done, it’s just the publishing part that is ongoing.  You can find out more at http://www.leanpub.com/morecodingindelphi.
    • Lots of interesting things happening at Embarcadero.  Here are my comments on the various events:
      • Embarcadero acquires assets of Raize Components – I really like this.  First, I love Codesite.  It’s a great tool for debugging.  Many folks don’t realize that you can even use it to remotely instrument your application.  Ray Konopka is a fantastic, meticulous developer who has forgotten more about UI design than I’ll ever know.  Interestingly, both products are being sold as separate products, and not integrated into Delphi/RAD Studio.  Perhaps we’ll still see a “lite” version in Delphi.
      • Embarcadero unveils BeaconFence –- Now this is really cool.  Beacons are growing in popularity, and you can do some really cool things with them.  BeaconFence allows you to use beacons in some very cool ways.  Imagine  you are a warehouse, and you have a whole bunch of robots carrying product around to people who ship things (Cough, Amazon, cough).  BeaconFence would allow you to know the location of everyone of those robots down to the inch.  Or imagine you are a zoo – you could build an app that guests could download and run that would help them navigate around, find exhibits, and generally know where everyone is at any given moment – perhaps offering a discount as the guest walks buy the sno-cone vendor.  This is some cool stuff, folks.
      • CodeRage X is coming up on October 13-15.  You can sign up here and you can submit your presentation ideas here.
    • EKON 19 is coming on November 2-4.  I’m going to try to be there.  Always a good event.
    • I’m going to be giving a Skill Sprint on Dependency Injection on August 18th during the new series of Developer Skill Sprints.  You won’t want to miss it. Sign up today.