Restrict Admin Access On WordPress Site

Reference: https://www.malcare.com/blog/restrict-admin-access-on-wordpress/ Navigate to the root directory of your WordPress installation. . Look for the .htaccess file in the wp-admin folder. Edit .htaccess and paste below code. Replace ‘12.34.56.789’ with the actual IP address of your computer. If necessary, restart the server with below command.

Tools for Web Development

Tailwindcsshttps://tailwindcss.com/ Alpine.jshttps://alpinejs.dev/Alpine 教學https://hackmd.io/@monkenWu/S14j-NqsUhttps://www.youtube.com/watch?v=dzm11yytjTw&list=PLfdtiltiRHWF0T2HE1D4hxN4vaeh4wW3g JS Libraryhttps://github.com/mattkingshott/iodine Referencehttps://css-tricks.com/lightweight-form-validation-with-alpine-js-and-iodine-js/

English eBook for Kids

Free eBooks https://www.hk01.com/親子/428546/停課-在家不偷懶-3個免費英文電子書網站推介-miss-carley https://www.kidsworldfun.com/ebooks.php https://www.oxfordowl.co.uk/for-home/find-a-book/library-page?fbclid=IwAR1QP_i77_s_gSzyrkHvSFSDFYrJCKrIJLkg2YzkKTIRxkPYdHBEV0gdfao English Story Videos https://www.youtube.com/channel/UCsLLIDa20CaVJfxW9jxtysw/videos https://www.youtube.com/channel/UCqAV8DAM-Kh-IpEr4frEOig/videos 0000MK-R9GW1J-9XW35F-QXD637-EMKK9F-9PBP9W-BUK0A1

Personal Note of Karate – 空手道個人筆記

馬步 Dachi 閉足立 Heisoku dachi結立 Musubi dachi平行立 Heiko dachi四股立 Shiko dachi前屈立 Zenkutsu dachi三戰立 Sanchin dachi貓足立 Nekoashi dachi內八字立 Uchi Hachiji Dachi 外八字立 Soto Hachiji Dachi鶴足立 Tsuru Ashi Dachi 前屈立 Zenkutsu Dachi後屈立 Kakutsu Dachi基本立 Moto Dachi 交叉立 Kosa Dachi 手技 Waza 上段拳 Jodan Tsuki中段拳 Chudan Tsuki下段拳 Gedan Tsuki正拳 Seiken平行拳 Heiko Tsuki合突 Awase Tsuki勾拳 Mawashi Tsuki裏拳(掛拳) Uraken中高拳(鳳眼拳) Chukoken鷄口拳 […]

Learning Django (Python Web Development)

Install Django $ pip3 install django Create Django Project $ django-admin startproject <your django project name>e.g. $ django-admin startproject fredstoreFolder fredstore will be created Running Django Project Enter the project folder$ python3 manage.py runserver Create App in Django $ python3 manage.py startapp <your app name>e..g $ python3 manage.py startapp pollsAfter the App is created, edit […]