Skip to content

2022

定位為科技諮詢

定位涉及應用系統性、重複性的過程,以識別我的服務的獨特屬性,將其與競爭對手區別開來,並將此定位表述為一個有效的銷售話語。在這篇文章中,我目標是根據我的服務的獨特功能和能力創建一個差異化的價值主張。

當一些客戶將我視為技術顧問,而其他人將我視為軟體開發人員時,就會出現定位挑戰。在與完全由軟體供應商組成的兩個類別競爭中,我發現自己沒有清晰的定位策略。即使在科技顧問市場飽和的情況下,即使是最好的人也難以獲得項目。客戶經常想知道為什麼他們應該選擇我的諮詢服務而不是其他選擇。有效的產品定位可以幫助我在擁擠的市場中脫穎而出,並捕捉到我的服務的獨特價值。

我的理想客戶是那些已經直觀地理解我的服務價值的人。特別是具有強大技術背景的成長階段金融科技初創公司的CEO和創始人。這些人優先考慮擴張團隊和產品擴展,並尋求解決他們的技術挑戰的解決方案。

從我目標客戶的角度來看,在選擇我的服務之前,他們可能會考慮幾種替代方案:

替代方案1:外包給諮詢公司

  • Accenture
  • Deloitte
  • Capgemini

替代方案2:在線搜索技術答案

  • Stack Overflow
  • Quora
  • Reddit

替代方案3:聘請內部角色

  • 軟體開發人員
  • 業務分析師
  • 架構師

替代方案4:透過影片自學

  • YouTube教學
  • Udemy 課程
  • 在線編碼培訓班

我的服務提供獨特的屬性,使其至少可以與其中一個替代方案區別開來:

  • 部落格內容
  • 技術專長
  • 知識共享
  • 產品管理技能
  • 個人故事
  • 視頻內容
  • 最佳實踐
  • 商業智識

為了識別我的服務最引人注目的方面,我反覆問 "那又怎樣?" 的問題,直到我得到一個明確差異化並直接對客戶有益的價值主張。通過這個練習,我找到了以下差異化的價值:

差異化價值1:CEO 是熱衷的讀者,經常依靠推薦的部落格。我的部落格提供:

  • 1.1 部落格內容:匯總成 Amazon Kindle 書本,方便閱讀。
  • 1.2 產品管理技能:在產品開發中具有豐富經驗。
  • 1.3 技術專長:具有實際的軟體開發能力。
  • 1.4 商業智識:有利害關係人管理、領導和溝通能力。

差異化價值2:我的部落格充當我的顧問業的有效潛在客戶引導工具,特別提供:

  • 2.1 最佳實踐:在銀行業的專業知識。
  • 2.2 知識分享:對在金融市場部署新技術產品的見解。

差異化價值3: 客戶可以在聘請我的服務之前衡量我的商業和技術方法,這是通過以下方式實現的:

  • 3.1 個人故事: 揭示我在銀行業技術顧問的經驗。
  • 3.2 視頻內容:通過幽默講故事。

考慮到這些差異化價值,我的部落格與包括以下內容的框架相符:

  • A. 競爭替代方案:自己動手做。
  • B. 獨特屬性:簡潔、有價值的部落格文章。
  • C. 差異化價值:專門知識和思想領導。
  • D. 最佳適合的客戶:金融科技創業公司的A輪和B輪CEO。
  • E. 市場類別:為金融公司提供技術諮詢。

至於下一步,我計劃:

2022年4月

  • 更新我的網站上的登陸頁面信息。
  • 增加更多的案例研究。
  • 與前五名客戶進行訪談以微調訊息。

2022年5月

  • 創建專注於技術諮詢的銷售話語。
  • 回應提案請求(RFPs)。
  • 在我的部落格上增加更多的科技和商業內容以提高品牌知名度。

總的來說,我正在重新定位為金融公司的專門技術顧問。借助經過驗證的敏捷方法,我目標是幫助這些公司設計和開發提高業務績效的軟體解決方案。我的服務範疇從為初創公司開發軟體,到為較大的科技公司提供咨詢,以及定制產品管理。欲了解更多信息,請訪問 https://victorleungtw.com/

歡迎隨時聯繫,討論我如何在商業和科技方面幫助您的團隊。

Connecting Apache Kafka to Azure Event Hubs

Recently, I worked on an integration with Azure Event Hubs. A colleague of mine faced challenges while trying to export messages from an existing Kafka topic and import them into Event Hubs. To assist, I've documented the steps below, which you may find useful.

Step 1: Download and Extract Apache Kafka

Apache Kafka is an open-source, distributed event streaming platform. It facilitates the construction of distributed systems and ensures high throughput. You can download Apache Kafka from the following link: Apache Kafka Download

tar -xzf kafka_2.13-3.1.0.tgz
cd kafka_2.13-3.1.0

Step 2: Start the Kafka Environment

Ensure that Java 8 or higher is already installed in your local environment. If not, download and install it from Oracle's website.

To start all services, execute the following commands:

Start the ZooKeeper service:

bin/zookeeper-server-start.sh config/zookeeper.properties

Start the Kafka broker:

bin/kafka-server-start.sh config/server.properties

Step 3: Create and Set Up Configuration Files

Create a new file named connector.properties with the values below:

... (The content is mostly fine and technical, no changes)

Replace the placeholder values with those from your Azure endpoint. If you haven't already, create a new namespace and deploy Event Hubs resources from the Azure portal. Note that you might need to select the Standard pricing tier or higher to successfully create Kafka topics in the next step.

The required password can be found in the Shared access policies settings of the Event Hub namespace, under the SAS Policy labeled RootManageSharedAccessKey.

Step 4: Create Three Kafka Topics

To create the topics manually, use the kafka-topics commands:

Create the configs topic:

... (Commands are mostly fine and technical, no changes)

Create the offsets topic:

... (Commands are mostly fine and technical, no changes)

Create the status topic:

... (Commands are mostly fine and technical, no changes)

Step 5: Run Kafka Connect

Kafka Connect is a tool for reliably and scalably streaming data between Apache Kafka and Azure Event Hubs. To continuously import and export your data, start the worker locally in distributed mode.

bin/connect-distributed.sh path/to/connect-distributed.properties

With everything set up, you can proceed to test import and export functions.

Step 6: Create Input and Output Files

Create a directory and two files: one for seed data to be read by the FileStreamSource connector and another to be written to by the FileStreamSink connector.

mkdir ~/connect-demo
seq 1000 > ~/connect-demo/input.txt
touch ~/connect-demo/output.txt

Step 7: Create FileStreamSource Connector

Next, let me guide you through launching the FileStreamSource connector:

... (Commands are mostly fine and technical, no changes)

Step 8: Create FileStreamSink Connector

Similarly, let's proceed to launch the FileStreamSink connector:

... (Commands are mostly fine and technical, no changes)

Finally, confirm that the data has been replicated between files and is identical.

cat ~/connect-demo/output.txt

You should see that the output.txt file contains numbers from 1 to 1000, just like the input.txt file. That's it! If you update input.txt, output.txt will sync accordingly.

Please note that Azure Event Hubs' support for the Kafka Connect API is still in public preview. The FileStreamSource and FileStreamSink connectors deployed are not intended for production use and should only be used for demonstration purposes.

Connecting Apache Kafka to Azure Event Hubs

Welcome to "Continuous Improvement," the podcast where we explore strategies, tips, and tricks to enhance your productivity and solve technical challenges. I'm your host, Victor, and in today's episode, we'll be discussing how to integrate Azure Event Hubs with Apache Kafka.

But before we dive in, I want to give a shoutout to our sponsor, Acme Software Solutions. Acme is a leading provider of enterprise integration tools and services, helping businesses streamline their workflows and maximize efficiency. Check them out at acmesoftware.com for all your integration needs.

Now, let's get started. Recently, I had the chance to work on an integration project involving Azure Event Hubs and Kafka. A colleague of mine faced some hurdles while trying to export messages from an existing Kafka topic and import them into Event Hubs. To help others who might encounter similar issues, I thought it would be valuable to share the steps I took to overcome these challenges.

So, let's jump into the step-by-step process.

Step 1: Download and Extract Apache Kafka. Apache Kafka is an open-source, distributed event streaming platform that enables the construction of distributed systems with high throughput. You can download the latest version of Apache Kafka from their website.

Step 2: Start the Kafka Environment. Ensure that you have Java 8 or higher installed in your local environment. To start all the Kafka services, execute the provided shell commands.

Step 3: Create and Set Up Configuration Files. Create a new configuration file with the necessary properties and replace the placeholder values with the details from your Azure endpoint. Don't forget to retrieve the required password from the Event Hub namespace settings.

Step 4: Create Three Kafka Topics. Use the provided "kafka-topics" commands to manually create the required topics.

Step 5: Run Kafka Connect. Kafka Connect is a powerful tool to stream data between Apache Kafka and Azure Event Hubs. Start the Kafka Connect worker in distributed mode.

Step 6: Create Input and Output Files. Set up the input and output files that will be used for testing purposes. These files will be read by the FileStreamSource and written to by the FileStreamSink connector.

Step 7: Create FileStreamSource Connector. Launch the FileStreamSource connector using the provided commands to start importing data from Kafka to Event Hubs.

Step 8: Create FileStreamSink Connector. Follow the instructions to set up the FileStreamSink connector, which will export data from Event Hubs back to Kafka.

Finally, confirm that the data has been replicated between the input and output files. You should see that the output file contains the same data as the input file, confirming the successful integration between Kafka and Event Hubs.

Before we end today's episode, I must emphasize that the support for Azure Event Hubs' Kafka Connect API is still in public preview. The FileStreamSource and FileStreamSink connectors deployed here are intended for demonstration purposes and not for production use.

I hope you found this episode helpful in understanding how to integrate Azure Event Hubs with Apache Kafka. If you have any questions or would like to suggest topics for future episodes, feel free to reach out to me on Twitter @VictorCI. Don't forget to subscribe to "Continuous Improvement" on your favorite podcast platform so you never miss an episode.

That's all for today. Until next time, keep improving and stay productive!

Disclaimer: The information provided in this episode is based on personal experiences and should not be considered as professional advice. Always consult with experts and refer to official documentation for accurate guidance.

將Apache Kafka連接到Azure事件中樞

最近,我在與Azure事件中心的整合中進行了一些工作。我的一位同事在嘗試將消息從現有的Kafka主題中導出並導入到事件中心時遇到了困難。為了提供協助,我在下文中記錄了所謂的步驟,你可能會發現這很有用。

第一步:下載並提取Apache Kafka

Apache Kafka是一個開源的、分佈式的事件流平台。它促進了分佈式系統的構建並確保了高吞吐量。你可以從以下的鏈接下載Apache Kafka:Apache Kafka下載

tar -xzf kafka_2.13-3.1.0.tgz
cd kafka_2.13-3.1.0

第二步:啟動Kafka環境

確保Java 8或更高版本已經安裝在你的本地環境中。如果沒有,請從Oracle的網站下載並安裝。

執行以下命令以開始所有服務:

開始ZooKeeper服務:

bin/zookeeper-server-start.sh config/zookeeper.properties

開始Kafka經紀人:

bin/kafka-server-start.sh config/server.properties

第三步:創建並設置配置文件

創建一個名為connector.properties的新文件,並下列的值:

... (內容主要正確且技術含義實在, 無需改動)

用您的Azure端點的值替換佔位符值。如果您還沒有,請從Azure門戶網站創建一個新的命名空間並部署事件中樞資源。請注意,您可能需要選擇Standard或更高的定價層級,以成功在下一步中創建Kafka主題。

所需的密碼可以在事件中樞命名空間的Shared access policies設置中找到,位於稱為RootManageSharedAccessKey的SAS策略下。

第四步:創建三個Kafka主題

要手動創建主題,請使用kafka-topics命令:

創建configs主題:

... (命令主要正確且技術含義實在, 無需改動)

創建offsets主題:

... (命令主要正確且技術含義實在, 無需改動)

創建status主題:

... (命令主要正確且技術含義實在, 無需改動)

第五步:運行Kafka Connect

Kafka Connect是一種可靠且具有擴展性的数据流工具,用於Apache Kafka和Azure Event Hubs之間。要持續地導入和導出你的數據,請在本地以分佈式模式開始工作人員。

bin/connect-distributed.sh path/to/connect-distributed.properties

設置好所有的內容後,你可以繼續測試導入和導出功能。

第六步:創建輸入和輸出文件

創建一個目錄和兩個文件:一個用於FileStreamSource連接器讀取的種子數據,另一個用於FileStreamSink連接器寫入的文件。

mkdir ~/connect-demo
seq 1000 > ~/connect-demo/input.txt
touch ~/connect-demo/output.txt

第七步:創建FileStreamSource連接器

接下來,讓我引導你啟動FileStreamSource連接器:

... (命令主要正確且技術含義實在, 無需改動)

第八步:創建FileStreamSink連接器

同樣地,讓我們繼續啟動FileStreamSink連接器:

... (命令主要正確且技術含義實在, 無需改動)

最後,確認數據已經在文件之間復制並且是相同的。

cat ~/connect-demo/output.txt

你應該會看到output.txt文件包含從1到1000的數字,就像input.txt文件一樣。就是這樣!如果你更新input.txtoutput.txt將相應地同步。

請注意,Azure事件中樞對Kafka Connect API的支持仍處於公共預覽階段。已部署的FileStreamSource和FileStreamSink連接器不適合生產用途,只應用於演示目的。

Product Engagement Strategy

I recently took a class on the Psychology of Engagement, where I learned the methodologies and vocabulary needed to create highly engaging products. I am applying these concepts to a product of my choosing.

One product that has me "hooked" is an app I use daily to manage my savings and investments. The intended behavior of this product is to encourage users to deposit and save money. I find it rewarding to check my account balance every night and see my progress. The internal trigger driving my engagement with this product is my goal of achieving financial freedom.

I currently work at Thought Machine, a product company that has developed a core banking product aimed at transforming the banking industry. This product empowers banks to offer innovative financial services to their customers. We recently raised $200 million in our Series C funding round, backed by industry-leading venture capitalists and major global banks like Nyca Partners, Molten Ventures, JPMorgan, and Standard Chartered. This has brought our total funding to $350 million, valuing the company at over £1 billion.

According to customer feedback, banks are enamored with our Vault product. It's a ledger system that operates on cloud-native platforms like Amazon Web Services, Google Cloud Platform, and Microsoft Azure, without relying on legacy technology. Vault can be configured through Smart Contracts to run any type of retail banking product, such as checking accounts, savings accounts, loans, credit cards, and mortgages. However, bank customers often find it easy to spend money but difficult to save.

To identify behaviors with strong habit-forming potential, I've utilized "habit zones." Here are three behaviors my company could focus on:

  • Behavior 1: Spending money (e.g., paying monthly rent through a checking account)
  • Behavior 2: Saving money (e.g., accruing daily interest in a savings account)
  • Behavior 3: Borrowing money (e.g., using a credit card that offers reward points or taking out a personal loan)

Based on my personal experience, the behavior with the greatest habit-forming potential is saving money while monitoring daily interest accruals.

To better understand this behavior, I asked myself "why?" five times:

  1. Why? Because I want to check my bank account for daily interest accrual.
  2. Why? To monitor my progress and see how much interest has accumulated.
  3. Why? To gauge whether I am saving enough to meet my financial goals.
  4. Why? Because I fear not having enough money for significant life events like a wedding.
  5. Why? Due to uncertainties about the future, I feel more secure with a financial cushion for emergencies.

I then applied the 5 Panels framework to design an external trigger that cues customers to perform the intended behavior.

Persona:

  • Characteristics: Alex is a 34-year-old working professional in Singapore.
  • Values: Enjoys life, loves coffee, cars, and cooking.
  • Needs: To pay for a wedding, purchase a car, repay loans, buy a coffee machine.
  • Constraints: Faces high inflation, has no savings, and spends his entire monthly salary.

Internal Trigger: Alex wants to start saving money while controlling his expenses. He feels anxious about not being able to afford his upcoming wedding.

Context: Alex is discussing wedding plans and finances with Melanie at a coffee shop. During the conversation, he mentions a car he wishes to purchase.

External Trigger: Alex feels social pressure as his peers are getting married and starting families.

Association: Fear of not saving enough for the wedding = Checking bank account for daily interest accrual.

Action Phase: Steps and hurdles a customer faces:

  1. Receive salary: Financial commitment towards monthly rent and loan repayment.
  2. Allocate 10% for savings: Monetary discipline required, can't spend that money now.
  3. Log into the bank account: Physical effort needed to open the app and click.
  4. Transfer money to the savings account: Another click required.
  5. Wait for the next day: Time needed to see any significant interest accrual.
  6. Verify daily interest accrual: Cognitive load to check if the amount is correct.
  7. Resist temptation: Numerous reasons may tempt the user to withdraw the saved money.

From the customer's perspective, the most challenging hurdle is to allocate 10% of income for savings.

User Story: As a working professional, I find it difficult to save money because of my many expenses and loan repayments. To save, I need to cut back on unnecessary spending and determine a savings target.

Solution Description: Through daily interest accrual, our app can reward users for saving. It can project future savings and interest accruals, enabling customers to set aside money more effectively. The app can also tailor its services based on the user's risk profile and savings goals.

Engagement Strategy:

  • Trigger: Notification reminders to allocate money for savings, along with projections for future account balances.
  • Action: Schedule automatic transfers to a savings account and view daily interest accruals.
  • Variable Rewards: Offer a sense of achievement as users get closer to their financial goals. Provide tips on saving money and reducing daily expenses, along with cash back offers and discount notifications.
  • Investment: Incentivize users to refer friends, which earns them a higher interest rate on their savings account.

Strategic Priorities: The next step for Thought Machine is to enhance user engagement by offering more rewarding incentives for saving money.

KPIs:

  • Number of reminder notifications sent
  • Number of new savings accounts opened through referrals
  • Total amount of interest paid to customer savings accounts

Conclusion: The Hooked Model is a powerful framework that synthesizes decades of research into a simple four-phase process. By understanding and applying these principles, we can encourage more people to save money effectively and ethically through our product design.

Product Engagement Strategy

Welcome to "Continuous Improvement," the podcast where we explore strategies and techniques to enhance our daily lives and achieve our goals. I'm your host, Victor, and today we'll dive into the captivating world of product design and the psychology of engagement.

Hello, listeners! I recently attended a class on the Psychology of Engagement, and I am thrilled to share what I've learned with all of you. In this episode, I'll be applying these concepts to a product that has caught my attention—an app I use daily to manage my savings and investments. But before we dive in, let's talk about the company I work for, Thought Machine.

Thought Machine is a cutting-edge product company revolutionizing the banking industry. We recently raised a staggering $200 million in our Series C funding round, backed by top venture capitalists and renowned global banks, including Nyca Partners, Molten Ventures, JPMorgan, and Standard Chartered. Our core banking product, called Vault, is a game-changer for banks across the globe.

Now, back to the app that has captivated me—the one I use to manage my savings. Its intended behavior is to encourage users to deposit and save money. I find it incredibly rewarding to check my account balance every night and see my progress toward financial freedom. The internal trigger that drives my engagement with this app is my goal of achieving financial security and independence.

To optimize user behavior, I've employed the concept of "habit zones" and identified three key behaviors my company could focus on: spending money, saving money, and borrowing money. After careful consideration, I realized that the behavior with the greatest habit-forming potential is saving money while monitoring daily interest accruals.

To better understand why this behavior is so impactful, I asked myself "why" five times. The answer lies in our need for financial security and the fear of not having enough for significant life events. By checking our daily interest accruals, we can gauge whether we are saving enough to meet our financial goals and protect ourselves from future uncertainties.

To design an external trigger that cues customers to perform this behavior, I applied the 5 Panels framework. Let me introduce you to our persona—an individual named Alex. Alex is a 34-year-old working professional in Singapore, and he wants to start saving money while controlling his expenses. He feels anxious about not being able to afford his upcoming wedding.

Now, imagine Alex discussing wedding plans and finances with Melanie at a coffee shop. During their conversation, he mentions his desire to purchase a car as well. Alex feels social pressure as his peers are getting married and starting families. These external triggers compel Alex to monitor his savings account for daily interest accruals, associating it with his fear of not saving enough for his wedding.

However, as we know, translating behavior into action isn't always straightforward. There are steps and hurdles customers face along the way. For Alex, these include receiving his salary, allocating a portion to savings, logging into the app, transferring money to a savings account, waiting for the next day to see significant interest accrual, verifying the daily interest amount, and resisting the temptation to withdraw his savings.

Albeit challenging, the most significant hurdle for Alex is allocating a portion of his income for savings. To address this, we need to offer a solution that provides the necessary monetary discipline while catering to his individual needs and desires.

Our user story for Alex goes like this: Alex, a working professional burdened by various expenses and loan repayments, finds it difficult to save money. To overcome this, he needs to cut back on unnecessary spending and determine a reasonable savings target. Our solution is to develop an app that rewards users for saving through daily interest accruals. This app will project future savings and interest amounts, helping users set aside money more effectively. Additionally, it will provide tailored services based on the user's risk profile and savings goals.

And now, let's talk about our engagement strategy. To drive and sustain user engagement, we need to employ various techniques. We'll send notification reminders, encouraging users to allocate money for savings while providing projections of their future account balances. We'll also allow for automatic transfers to a savings account, so users can effortlessly save. Variable rewards, such as a sense of achievement, saving tips, and cashback offers, will further motivate users to stay engaged. Additionally, we'll incentivize users to refer their friends, earning them a higher interest rate on their savings account.

Our strategic priorities at Thought Machine involve enhancing user engagement by offering more rewarding incentives for saving money, ensuring a smooth user experience, and continuously improving our app based on customer feedback.

To measure the success of our efforts, we've identified key performance indicators (KPIs). We'll track the number of reminder notifications sent, the number of new savings accounts opened through referrals, and the total amount of interest paid to customer savings accounts.

In conclusion, the Hooked Model is an exceptional framework that synthesizes decades of research into a simple four-phase process. By understanding and applying these principles, we can encourage more people to save money effectively and ethically through our product design.

Thank you for joining me today on "Continuous Improvement." I hope you found this exploration of the psychology of engagement and product design insightful. Remember, continuous improvement is the key to achieving our goals. Stay tuned for more episodes where we'll delve into different topics to help you optimize your life.

This has been "Continuous Improvement." I'm Victor, your host, and until next time, keep striving for continuous improvement.

Product Engagement Strategy

I recently took a class on the Psychology of Engagement, where I learned the methodologies and vocabulary needed to create highly engaging products. I am applying these concepts to a product of my choosing.

One product that has me "hooked" is an app I use daily to manage my savings and investments. The intended behavior of this product is to encourage users to deposit and save money. I find it rewarding to check my account balance every night and see my progress. The internal trigger driving my engagement with this product is my goal of achieving financial freedom.

I currently work at Thought Machine, a product company that has developed a core banking product aimed at transforming the banking industry. This product empowers banks to offer innovative financial services to their customers. We recently raised $200 million in our Series C funding round, backed by industry-leading venture capitalists and major global banks like Nyca Partners, Molten Ventures, JPMorgan, and Standard Chartered. This has brought our total funding to $350 million, valuing the company at over £1 billion.

According to customer feedback, banks are enamored with our Vault product. It's a ledger system that operates on cloud-native platforms like Amazon Web Services, Google Cloud Platform, and Microsoft Azure, without relying on legacy technology. Vault can be configured through Smart Contracts to run any type of retail banking product, such as checking accounts, savings accounts, loans, credit cards, and mortgages. However, bank customers often find it easy to spend money but difficult to save.

To identify behaviors with strong habit-forming potential, I've utilized "habit zones." Here are three behaviors my company could focus on:

  • Behavior 1: Spending money (e.g., paying monthly rent through a checking account)
  • Behavior 2: Saving money (e.g., accruing daily interest in a savings account)
  • Behavior 3: Borrowing money (e.g., using a credit card that offers reward points or taking out a personal loan)

Based on my personal experience, the behavior with the greatest habit-forming potential is saving money while monitoring daily interest accruals.

To better understand this behavior, I asked myself "why?" five times:

  1. Why? Because I want to check my bank account for daily interest accrual.
  2. Why? To monitor my progress and see how much interest has accumulated.
  3. Why? To gauge whether I am saving enough to meet my financial goals.
  4. Why? Because I fear not having enough money for significant life events like a wedding.
  5. Why? Due to uncertainties about the future, I feel more secure with a financial cushion for emergencies.

I then applied the 5 Panels framework to design an external trigger that cues customers to perform the intended behavior.

Persona:

  • Characteristics: Alex is a 34-year-old working professional in Singapore.
  • Values: Enjoys life, loves coffee, cars, and cooking.
  • Needs: To pay for a wedding, purchase a car, repay loans, buy a coffee machine.
  • Constraints: Faces high inflation, has no savings, and spends his entire monthly salary.

Internal Trigger: Alex wants to start saving money while controlling his expenses. He feels anxious about not being able to afford his upcoming wedding.

Context: Alex is discussing wedding plans and finances with Melanie at a coffee shop. During the conversation, he mentions a car he wishes to purchase.

External Trigger: Alex feels social pressure as his peers are getting married and starting families.

Association: Fear of not saving enough for the wedding = Checking bank account for daily interest accrual.

Action Phase: Steps and hurdles a customer faces:

  1. Receive salary: Financial commitment towards monthly rent and loan repayment.
  2. Allocate 10% for savings: Monetary discipline required, can't spend that money now.
  3. Log into the bank account: Physical effort needed to open the app and click.
  4. Transfer money to the savings account: Another click required.
  5. Wait for the next day: Time needed to see any significant interest accrual.
  6. Verify daily interest accrual: Cognitive load to check if the amount is correct.
  7. Resist temptation: Numerous reasons may tempt the user to withdraw the saved money.

From the customer's perspective, the most challenging hurdle is to allocate 10% of income for savings.

User Story: As a working professional, I find it difficult to save money because of my many expenses and loan repayments. To save, I need to cut back on unnecessary spending and determine a savings target.

Solution Description: Through daily interest accrual, our app can reward users for saving. It can project future savings and interest accruals, enabling customers to set aside money more effectively. The app can also tailor its services based on the user's risk profile and savings goals.

Engagement Strategy:

  • Trigger: Notification reminders to allocate money for savings, along with projections for future account balances.
  • Action: Schedule automatic transfers to a savings account and view daily interest accruals.
  • Variable Rewards: Offer a sense of achievement as users get closer to their financial goals. Provide tips on saving money and reducing daily expenses, along with cash back offers and discount notifications.
  • Investment: Incentivize users to refer friends, which earns them a higher interest rate on their savings account.

Strategic Priorities: The next step for Thought Machine is to enhance user engagement by offering more rewarding incentives for saving money.

KPIs:

  • Number of reminder notifications sent
  • Number of new savings accounts opened through referrals
  • Total amount of interest paid to customer savings accounts

Conclusion: The Hooked Model is a powerful framework that synthesizes decades of research into a simple four-phase process. By understanding and applying these principles, we can encourage more people to save money effectively and ethically through our product design.

Finding a Fulfilling Job

Last week, I received a bonus from my company. Things are going well, and the bonus served as a good financial incentive, rewarding me for my hard work over the past year. Receiving a 13th-month salary is pretty standard practice in Singapore, and the variable pay I received aligns with industry norms. My salary is about average within the expat community, providing me a decent standard of living as a single person. Despite this financial stability, I've been contemplating my career development and searching for a job that I truly love. I'm also focused on making a more significant impact rather than merely working harder to justify my salary.

Meanwhile, I face some challenges in my current role. Just yesterday, I met a new client at an event. Although he was friendly and pleasant, I found myself at a loss for words when trying to establish a strong business connection. As my company grows, the demand for my soft skills, including presentation, networking, and communication abilities, is increasing. I need to conquer my fear of engaging with strangers and develop my leadership skills to succeed in the global job market.

If my sole aim were to maximize income and status, I would probably become a full-time salesperson. They possess the soft skills I admire: the ability to influence clients, negotiate for profit, and generate new business opportunities. The potential earnings in commission are also very appealing. However, I've avoided this career path because I'm an introvert, and the thought of approaching strangers and maintaining a high level of energy in social settings daunts me.

As a child, I loved reading history books. I was particularly fascinated by stories of ordinary people rising to become advisors to kings. They would use their exceptional communication skills to earn trust, unite nations, and thwart common enemies, saving their communities in the process. This appealed to me deeply, though my own experiences were limited to strategic computer games and essay writing. What drove my interest was the strategic element—the joy of using knowledge and tactics to achieve goals.

As an adult, I still value strategy. I am continually learning, reading books, and taking online courses to absorb new information. My desire is to be a trusted advisor, helping others succeed while achieving something bigger than myself. I am driven by empathy and the joy of making others happy.

I often find myself envying figures like Elon Musk, Leonardo DiCaprio, and other highly successful people. Yet, I recognize that each of these paths comes with its own set of challenges and sacrifices. Instead, I focus on what aspects of their lives I genuinely admire, such as their impact on the world or their financial competence.

The joy in my work comes from making money, learning new technologies, leading teams, and helping people. I believe that solving complex, real-world problems through collaboration could lead to innovative and scalable solutions in the private sector.

If I knew I couldn't fail, my next step would be to start my own business and build a scalable product to dominate global markets. However, my biggest fear is that this new venture might not be profitable, and I could end up taking excessive risks, leading to financial ruin.

My family tends to value traditional job roles like engineering, accounting, and culinary arts. They're less familiar with digital-era positions like Scrum Master or Data Scientist. Their primary concern is for me to secure a stable, financially rewarding career. Political roles, especially those in opposition to the Chinese Communist Party, would be a cause for concern.

However, I aspire to exceed my family's achievements by becoming financially independent and gaining international exposure. I wish to help them broaden their perspectives, both through travel and technological literacy.

My social circle has its own challenges. While my university classmates and former business partners support my ambitions, my girlfriend has different interests and a different risk appetite. This creates a tension between pursuing my passions and dedicating time to our relationship.

In the end, the voice I need to listen to is that of "Intrinsic Love." If someone dislikes me, it's essential to remember that I can't please everyone.

Many people dream of working at companies like Google, drawn by the culture, cutting-edge technology, and high salaries. But the same benefits can often be found in tech startups or even in running your own business.

Despite my fears—of starting a business, speaking to strangers, or public speaking—I don't need to be the wealthiest person in the world to be content. Side hustles, new opportunities, and meaningful connections can provide not just tolerable work but a fulfilling career full of purpose, camaraderie, and creativity.

To achieve this, we'll need to focus intensely on the complexities that underpin finding truly fulfilling work. If you share this goal, I'd love to hear from you. Together, we can explore not just work that pays the bills but work that we deeply, profoundly appreciate.

Finding a Fulfilling Job

Welcome back, everyone, to another episode of Continuous Improvement! I'm your host, Victor, and today we're diving into the topic of finding fulfillment in our careers. We all want to feel a sense of purpose and accomplishment in our work, and sometimes that means exploring new paths, overcoming challenges, and finding the courage to pursue our passions.

In our blog post today, the author shares their journey of self-reflection and their search for a career that brings not just financial stability, but also a sense of joy and impact. They highlight the importance of continuous learning, empathy, and strategic thinking in this quest for fulfillment.

One of the challenges they face is their introverted nature. Networking and presenting themselves to new clients can be daunting, but they recognize the value of developing their soft skills to succeed in the global job market. It's a reminder that personal growth and improvement are essential elements on the path to fulfillment.

The author also reflects on their childhood fascination with history and the stories of ordinary people who became trusted advisors, making significant impacts on their communities. They see themselves as potential advisors, driven by empathy and a desire to help others succeed while achieving something bigger than themselves.

However, like many of us, the fear of failure and taking excessive risks can hold them back from pursuing their dreams. The blog post acknowledges the importance of balancing ambition with practicality and the fear of disappointing their family's expectations. It's a struggle many of us can relate to.

Fulfillment isn't just about the work itself; it's also about the relationships we have along the way. The author shares the tension between their ambitions and the potential impact on their personal relationships. Balancing personal and professional aspirations is a delicate dance that can sometimes require sacrifice and communication.

But amidst these challenges, the author reminds us that we don't need to be the wealthiest person in the world to find contentment. It's not just about the high salaries or working at prestigious companies. Fulfillment can be found in meaningful connections, side hustles, and opportunities to make a positive impact in the world.

Today's post encourages us to embrace complexity and actively seek work that we deeply appreciate. It's a call to align our passions, talents, and values to create a career that brings joy and purpose.

If you resonate with this journey and are seeking fulfillment in your own career, let's connect! I'd love to hear your stories and insights. Together, we can navigate the complexities and find work that truly enhances our lives.

That's it for today's episode of Continuous Improvement. I hope you found value and inspiration in the blog post we explored. Remember, fulfillment is a continuous pursuit, so let's keep improving together.

Thank you for tuning in, and until next time!

尋找充實的工作

上週,我從公司收到了一筆獎金。事情進行得很順利,這筆獎金作為一種良好的經濟獎勵,回報我過去一年的辛勤工作。在新加坡,獲得第13個月的薪資是相當標準的做法,而我收到的變動薪酬也符合行業慣例。我的薪資在外籍人士社區中大約屬於平均水平,讓我能維持單身的生活水平。儘管有這種經濟穩定性,我一直在思考我的職業發展並尋找我真正熱愛的工作。我也專注於產生更大的影響,而不僅僅是工作更努力來證明我的薪資價值。

與此同時,我在目前的角色中面臨一些挑戰。就在昨天,我在一個活動中遇到了一個新的客戶。雖然他友善且愉快,但當我試圖建立強而有力的商業關係時,我卻語無倫次。隨著我的公司成長,對我的軟性技能,包括演講,網絡和溝通能力的需求正在增加。我需要克服與陌生人交往的恐懼,並發展我的領導才能以成功於全球工作市場。

如果我唯一的目標是最大化收入和地位,我可能會成為一名全職銷售人員。他們擁有我崇敬的軟性技能:影響客戶的能力,謀求利潤和產生新的商業機會。傭金中的潛在收入也非常吸引人。然而,我避開了這條職業道路,因為我是個內向的人,面對陌生人並在社交場合保持高能量的想法讓我感到害怕。

在我還是個孩子的時候,我喜歡閱讀歷史書籍。我尤其被普通人通過他們卓越的溝通技能贏得信任,團結民族,打敗共同敵人,從而拯救他們的社區,最終崛起成為國王顧問的故事所吸引。這深深地吸引了我,儘管我的自身經驗僅限於策略性的電腦遊戲和寫作。激發我興趣的是策略元素——使用知識和策略來實現目標的樂趣。

作為一個成年人,我仍然重視策略。我不斷學習,閱讀書籍,並參加在線課程來吸收新資訊。我的願望是成為一個值得信賴的顧問,幫助他人成功並實現比我自己更大的事情。我被同理心和使他人快樂的樂趣所驅動。

我常常羨慕像埃隆·馬斯克,萊昂納多·狄卡皮歐等非常成功的人。然而,我意識到每條這樣的道路都伴隨著自身的挑戰和犧牲。相反,我專注於他們生活中我真正欽佩的方面,例如他們對世界的影響力或他們的財務能力。

我工作中的樂趣來自於賺錢,學習新技術,帶領團隊和幫助人們。我相信,通過協作解決複雜的現實世界問題可能導致私營部門創新和可擴展的解決方案。

如果我知道我不會失敗,我下一步將是創建我自己的企業,並構建一款可擺脫全球市場的可擴展產品。然而,我最大的恐懼是這個新企業可能不會盈利,並且我可以冒著過大的風險,導致財務破產。

我的家庭傾向於尊重傳統的職業角色,如工程,會計,廚藝等方面。他們對數位時代的職位,如 Scrum Master 或 Data Scientist不太熟悉。他們的主要憂慮是我要有一個穩定的,財富回報豐厚的職業。政治角色,特別是那些反對中國共產黨的角色,將是他們的擔憂。

然而,我渴望超越家庭的成就,成為具有國際視野和獨立經濟來源的人。我希望透過旅遊和科技普及幫助他們擴闊視野。

我的社交圈也有自己的挑戰。雖然我的大學同學和前商業合作夥伴支持我的野心,但我的女朋友則有不同的興趣和冒險胃口。這在追求我的熱情和投入關係的時間上造成了緊張。

最後,我需要聆聽的聲音是「內在的愛」。如果有人不喜歡我,重要的是記住我不能取悅所有人。

許多人夢想在像 Google 這樣的公司工作,著迷於他們的文化,前沿技術和高薪資。但同樣的好處也常常可以在科技新創企業,甚至在創業時找到。

儘管我有恐懼--創業,和陌生人說話,或公開演講--我不必成為世界上最富有的人才能感到滿足。創業、新機會和有意義的關係可以提供不只是能忍受的工作,還有充滿目標,友誼和創意的充實職業。

要實現這一點,我們需要集中研究找到真正充實工作的複雜性。如果您有同樣的目標,我很想聽聽您的看法。我們可以一起探索不只是付錢的工作,而是我們深深,非常欣賞的工作。