diff options
Diffstat (limited to 'configs/shared/.emacs.d/wpc/sre.el')
-rw-r--r-- | configs/shared/.emacs.d/wpc/sre.el | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/wpc/sre.el b/configs/shared/.emacs.d/wpc/sre.el new file mode 100644 index 000000000000..1c8f6ddd9a44 --- /dev/null +++ b/configs/shared/.emacs.d/wpc/sre.el @@ -0,0 +1,26 @@ +;;; sre.el --- Site Reliability Engineering stuffs -*- lexical-binding: t -*- +;; Author: William Carroll <wpcarro@gmail.com> + +;;; Commentary: +;; Storing some data that might be helpful in my ladder switch attempt. + +;;; Code: + +(defvar sre/introduction-email + "Hello! + +My name is William Carroll. I'm currently attempting a ladder switch. I have my +manager's approval to look for a new role because we believe I have been hired +for the wrong position. + +I'm eager to move ahead if there are any SRE openings in LON that fit my +profile. I'm happy to share more information with you about my background and +what I'm looking for. I've been attending the SRE Ops Review meetings in 6PS +weekly for awhile now, so we should be in the same office every Tuesday if +meeting in person is easier for you. + +Let me know!" + "Boilerplate email for reaching out to SRE hiring managers.") + +(provide 'sre) +;;; sre.el ends here |