6b456c1b7a
Currently paying the price of months of non-diligent git usage. Here's what has changed. - Theming support in Gvcci and wpgtk - Dropping support for i3 - Supporting EXWM - Many Elisp modules - Collapsed redundant directories in ./configs
26 lines
908 B
EmacsLisp
26 lines
908 B
EmacsLisp
;;; 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
|