Good abbrev ideas

The more I started using abbrev the more uses I found for it. Here I showcase some of my nicest abbrev candidates as well as corresponding examples from my personal abbrev file.

(define-abbrev text-mode-abbrev-table "i" "I")
(define-abbrev text-mode-abbrev-table "luis" "Luis")
(define-abbrev text-mode-abbrev-table "Emacs" "Emacs")
(define-abbrev text-mode-abbrev-table "english" "English")
;; Not the be confused with the actual word "shift" I add a "k" to the end of
;; the abbrev to represent "shift key".  And this way I avoid having to
;; capitalize the entire word myself.
(define-abbrev text-mode-abbrev-table "shiftk" "SHIFT")
(define-abbrev text-mode-abbrev-table "youre" "you are")
(define-abbrev text-mode-abbrev-table "dnt" "do not")
(define-abbrev text-mode-abbrev-table "wdnt" "would not")
(define-abbrev text-mode-abbrev-table "wouldnt" "would not")
(define-abbrev text-mode-abbrev-table "cdnt" "could not")
(define-abbrev text-mode-abbrev-table "couldnt" "could not")
(define-abbrev text-mode-abbrev-table "htat" "that")
(define-abbrev text-mode-abbrev-table "hte" "the")
(define-abbrev text-mode-abbrev-table "th" "the")
(define-abbrev text-mode-abbrev-table "ot" "to")
(define-abbrev text-mode-abbrev-table "altho" "although")
(define-abbrev text-mode-abbrev-table "hw" "however")
(define-abbrev text-mode-abbrev-table "moro" "moreover")
(define-abbrev text-mode-abbrev-table "iow" "in other words")
(define-abbrev text-mode-abbrev-table "otoh" "on the one hand")
(define-abbrev text-mode-abbrev-table "ivs" "I have seen")
(define-abbrev text-mode-abbrev-table "idlk" "I do not like")
(define-abbrev text-mode-abbrev-table "idk" "I do not know")
(define-abbrev text-mode-abbrev-table "damw" "do not ask me why")
(define-abbrev text-mode-abbrev-table "iff" "if and only if")
(define-abbrev text-mode-abbrev-table "vc" "version control")
(define-abbrev text-mode-abbrev-table "rx" "regular expression")

Of course this list is not exhaustive and It cannot be because there are so many ways to use abbrevs, but it is a great point to get started. Also, check out my abbrev file for more inspiration.

Footnotes:

1

I did not even know this but apparently "ht" is a contraction of "height".