medium
請病假訊息
用廣東話傳訊息俾老闆請病假。
你今日朝早起身頭痛發燒,唔能夠返公司做嘢。請幫我用廣東話擬一段 WhatsApp 或者 SMS 訊息俾你嘅老闆,話俾佢知你想請一日病假,同埋會點樣安排手頭嘅工作。
medium
解釋「唔該」同「多謝」
講解兩個謝謝嘅用法分別。
好多初學廣東話嘅人都分唔清楚「唔該」同「多謝」嘅分別。請用廣東話詳細解釋一下呢兩個詞係咩時候用,最好每個詞舉兩個日常例子説明,要講得淺白易懂。
Medium
Sci-Fi Story Starter
Write the opening of a science fiction story set on a dying Earth.
Write the first 500 words of a science fiction story set on a dying Earth where humanity lives in underground bunkers. Focus on the sensory details of life below the surface and the protagonist's longing for the sky.
Easy
Polite Refusal Email
Draft a professional email declining a discount request.
Draft a professional and polite email to a long-term client who is asking for a significant discount on their next project. Explain that you cannot lower the price due to the quality of work involved, but offer a small value-add, such as an extra revision round, to maintain goodwill.
Medium
Python Code Explainer
Explain a Python sorting algorithm for beginners.
Explain how the following Quick Sort Python function works step-by-step, suitable for a complete beginner. Break down the logic of the list comprehensions and the recursion.
def quick_sort(arr):
if len(arr) <= 1: return arr
pivot = arr[len(arr) // 2]
left = [x for x in arr if x < pivot]
middle = [x for x in arr if x == pivot]
right = [x for x in arr if x > pivot]
return quick_sort(left) + middle + quick_sort(right)
Easy
Personal SWOT Analysis
Create a framework for career transition analysis.
Create a detailed Personal SWOT Analysis (Strengths, Weaknesses, Opportunities, Threats) for a Software Engineer who wants to transition into a Product Manager role. Provide specific examples for each quadrant relevant to this career path.
Easy
Instagram Travel Captions
Generate engaging social media captions for a travel photo.
Write 3 distinct and engaging Instagram captions for a photo of a golden sunset in Santorini, Greece. 1 should be short and aesthetic, 1 should be inspirational, and 1 should be funny. Include relevant hashtags for each.
Hard
Quantum Physics ELI5
Explain quantum superposition like I am five.
Explain the concept of Quantum Superposition as if I were a 5-year-old child. Use simple analogies involving toys, coins, or playground games to make the concept understandable and fun.