Mobile Legends Adventure: Get CD-Keys Here (Updated 20 Sep 2024)

I have been playing this game since 2019.

Mobile Legends Adventure: CD-Key

Below are the current working CD-Keys.
However, 1 account can redeem 1 time only.

  • AU5ZWR2223J (1000 Diamonds)
  • 888888 (288 Diamonds)
  • MLA35KFANS (500 Diamonds)
  • MLAISLIT (300 Diamonds & 30K Gold)
  • MLAISFIRE (3 Summon Tickets & 40K Gold)
  • MLAFBGO (300 Diamonds)
  • MLA1YEAR (1000 Diamonds)
  • HV4K4V2223K (10 Nightmare Puzzle Piece)
  • MLAXMAS (1000 Diamonds)
  • HVXFZM2223Q (500 Diamonds)
  • T6J3GG2223R (1000 Diamonds)
  • 47BWK42223S (1000 Diamonds)
  • VMNFZA22248 (500 Diamonds)
  • EV4UTW2223U (1000 Diamonds)
  • MLAXMPL (200 Diamonds, 2 Summon Tickets & 50K Gold)
  • MLMLA0908 (350 Diamonds, 2 Summon Tickets & 20K Gold)
  • MLAIG500K (1000 Diamonds)
  • MLAFBFAN (1000 Diamonds)
  • AKAKURO77 (777 Diamonds, 2 Summon Tickets & 7777 Gold)
  • 00NATAN00 (500 Diamonds)
  • DKMEQF2225W (500 Diamonds)
  • 5TS2JD22262 (500 Diamonds)
  • CGUNBA22264 (1000 Diamonds)
  • CARNIVAL (200 Diamonds & 50% Monthly Pass Coupon)
  • TNEEY822275 (500 Diamonds)
  • CUNZJZ22274 (10 Summon Tickets, 500 Advance Essence & 50% Monthly Pass Coupon )
  • HJPHU222277 (500 Diamonds)
  • XMASFUN689 (1000 Diamonds & 20 Summon Tickets)
  • WJDZ7G2227D (Random Reward Chest)
  • MLA9453 (777 Diamonds, 2 Summon Tickets & 100K Gold)
  • Z9D9A622288 (1000 Diamonds, 10 Summon Tickets & 500 Advance Essence)
  • EAKSUY2228C (300 Diamonds)
  • NEWERA0429 (500 Diamonds)
  • 99WMXM2228H (500 Diamonds)
  • 6D92BD2228G (1000 Diamonds & 10 Summon Tickets)
  • SUMMER0826 (1000 Diamonds & 20 Summon Tickets)
  • 8JESRQ22294 (1000 Diamonds & 5 Summon Tickets)
  • MLADUNGEON (10 Summon Tickets & 500 Diamonds)
  • TRVRMU22295 (Shiny Crystal ×20, Big Supply of Battle Points ×20 & Big Supply of Hero EXP ×10)
  • SP3T7G22296 (20 Summon Tickets & 1000 Diamonds)
  • 3S7SRH2229C (1000 Diamonds)
  • MA7TT82229X (1000 Diamonds & 10 Summon Tickets)
  • SUMMER0825 (1000 Diamonds & 20 Summon Tickets)
  • KKTMHS222B7 (1000 Diamonds & 10 Summon Tickets)
  • 7PHZ6Z222BU (500 Diamonds)
  • VM2MQD222BV (500 Diamonds)
  • UAZ8CC222CK (1000 Diamonds & 20 Summon Tickets)
  • 7XUXPR222CH (1000 Diamonds & 20 Summon Tickets)
  • FBN97B222CW (500 Diamonds)
  • 5Q2ASM222CX (500 Diamonds)
  • ZEN4RB222CY (500 Diamonds)
  • XETNFB222DG (1000 Diamonds & 10 Miracle Summon Tickets)
  • VAYUEC222FC (1000 Diamonds)

I will update the new CD-Keys when available.

If you have any questions about CD-Keys, comment below.

Exploring Microsoft Azure Portal: Setting Up GitLab Runner and Poste.io Mail Server with Amazon SES for SMTP

Introduction

In today’s cloud-driven world, managing infrastructure with services like Microsoft Azure and AWS has become a vital part of software development and deployment. In this post, I’ll walk you through my recent experience exploring Microsoft Azure, where I set up a Virtual Machine (VM) to host GitLab Runner for continuous integration and Poste.io as a mail server. However, I encountered a common issue — outbound port 25 was blocked, which is essential for sending email via SMTP. To overcome this, I integrated Amazon Simple Email Service (SES) to handle outbound mail.

This blog post details how I set up these services and how Amazon SES solved the port 25 block issue on cloud infrastructure, providing a seamless email-sending solution.


Step 1: Exploring Microsoft Azure and Creating a Virtual Machine

The first step in the process was to create a Virtual Machine (VM) on Microsoft Azure, which would serve as the host for both GitLab Runner and the Poste.io mail server.

Why Azure?
Azure’s cloud platform offers powerful resources, scalability, and a wide range of services. Its Virtual Machines are versatile and support various operating systems, making it perfect for my needs.

Here’s a quick rundown of how I created the VM:

  1. Access the Azure Portal:
    • Go to the Azure Portal and log in with your credentials.
    • From the dashboard, select Virtual Machines in the side menu and click Create.
  2. Configuring the VM:
    • Choose an operating system (I used Ubuntu 20.04 for its stability and support).
    • Select the appropriate size for your VM based on your workload. I went with a Standard B2s VM, which offers 2 vCPUs and 4 GB of RAM — enough for GitLab Runner and Poste.io.
  3. Networking:
    • When setting up the VM’s networking options, ensure that you configure inbound rules for ports such as HTTP (80), HTTPS (443), and SMTP (587) for mail communication.
    • Once done, click Review + Create and then click Create to spin up your VM.
  4. Access the VM via SSH:
    • Once the VM is created, you’ll be given a public IP address. Use SSH to access your new VM:

      ssh <your-username>@<your-vm-ip-address>


Step 2: Setting Up GitLab Runner on Azure VM

With the VM ready, I proceeded to set up GitLab Runner — a key component for running CI/CD pipelines on GitLab.

  1. Install GitLab Runner: SSH into your VM and run the following commands to install GitLab Runner:

    curl -L –output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64
    chmod +x /usr/local/bin/gitlab-runner
    gitlab-runner install
    gitlab-runner start


Step 3: Setting Up Poste.io as a Mail Server

Next, I turned my attention to setting up the mail server. For this task, I chose Poste.io, a fully-featured mail server that’s easy to install and configure.

  1. Installing Docker: Poste.io runs within a Docker container, so the first step is to install Docker on your VM:

    sudo apt-get update
    sudo apt-get install docker.io

  2. Setting Up Poste.io: With Docker installed, you can now set up the Poste.io mail server. Simply run the following command to pull the Poste.io Docker image and start the container:

    sudo docker run -d \
    –name “poste” \
    –restart=always \
    -p 25:25 -p 80:80 -p 443:443 -p 587:587 -p 110:110 -p 995:995 -p 143:143 -p 993:993 \
    -v /your-data-folder:/data \
    analogic/poste.io

    This will expose the necessary ports and mount the data folder for persistence. You can access the Poste.io admin interface by visiting the VM’s public IP address in a browser.

  3. Initial Configuration: Upon visiting your server’s IP in a browser, you’ll be prompted to configure the domain, admin account, and other initial settings. Once set up, you can start managing email accounts, domains, and mail queues directly through the Poste.io dashboard.

Step 4: Overcoming the Port 25 Block with Amazon SES for Outbound Mail

At this point, I ran into a common issue: Azure (and most cloud providers) block outbound traffic on port 25, the default port used for sending SMTP email. This meant my Poste.io server could not send outgoing mail.

The solution? Amazon Simple Email Service (SES) — a reliable, scalable service that bypasses port 25 restrictions and allows your server to send outbound emails.

Setting Up Amazon SES

  1. Log into the AWS Console: Head to the Amazon SES Console and create an SES account if you don’t have one already.
  2. Verify Your Domain:
    • Navigate to Domains under the SES dashboard.
    • Click Verify a New Domain and follow the steps to verify your domain. This may involve adding DNS records provided by SES to your domain’s DNS settings.
  3. Create SMTP Credentials:
    • In the SES console, under SMTP Settings, generate SMTP credentials (Amazon will provide a username and password).
    • Make note of the SMTP server endpoint (e.g., email-smtp.us-east-1.amazonaws.com) and the credentials.

Configuring Poste.io to Use Amazon SES

Now, you need to configure Poste.io to use Amazon SES as the SMTP route for outbound emails.

  1. Modify Default SMTP Route (used by Poste.io): Change target SMTP server hostname Amazon SES SMTP hostname together with the SMTP username and password,

At this point, your Poste.io mail server is configured to send emails through Amazon SES, circumventing the port 25 block.


Step 5: Conclusion

Setting up a Virtual Machine on Microsoft Azure to run GitLab Runner and Poste.io for mail services is a powerful combination for managing your CI/CD workflows and email communication. However, the outbound port 25 block on most cloud providers can be a major hurdle for email delivery.

By integrating Amazon SES with Poste.io, I was able to successfully configure SMTP services, ensuring reliable outbound mail delivery. This solution not only bypasses cloud provider restrictions but also offers a scalable and cost-effective way to manage email sending.

If you’re facing similar challenges in your own cloud-based mail server setups, I highly recommend looking into Amazon SES for your email-sending needs. It’s a robust and dependable solution to keep your communication flowing smoothly!


Have you set up similar cloud-based systems or dealt with SMTP restrictions? Share your experiences in the comments below!

Migrating to AWS Malaysia Region: From Linux to Windows/IIS with Free SSL from ACM

For the past few weekends, I’ve been busy migrating my website and WordPress blog from my previous hosting provider to the newly launched AWS Malaysia Region. Initially, my plan was to set everything up using the classic Linux/Apache stack, but after evaluating my project requirements (And my expertise in IIS 😅), I decided to go with Windows/IIS instead. This decision was largely based on familiarity, support, and ease of use for what I had in mind.

After a few challenges, I was able to complete the migration seamlessly, and to top it off, I secured everything using the AWS Certificate Manager (ACM) which provided me with a free SSL certificate! In this post, I’ll walk you through some of the steps I took to make this migration successful, and provide some extra instructions for those of you planning to run PHP and Laravel on IIS. Let’s dive in!

Migrating to AWS Malaysia Region

AWS recently launched its Infrastructure Region in Malaysia, offering improved latency and performance for those of us working out of Southeast Asia. The timing couldn’t have been better for my migration.

Here’s a quick rundown of the migration process:

  1. Setting up an EC2 Instance: I spun up a Windows Server EC2 instance using AWS Elastic Compute Cloud (EC2). AWS made it easy to select the region closest to me—AWS Malaysia Region—and launch a server instance that met my performance needs.
  2. Installing IIS: Once my Windows Server instance was up and running, I installed IIS (Internet Information Services) using the Server Manager.
  3. Migrating WordPress: I moved my WordPress site from my old host to AWS manually by copy the directory and export the SQL.
  4. Setting Up SSL with ACM: Security is always a top priority, and I took advantage of AWS Certificate Manager (ACM) to get a free SSL certificate for my domain. ACM automates the provisioning and renewal of SSL/TLS certificates, ensuring my website is secure without the need for manual intervention.

Everything was running perfectly—until I realized I also needed to host a Laravel application on this server.

Enabling PHP in IIS for Laravel

If you’re planning to run PHP-based applications like Laravel on IIS, there are some additional steps you’ll need to follow. Here’s a step-by-step guide to get PHP up and running on IIS, and ensure that Laravel works without issues:

1. Install PHP on Windows/IIS

First, you’ll need to install PHP on your IIS server.

  • Download the PHP Windows Installer and choose the latest non-thread-safe version for your system.
  • Extract the files to a directory, e.g., C:\php.
  • Open IIS Manager, navigate to your server node, and click on Handler Mappings.
  • Add a new Module Mapping with the following details:
    • Request Path: *.php
    • Module: FastCgiModule
    • Executable: C:\php\php-cgi.exe (or wherever you extracted PHP)
    • Name: PHP
  • Once done, restart IIS.

2. Install FastCGI

To enable IIS to process PHP files, you’ll need to install FastCGI support.

  • In Server Manager, click on Add Roles and Features.
  • Navigate to Web Server (IIS) > Web Server > Application Development, and select CGI.
  • Install FastCGI.

3. Configure PHP with IIS

You need to tell IIS where to find the PHP installation. Here’s how:

  • Open your php.ini file (located in your PHP installation directory) and modify the following settings for Laravel:
    • max_execution_time = 300 (or more depending on your needs)
    • memory_limit = 512M
    • post_max_size = 100M
    • upload_max_filesize = 100M
    • extension_dir = "ext" (adjust this to your actual PHP extension directory)
  • Enable required extensions for Laravel:
    • Uncomment the following lines in php.ini:
      extension=curl
      extension=mbstring
      extension=fileinfo
      extension=openssl

4. Install Composer

Now that PHP is up and running on IIS, the next step is to install Composer and Laravel.

  • Download and install Composer.
  • Next, configure IIS to serve Laravel application.

5. URL Rewrite Module for IIS

Laravel requires the URL Rewrite Module to work correctly with IIS.

  • Download and install the URL Rewrite Module for IIS.
  • Add the following rewrite rules to your site’s web.config file located in the Laravel root directory:
    <configuration>
    <system.webServer>
    <rewrite>
    <rules>
    <rule name="Laravel" stopProcessing="true">
    <match url=".*" />
    <conditions logicalGrouping="MatchAll">
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    </conditions>
    <action type="Rewrite" url="index.php" />
    </rule>
    </rules>
    </rewrite>
    </system.webServer>
    </configuration>

6. Database Setup

  • Install MySQL and set up your database.
  • Update the .env file in your Laravel app with the correct database credentials:
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=your_database
    DB_USERNAME=your_username
    DB_PASSWORD=your_password

After following these steps, Laravel app should be fully functional on IIS!

Wrapping Up

Migrating my website, WordPress blog, and Laravel app to AWS Malaysia Region using Windows/IIS turned out to be a rewarding experience. By enabling PHP and configuring the necessary components, I’ve ensured my applications run smoothly and securely in the cloud. Thanks to AWS’s robust infrastructure and ACM’s free SSL certificates, I’m confident my setup will handle future growth and challenges with ease.

If you’re planning to do the same or have any questions, feel free to reach out. I’m more than happy to help!


Key AWS Services Used:

  • EC2 for hosting the Windows/IIS server.
  • ACM (AWS Certificate Manager) for free SSL certificates.

Exploring AWS free tier and expanding my tech knowledge has been a blast, and I highly recommend it to anyone looking to dive into cloud computing. It’s empowering to manage your own cloud infrastructure, and AWS offers great flexibility, whether you’re using Linux or Windows!

Have you tried AWS for your hosting needs? Let me know your thoughts and experiences!

Pokémon Scarlet & Violet Mystery Gift Codes [Updated 16 August 2024]

I just play this game to get Gimmighoul in Pokémon GO.
However, I cannot stop once I started this.
This story will tell in another post.

Pokémon Scarlet & Violet Mystery Gift Codes

Below are the Mystery Gift Codes that currently active. (Please redeem before the date beside)

  • LEVELUP (10 Rare Candy) [2nd October 2023]
  • REV1VE (5 Max Revive) [2nd October 2023]
  • CATCHBYBALL (5 Nest Balls, 5 Dive Balls, 5 Dusk Balls, 5 Timer Balls, 5 Quick Balls and 5 Luxury Balls) [2nd October 2023]
  • GETG0LD (Gold Bottle Cap) [4th June 2023]
  • PLAYD0UBLE (TM028 Bulldoze, TM086 Rock Slide) [30th June 2023]
  • PTCCHAMP10N2122 (Gastrodon from Champion’s winning team at 2022’s Korean Pokémon Trainers Cup!) [19th June 2023]
  • PAULEU1CW1N (2023 EUIC Champion Paul Chua’s shiny Arcanine) [3rd July 2023]
  • TREASUREHUNT (Friend Ball, 10 Nuggets and 10 Rare Candy) [31st July 2023]
  • TERATYPECHANGE (50 Fighting Tera Shards) [31st July 2023]
  • DARKTERA0006 (Dark Tera Type Charizard) [31st August 2023]
  • NATSUN0T0KKUN (Sandwich Ingredients) [30th September 2023]
  • THA12022CHAMP (Shiny Grimmsnarl) [18th August 2023]
  • GETY0URMEW (Random Tera Type Mew) [18th September 2023]
  • 23WCSGASTR0D0N (Gastrodon distribution for the Pokémon World Championships) [14th August 2023]
  • L1KEAFLUTE (Cetitan) [31st August 2024]
  • SWEET0RSP1CY (Sweet Herba Mystica or Spicy Herba Mystica) [30th September 2024]
  • LA1CPHANT0M4CE (Alex’s Dragapult Gift) [20th November 2023]
  • TEAMSTAR (Fighting Tera Tyoe Revavroom) [31st October 2024]
  • NEWM00N1SC0M1NG (Darkrai) [21st December 2023]
  • SH1NYBUDDY (Shiny Lucario) [3rd January 2024]
  • SEEY0U1NPALDEA (Gimmighoul 31 Speed IV and 0IV in everything else) [30th December 2024]
  • WEARTERASTALCAP (Terastal Cap) [30th November 2024]
  • G0TCHAP0KEM0N (Quick Ball) [28th December 2025]
  • SUPEREFFECT1VE (Expert Belt) [28th December 2025]
  • NE0R0T0MC0VER (Neo Kitakami Rotom Phone case)
  • Y0AS0B1B1R1B1R1 (Yoasobi’s Pawmot Distribution) [28th February 2025]
  • L1K0W1TH906 (Liko’s Sprigatito with the Partner Ribbon) [30th September 2024]
  • FAKE0UTEU1C (2024 LAIC Champion Marco Silva’s Iron Hands) [8th April 2024]
  • 987W1THSPECS (2023 Pokémon Trainers Cup Shin Yeo-myeong’s Flutter Mane) [7th May 2024]
  • GYARAD0S2023SG (2023 Pokémon Singapore Championships Gyarados) [30th June 2024]
  • D0T1STPARTNER (Dot’s Quaxly) [30th November 2024]
  • F1ARR0W23MASTER (Talonflame used in 2023 Japan Championships) [2nd June 2024]
  • NA1CTR1CKR00M (Nils Dunlop’s Porygon2 used in 2024 EUIC) [10th June 2024]
  • 909TEAMUP06 (Roy’s Fuecoco) [31st Jan 2025]
  • SLEEPTALKW0RLDS (Tomoya Ogawa’s Sylveon) [31st August 2024]

How to send BCH (Bitcoin Cash) from Luno to Binance

I believe most of us stumbled upon this as Luno unable to recognize the BCH Binance Legacy Address Format.
Hence, we would need to convert it to BCH new CashAddress format.

You could use the below link to convert.
https://www.bitcoin.com/tools/cash-address-converter/

Bitcoin.com

However, I won’t take any responsible if anything bad happen due to this article.
Kindly do extra research about it.

Anyway, below is my BCH address in both Legacy and CashAddress format.
You guys can send BCH to me as a donation. 😁

1Ch6tgd9V2TzR1Ld8uExUpSXYDuPE341hD
qzqrauy3atns33ep0h22srl4wkqt3t308vax0f0hpy

Pokémon Game Save Data Bonuses

Pokémon games have a long history of offering save data bonuses to players who have save data from previous games. These bonuses can range from small cosmetic items to powerful Pokémon.

In Pokémon Scarlet and Violet, players can receive a variety of save data bonuses, including:

  • Rotom Phone cases: Players can receive a custom Rotom Phone case from a woman in Mesagoza’s Central Plaza if they have save data from Pokémon Let’s Go, Pikachu!, Let’s Go, Eevee!, Pokémon Sword and Shield, Pokémon Brilliant Diamond and Shining Pearl, or Pokémon Legends: Arceus.

Save data bonuses are a great way to show your support for the Pokémon franchise and to get some extra rewards for your continued playing. If you have save data from previous Pokémon games, be sure to check out the save data bonuses available in Pokémon Scarlet and Violet.

In addition to the save data bonuses listed above, players can also receive other rewards for completing certain tasks in Pokémon Scarlet and Violet. For example, players can receive a special outfit for their character by completing the Pokédex. Players can also receive a special Rotom Phone case by completing the game’s story.

There are many other rewards available in Pokémon Scarlet and Violet, so be sure to explore the game and find all of the hidden treasures.

I’m Back in the World of Pokémon!

Me and Pokémon

I’m Back in the World of Pokémon!

The 1st time I get into Pokémon was the Pokémon Red, Blue, Yellow until Gold and Silver.
Next, I watch the anime, read the manga & play Trading Card Game.
I have quite great knowledge on First and Second Generation Pokémon.

Pokémon GO released in 2016 and I started playing it.
I quickly became obsessed.
I loved the idea of being able to explore my city and catch Pokémon in the real world.
I also enjoyed the social aspect of the game.
However, I eventually stopped after a while to focus something more important in life.

In the year 2023, I participate Pokémon Scarlet and Pokémon Violet Launch Event Roadshow at Sunway Pyramid.
I remember this was during the Chinese New Year week.
So, why not go there and reminisce about Pokémon.

Fast-forward 5 months later, I compete in all 3 Pokémon Championship Malaysia which is #PokemonGO, #PokemonVG & #PokemonTCG.
For Pokémon Video Game category, I get into Top 8. (Or should I said Top 16, more info can refer to my YouTube and social media)
However, I did not make it through the qualifiers for Pokémon GO and Trading Card Game.

I’m still proud of my accomplishments, and I’m looking forward to competing again in the future.

How Bard Generates Response

Bard generates responses by using a process called natural language processing (NLP). NLP is a field of computer science that deals with the interaction between computers and human (natural) languages. Bard uses NLP to understand the meaning of your prompts and questions, and to generate responses that are relevant and informative.

Bard’s NLP capabilities are based on a large language model (LLM). An LLM is a statistical model that has been trained on a massive dataset of text and code. This dataset includes text from books, articles, websites, and code from GitHub repositories. Bard uses this dataset to learn the statistical relationships between words and phrases.

When ask Bard a question, Bard uses its NLP capabilities to understand the meaning of your question. Bard then uses its LLM to generate a response that is relevant and informative. Bard’s responses are generated in real time, which means that you can interact with Bard in a conversational way.

How ChatGPT Generates Response

ChatGPT Website Screenshot

As an AI language model, ChatGPT uses a complex set of algorithms to process and analyze natural language input from users, generate relevant responses, and present them in a conversational manner.
ChatGPT generates responses using a combination of natural language processing (NLP) and machine learning techniques.

Here’s a brief overview of how ChatGPT generates a response:

  • Input analysis: ChatGPT first analyzes the user’s input to understand the meaning and context of the question or statement.
  • Knowledge retrieval: Once ChatGPT has understood the input, it retrieves relevant knowledge from its pre-existing knowledge base, which has been built through training on vast amounts of text data.
  • Response generation: Using this retrieved knowledge, ChatGPT generates a response that is both relevant to the input and as informative as possible.
  • Language generation: After generating the response, ChatGPT uses natural language generation techniques to present the response in a conversational manner that is easy for the user to understand.
  • Feedback learning: ChatGPT is also designed to learn from its interactions with users. By analyzing the user’s response to its replies, ChatGPT can learn from any mistakes it may have made and improve its future responses.
  • Pre-processing: The user’s input is pre-processed to remove any noise or irrelevant information, such as punctuation and stop words.
  • Encoding: The pre-processed input is then encoded into a numerical representation that can be processed by the machine learning model.
  • Model training: ChatGPT is trained on vast amounts of text data to learn patterns and relationships between words and phrases. It uses a neural network architecture called a transformer, which is specifically designed for NLP tasks.
  • Response generation: Once the input has been encoded and the model has been trained, ChatGPT generates a response by predicting the most likely sequence of words based on the input and its pre-existing knowledge base.
  • Decoding: The predicted sequence of words is then decoded into natural language using a language model that converts the numerical representation back into human-readable text.
  • Post-processing: Finally, the response is post-processed to add any necessary punctuation, capitalization, or other formatting before being presented to the user.
Published
Categorized as Technology

Story of Poco & Coco

I saw 2 turtles abandoned inside a filthy cage at my building lobby for consecutive 2 days.
Took them in, wash and feed them.
Both of them are red-eared slider or red-eared terrapin (Trachemys scripta elegans) is a semiaquatic turtle belonging to the family Emydidae. (I think based on the red-eared)
I bought a new tank and ordered a few extra stuff in Shopee.
Kinda test and fail on the water filter and turtle tank.

However, unfortunate incident happened and Coco have left us.

Poco & Coco in Aquarium 1

Poco & Coco in Aquarium 2

This post to commemorate Coco (The tiny one).
We will miss you 😢

Published
Categorized as Life Tagged