One of the things that I really like about Microsoft products (and one of the reasons for their success) is the very well documented and very capable APIs that Microsoft provides. Dynamics is no exception.
Here are some helpful links …
Read MoreIt's not what you look at that matters, it's what you see.
One of the things that I really like about Microsoft products (and one of the reasons for their success) is the very well documented and very capable APIs that Microsoft provides. Dynamics is no exception.
Here are some helpful links …
Read MoreI’ve been doing quite a lot of work with C# reflection recently. Reflection is nifty stuff. It’s cool to have code that can inspect itself, execute itself dynamically.
I’ve been using reflection to create applications that use “plug-ins”. For example, …
Read MoreI love how easy it is to use HTML5 for animation. Recently I discovered another cool feature of the HTML5 graphics API: Clipping.
Clipping is a little like photoshop paths. You use the HTML5 api to …
Read MoreNot all programming work requires the same set of aptitudes and skills. Here is my take at some groupings:
I’ve been following the trials and tribulations of Uber for quite a while. Uber was initially celebrated as disruptive and a game changer, a company that would radically transform American transportation. However, even in the beginning there were complications. Heavily …
Read MoreI’ve just posted an updated version of my SQL Script Mover utility on codeplex, here: https://sqlscriptmove.codeplex.com
This is a utility for extracting schema from a sql server database. It supports views, stored procedures, functions, tables, triggers and DDL triggers.
…
Read MoreHere are some thoughts on optimizing stored the performance of stored procedures.
In no particular order:
Clustered Indexes
Make sure your tables have clustered indexes.
It’s amazing to me that folks create tables without clustered indexes. A clustered index is …
Read More