Web Apps Timing Your Queries in Knex.js for Node.js I developed a method of logging the queries executed by Knex.js and the execution times for each query. It can be applied to nearly any app that uses Knex.
.NET / WPF Faking Named Parameters in .NET when Using ODBC Here's some handy code for emulating named parameters when using ODBC drivers in C# or .net.
Ruby on Rails Using ActiveRecord to Abstract “Greatest N Per Group” Queries My approach allowed me to specify the group based on a set of columns and to abstract the required join logic behind an ActiveRecord scope.