-
IOI City Mall Putrajaya - Surau
1. Level L2 (WEST COURT)
Landmark
- Mr Toy
- 2CO
- Medic Deno
- Asterspring
- Klinik Dr Lo (Skin, Laser & Aesthetic)
- Parkson
- All IT Hypermart
2. Level LG (EAST COURT - parking area)
Landmark
- Marks & Spencer
- Poh Kong
3. Level LG (WEST COURT - food area)
Landmark
- KFC
- Tony Romas
- Absolute Thai
- 7 Eleven
- Family Mart
- Sukiya.
-
RE: PM2 for NextJS - ecosystem file
pm2 start npm --name "your-app-name-3000" -- run start
-
RE: Mongodb in Ubuntu 20.04 Installation - working as on Jan 2023
Installation working as on March 2025 on Ubuntu 24.04
-
RE: mysql - snippets
CREATE USER 'admin'@'localhost' IDENTIFIED BY 'the_secure_password'; GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES;
-
NodeJS - ERR_OSSL_EVP_UNSUPPORTED error
export NODE_OPTIONS=--openssl-legacy-provider
Ref: https://stackoverflow.com/questions/69394632/webpack-build-failing-with-err-ossl-evp-unsupported
-
RE: nginx conf - sample
redirect
server { server_name .mydomain.example; rewrite ^ http://www.adifferentdomain.example$request_uri? permanent; }
or on any version 0.9.1 or higher:
server { server_name .mydomain.example; return 301 http://www.adifferentdomain.example$request_uri; }
HTTP redirect:
- 301 (permanent)
- 302 (temporary)
-
Linode - disable ipv6
Check IP
ip a
File: /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1
Reload sysctl
sysctl -p /etc/sysctl.conf