Daily Archives: May 28, 2025

Changing the Paradigm of Work

I saw an article on AI usage that is based on an upcoming book that suggests redesigning the world around new tech, not adding it to existing things. The first example is how electricity was introduced to existing factories, but … Continue reading

Posted in Editorial | Tagged | Comments Off on Changing the Paradigm of Work

Using AI to Test a SQL Query

Someone sent me this code. WITH p AS ( SELECT ID, ROW_NUMBER() OVER (ORDER BY ID ASC) AS RN FROM wp_posts WHERE post_parent = 94341; ) UPDATE p SET menu_order = RN That’s not great code. In fact, it won’t … Continue reading

Posted in Blog | Tagged , , , | 1 Comment