LHLee How Muninhowmun.dev·Dec 17, 2024 · 1 min readAI Project 02 - IP location and AS NumberIts a common task for me to check on malicious request’s incoming IP address, and add the IP address’s location or AS number to our ever growing blacklist. With Cursor’s and Deepseek-Coder help, got this done in just 10-minutes time: https://iplocati...00
LHLee How Muninhowmun.dev·Dec 17, 2024 · 1 min readCheck SSL Common nameecho | openssl s_client -connect howmun.dev:443 2>/dev/null | openssl x509 -noout -subject00
LHLee How Muninhowmun.dev·Nov 29, 2024 · 1 min readAI Project 01 - What is my IPv4Objective Get the hang of Windsurf IDE, as a system engineer, I need to get my public IPv4 from web browser on daily basis, or provide it to clients to show what’s their IP. Prompts and launch it build a nextjs project that will be hosted on vercel,...00
LHLee How Muninhowmun.dev·Apr 30, 2024 · 1 min readLaravel Dockerfile with supervisordJust ref for future self,content credit goes to https://medium.com/@hmquan08011996/dockerfile-for-php-laravel-36b92bb62795 Dockerfile: FROM php:8.2-fpm ARG user ARG uid # Install system dependencies RUN apt-get update && apt-get install -y \ gi...00
LHLee How Muninhowmun.dev·Jan 26, 2024 · 1 min readLaravel getting 419 after submitting formSeeing the following 419 error whenever a submit button is pressed in a Laravel blade form: The solution is quite simple, just a missing @csrf after the form: Just do a page refresh and submit again then the issue is resolved.00