columns Match String on Multiple Columns TL;DR: Use concatenation, Luke! I had to search a name for an user in a table containing the first and last names in separate columns. After a while I got tired on looking up the first_name and last_name columns one at a time and I decided to
consolidate Qt: Embedding Multiple Widgets in a Menu Item - 2004 style TL;DR: This post is about an experience I had in 2004 and it's part of my consolidating technical posts I wrote in time. It may or may not be relevant to today's technologies. One night in October 2004 (WOW! it's almost 10 years!
bat BAT Files: Execute Multiple Commands in a Loop One of the tasks the other day was to load a large DB organised by year. The most efficient way was to loop through a sequence of years and execute the loader for each one. The first iteration I ended with was: FOR /L %%Y IN (1996,1,2008) DO