Skip to content

Instantly share code, notes, and snippets.

View marcusaaronb's full-sized avatar
🎯
Focusing

Marcus Aaron Baga marcusaaronb

🎯
Focusing
View GitHub Profile
@marcusaaronb
marcusaaronb / CountryCodes.json
Created July 11, 2025 02:13 — forked from anubhavshrimal/CountryCodes.json
Country and Dial or Phone codes in JSON format
[
{
"name": "Afghanistan",
"dial_code": "+93",
"code": "AF"
},
{
"name": "Aland Islands",
"dial_code": "+358",
"code": "AX"
@marcusaaronb
marcusaaronb / Configurations for Laravel app on Kubernetes - Dockerfile
Created December 19, 2022 01:14 — forked from CodingMonkTech/Configurations for Laravel app on Kubernetes - Dockerfile
Deploying laravel on kubernetes cluster - Ready to use configuration Files
FROM php:7.2-fpm
COPY app /var/www/
EXPOSE 9000