The phrase “new daddy” appears for the first time on page 217 of Deeper, uttered in a quiet moment between Hazel and her mentor, Dr. Elliot Ramos, a widowed professor of cultural anthropology. Ramos, who has long been a paternal presence in Hazel’s academic life, confides that he is stepping into a more intimate role—one that includes emotional caretaking, advocacy, and, eventually, co‑parenting his teenage son, Jonah.
The phrase works on three levels:
In consensual adult roleplay, “daddy” is a negotiated term of endearment and power exchange. It often includes: deeper hazel moore new daddy 19122024
A “new daddy” therefore signals change — perhaps a breakup, a discovery of new desires, or the end of a previous dynamic. The word “new” introduces anticipation, nervousness, and the thrill of an unfamiliar connection.
The moment that sparked the conversation about Hazel’s new title occurred during an intimate dinner with close friends in early 2024. Luca had just been offered a lead position at a research institute in Geneva, and the couple began discussing the logistics of raising a child in a bi‑continental life. The conversation turned to terminology. The phrase “new daddy” appears for the first
“Why do we automatically default to ‘mom’ or ‘dad’?” asked Maya, a queer activist friend who was present. “What if the language we use could better reflect the fluidity of modern families?”
Hazel, always ready to interrogate norms, responded: “If I’m the primary caregiver, the one who’s on call for night feeds, diaper changes, and bedtime stories, why not claim the title that traditionally carries that weight? ‘Dad’ is just a word, and words evolve.” A “new daddy” therefore signals change — perhaps
The group fell silent, then erupted into laughter, supportive nods, and a flurry of texts later that night—some joking, others earnest. The idea stuck, not as a joke, but as a purposeful re‑branding of a parental role.
Now that you've completed the installation, type tmux to start the first session:
tmux
Split your pane horizontally by typing:
Ctrl+b then %
Note: Ctrl+b is the default prefix key. You can customize this in ~/.tmux.conf file.
Swhich pane by typing:
Ctrl+b then
Ctrl+b then
Detach/Exit session:
Ctrl+b then d
Attach to last session:
tmux a
To change prefix key to Ctrl+a, add the below lines to ~/.tmux.conf:
# change prefix from 'Ctrl-b' to 'Ctrl-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefixTo change prefix key to Ctrl+Space:
# change prefix from 'Ctrl-b' to 'Ctrl-Space'
unbind C-b
set-option -g prefix C-Space
bind-key C-Space send-prefixTmux config changes require reload to be applied, run tmux source-file ~/.tmux.conf from the terminal, or run source-file ~/.tmux.conf from Tmux’s command-line mode to reload.
To configure shortcut for quick reload, add the line:
bind r source-file ~/.tmux.conf\; display "Reloaded!"Now feel free to experiment with the cheat sheet in home page. If you find any missing shortcut, please let me know :D