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.
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):
Malay language is key being able to speak fluently will help a lot (trust me, I been navigating in the system since May 2024).
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.
Metadata is a powerful tool for AWS users. It allows users to make query of data describing EC2 instances, and making a self reference API call.
By default any linux AMI will have curl build in, hence using of metadata will be simplified.
One of the best test case is automating input into shell script that will requires a lot of user prompt is automating or at least make configuration of setting up openvpn using AWS Lightsail easier.
!#/bin/bash
sudo chmod 777 ./openvpn-install.sh
sudo ./openvpn-install.sh << INPUT
y
1
1
11
n
n
client
1
INPUT
sudo cp /root/client.ovpn /home/ubuntu
sudo chmod 777 /home/ubuntu/client.ovpn
Above shell script will cause the openvpn-install.sh to fail in AWS, as the script does not provide public and local ip of the instance.
Below script are including the AWS Metadata
!#/bin/bash
TOKEN=`curl -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 21600"`
PUBLICIP=`curl -X GET "http://169.254.169.254/latest/meta-data/public-ipv4" -H "X-aws-ec2-metadata-token: $TOKEN"`
LOCALIP=`curl -X GET "http://169.254.169.254/latest/meta-data/local-ipv4" -H "X-aws-ec2-metadata-token: $TOKEN"`
sudo chmod 777 ./openvpn-install.sh
sudo ./openvpn-install.sh << INPUT
$LOCALIP
$PUBLICIP
y
1
1
11
n
n
client
1
INPUT
sudo cp /root/client.ovpn /home/ubuntu
sudo chmod 777 /home/ubuntu/client.ovpn
By adding the metadata the ovpn file will be populated with correct IP.
AWS Metadata allow automation to be made simpler by running scripts that requires self-reference metadata to configure newly booted up EC2 instance(s).
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 initterraform plan will show configuration to be applied once init are successfulAWS 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.
Have added changes to incorporate both generating AWStats logs and starting up AWStats service in a single docker compose file at KarMeng / docker_awstats — Bitbucket
Sample docker compose for AWStats
This is an easy and simple example that beginners can use to generate web statistics using AWStats.