Skip to content

Instantly share code, notes, and snippets.

View theaungmyatmoe's full-sized avatar
🐙
Real life doesn’t always follow the prim and proper science of a CS classroom.

Aung Myat Moe theaungmyatmoe

🐙
Real life doesn’t always follow the prim and proper science of a CS classroom.
View GitHub Profile
@theaungmyatmoe
theaungmyatmoe / jwtRS256.sh
Created January 28, 2023 14:05 — forked from ygotthilf/jwtRS256.sh
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub
@theaungmyatmoe
theaungmyatmoe / README.md
Created August 29, 2023 07:45 — forked from nikcub/README.md
Facebook PHP Source Code from August 2007
@theaungmyatmoe
theaungmyatmoe / paginate.php
Created January 26, 2024 13:30 — forked from vluzrmos/paginate.php
Laravel Paginate Collection or Array
<?php
/**
* Gera a paginação dos itens de um array ou collection.
*
* @param array|Collection $items
* @param int $perPage
* @param int $page
* @param array $options
*
* @return LengthAwarePaginator