How To Dual-Sort Query Results In WordPress Using get_posts

Author: , September 12th, 2019

Needed to build a feature for a Bookstore tool to have an optional sequence number for the Custom Post Type “books” that would allow items with a seq number to float to the top of the list and be sorted by seq #. The rest of the books would show underneath, sorted alphabetically.

How To Compare Two Lists Using grep

Author: , August 1st, 2016

Output all lines in list.txt which don’t match any line in excluded.txt: grep -Fxv -f excluded.txt list.txt

How To Compare Two Branches in GIT

Author: , December 10th, 2012

git diff branch1..branch2