Building Bandai MGSD XXXG-00W0 Wing Gundam Zero EW panel lining not required

Bandai MGSD Wing Gundam Zero EW front box cover

Definitely larger than the MGSD Gundam Barbatos. It comes with 13 runners the wings are definitely larger and heavier, more imposing than the finish Wing Gundam figure. Would recommend display this figure with a display stand. Unfortunately, this model kit does not include display stand.

Continue reading

Building Max Factory Plamatea Guts Berserker Armor version better

Max Factory Plamatea Guts Berserker Armor build, painted and posed

Max Factory had released an interesting model kit based on the Berserk anime/manga character, Guts Berserker Armor version.

Original finish of the model is shiny black plastics is a good based to be used as a based without primer to make the figure better.

Continue reading

How to engage with public health system in Penang

Government subsidized health system helps a lot of my fellow countrymen to get health care.

To navigate the public health system is a bit overwhelming.

The pre-requisite will be but not limited to (Yes in order of priority):

  1. Malay language is key being able to speak fluently will help a lot (trust me, I been navigating in the system since May 2024).
  2. Malaysian citizen

Most important is to identify the local health clinic at your area of residence (Klinik Kesihatan in Malay language).

In order to be registered and admitted into the clinic make sure that you are Malaysia Citizen, whipped out your national issued identity card.

In order to get specialist in the main hospital, aka GH aka Hospital Pulau Pinang. It is imperative to get a referral letter from the health clinic (Klinik Kesihatan).

Example of referral letter.

Then go to the specific specialized clinic in Hospital Pulau Pinang, do check around with staffs around. From my experience, the specialist clinics will start opening at 7am to 8am.

For the specialist clinics to set your case from referral letter, you need to bring along the referral letter obtained. Talk to the registration counter staffs, it will open a new case in the clinic, a new paper slip will be given. Do not expect the specialist be available for new cases. An appointment date will be given, usually in a paper slip.

Referral letter with the appointment slip.

Make sure you drop the referral letter with the slip into pigeon-hole on the day of the appointment. Please check with the staffs.

Due to the numbers of patient daily, it is recommended that only one appointment is done in one day.

Here is the generic flow chart at the time of this post.

Flowchart of how to get health care from Malaysian Healthcare system, valid on the date of the post

This post is not a conclusive article on how Malaysian health system works but as a general guideline on how to get help from my personal experience gained from May 2024 till Dec 2024.

Playing Terraform for AWS

This post is based on terraform tutorial Build infrastructure | Terraform | HashiCorp Developer

Make sure AWSCli being installed and configured correctly (aws configure). Make sure IAM user are configured with AWS role, AWS Access key ID and AWS Secret Access Key.

Use the ami catalog, to determine the ami ID, then after make necessary changes run the init

Result of terraform init
terraform plan will show configuration to be applied once init are successful
AWS EC2 creation failed

To solve this VPC and subnet needs to be created first.

Creation of VPC completed, copy the DMZ subnet ID

Make small change to the EC2 instance of terraform file.

Add DMZ subnet to the terraform file

Rerun the terraform init, terraform plan, terraform validate before rerunning terraform apply, then type yes.

EC2 provisioning Completed
Cleaning up, terraform destroy

To clean up the experiment to avoid paying more, start by destroying the instance then the VPC.

Terraform code is available at https://bitbucket.org/KarMeng/terraform_aws

Experimenting with Terraform

All the experience in this post is based on Install Terraform | Terraform | HashiCorp Developer

After terraform init, terraform apply needs confirmation of “yes” before applying into environment

Feels like running ansible but simpler, as the tutorial of quickstart runs on docker engine.

After applying terraform, confirm the nginx is running

Further confirmation running browser to browse the site.

The terraform tutorial are running nginx at port 8000 of your host machine.
If you preferred curl