Skip to content

Commit

Permalink
feat(easteregg/data.go): add new positive and rude phrases to Checkin…
Browse files Browse the repository at this point in the history
…Phrases and CheckoutPhrases to provide more variety and enhance user experience

The commit adds new phrases to the `CheckinPhrases` and `CheckoutPhrases` arrays in the `data.go` file of the `easteregg` package. These phrases are used to generate random messages when checking in and checking out. The new phrases aim to provide more variety and enhance the user experience by adding positive and rude phrases.
  • Loading branch information
Mark committed Oct 31, 2023
1 parent e5189aa commit b974a6f
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion internal/easteregg/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ var CheckinPhrases = []string{
"Ready to make the most of this day and be our best selves?",
"Another day, another chance to be awesome at work!",
"Let's make today a productive and successful one!",

"Embrace the day with enthusiasm and let's make some progress!",
"New day, new opportunities! Let's dive into work!",
"Let's unlock our potential and make today extraordinary!",
"A new day to make a difference! Let's get started!",
"Let's turn our plans into action and make today count!",
"Time to embrace challenges and create some remarkable work!",
"Fuel up with positivity and let's conquer today's tasks!",
"Let's bring our A-game and make today amazingly productive!",
"Today holds endless possibilities. Let's explore them!",
"Gather your energy and enthusiasm—it's time to shine at work!",
"Time to weave creativity and effort into the fabric of our day!",
}

// CheckoutPhrases is a list of phrases to use when checking out.
Expand All @@ -36,6 +48,18 @@ var CheckoutPhrases = []string{
"See you tomorrow, have a good night!",
"It's been a productive day, time to kick back and relax a bit!",
"Time to say goodbye to work for now, have a great evening!",

"Great job today! Now go enjoy some well-deserved rest!",
"You've earned a relaxing evening after a day of hard work!",
"Clocking out for now, but ready to conquer more tomorrow!",
"Mission accomplished for today! Enjoy your free time!",
"Time to switch off work mode and embrace relaxation!",
"You've conquered today's challenges—now enjoy the evening!",
"Celebrate the day's achievements and get ready for a new tomorrow!",
"Job well done! Now go rejuvenate and unwind!",
"Leaving the battlefield of work—time for some peace and quiet!",
"Close the work chapter for today and open the book of relaxation!",
"Unplug from work and dive into an evening of joy and rest!",
}

// CheckinPhrasesRude is a list of rude phrases to use when checking in.
Expand All @@ -50,6 +74,18 @@ var CheckinPhrasesRude = []string{
"Good morning, sunshine! Time to start the day with a smile (or at least try to not look like we're about to puke)!",
"Time to shine and make the most of this day, or at least try to stay awake!",
"Another day, another opportunity to learn and grow (or at least try to not throw up at work)!",

"Brace yourself, work is coming, whether we like it or not!",
"Survived the morning? Now survive the rest of the day!",
"Let's stumble through another day of chaotic work!",
"Back to the grind, where chaos and deadlines reign!",
"Another day to fake enthusiasm and suffer through tasks!",
"Time to slave away in the relentless cycle of work!",
"Brace yourself for a storm of stress and impossible demands!",
"Drown in emails, meetings, and unending tasks—welcome back!",
"Prepare to wrestle with the beast of workload and frustration!",
"Time to get lost in the labyrinth of never-ending chores!",
"Embrace the torture of monotony and unachievable expectations!",
}

// CheckoutPhrasesRude is a list of rude phrases to use when checking out.
Expand All @@ -64,13 +100,25 @@ var CheckoutPhrasesRude = []string{
"See you tomorrow, after I sleep off this alcohol-induced coma!",
"It's been a productive day, time to get hammered!",
"Time to say goodbye to work for now, and start partying!",

"Escaped work for today! Ready to dive into some mischief?",
"Freedom at last! Time to unleash the inner party animal!",
"Work's over! Let's go cause some delightful chaos!",
"Survived the ordeal! Time to drown the sorrows!",
"Freed from the chains of work—time to wreak havoc!",
"Work's tyranny is over! Time for some rebellious fun!",
"Escape the prison of tasks and dive into lawless leisure!",
"Unleash the wild side and let the night's anarchy begin!",
"Celebrate surviving another brutal day of toil and trouble!",
"Burst out of work's confinement and plunge into chaotic delight!",
"Endure no more! The realms of relaxation and chaos await!",
}

func pickRandomItemFromList(list []string) string {
return list[rand.Intn(len(list))]
}

//Seed the random number generator with current time.
// Seed the random number generator with current time.
func Seed() {
rand.Seed(time.Now().UnixNano())
}
Expand Down

0 comments on commit b974a6f

Please sign in to comment.