Which is faster? NAC Query a List vs Retrieve an Item
Which is faster? NAC Query a List vs Retrieve an Item Having worked with numerous Nintex Automation Cloud (NAC) workflows over the last few years, I’ve literally seen thousands of…
Math.Max/Min vs inline comparisons
Math.Max/Min vs inline comparisons This test stemmed from my having to write a lot of code, and look at a lot of code, that was doing comparisons between 2-3 numbers…
How to get values from People Picker control on Nintex Cloud Task Forms
Nintex Cloud – How to get values from Nintex People Picker Control on Cloud Task Forms When using Nintex Cloud, there is no out of the box method to obtain…
How to show attachments on NWC/NAC Cloud Task Forms
Nintex Cloud – how to show attachments on Cloud Task Forms When using Nintex Workflow Cloud (NWC) or Nintex Automation Cloud (NAC), a common issue that needs to be overcome…
Does How You Access Class Properties Make A Difference?
Does How You Access Class Properties Make A Difference? One day I found myself writing methods for Forex Trading bots where numerous methods within the bot had to access framework…
Things I do to increase Windows drive performance
Things I do to increase Windows drive performance Everyone knows how much I love to play with and micro-optimize codes when programming. But what little tricks do I do to…
Massive SQL Date Time Cheat Sheet
Massive SQL Date Time Cheat Sheet Anyone who has been involved in SQL will undoubtedly tell you wargames they played when they had to manipulate date time data via SQL.…
Division Vs Multiplication Equivalent
Division Vs Multiplication Equivalent It’s a common belief in the world of programming that division is slower than multiplication. Not in order of magnitudes, but relatively. Granted, it depends on…
Does caching calculated loop indexes make a difference?
Does caching calculated loop indexes make a difference? Recently I was reviewing code to a real time financial application. Within a major for-loop construct, I came across the following subset…
Does Parameter Order Make A Difference
Does Parameter Order Make A Difference? I remember reading once that frequently accessed method variables placed first within a method’s signature are accessed faster as they are allocated for available…