Skip to content

Instantly share code, notes, and snippets.

View likecyber's full-sized avatar
🛠️
I called myself the Artisan.

Likecyber likecyber

🛠️
I called myself the Artisan.
  • Thailand
  • 10:30 (UTC +07:00)
  • Facebook likecyber
View GitHub Profile
@likecyber
likecyber / Wifi Authentication (EN).md
Last active March 5, 2023 21:32
Wifi Authentication (EN)

Warning!

This guideline is based on the 2019 year event. It may not working at some points, please be cautious at all cost!

Welcome to my guideline!

Hi! This is my first guideline written in Markdown. We are going to create WiFi Authentication system by using FreeRADIUS with Chillispot on CentOS 7.6.

@likecyber
likecyber / PromptPay_QR_Payload.class.php
Last active June 2, 2019 02:23
Build/Extract PromptPay QR Code Payload in PHP for convenience payment.
<?php
class PromptPay_QR_Payload {
public function Generate ($ewallet_id, $amount = null, $one_time = false) {
switch (strlen($ewallet_id)) {
case 10:
$ewallet_type = "01"; // Phone Number
$ewallet_id = "0066".substr($ewallet_id, 1, 9);
break;
case 13: