Skip to content

Instantly share code, notes, and snippets.

View hamzahjamad's full-sized avatar
🏞️
Learning things.

Hamzah Jamad hamzahjamad

🏞️
Learning things.
View GitHub Profile
@hamzahjamad
hamzahjamad / add-tracking-information-into-woocomerce-order-email-using-trackingmy.php
Last active August 16, 2023 09:14
Add tracking.my shippment tracking number to woocommerce email order
<?php
// The plugin: https://www.tracking.my/integration/woocommerce
//
// To integrate tracking.my shipment tracking number to woocomerce order email
// add below function to functions.php
// Tracking.my add tracking number to email
function add_tracking_info_to_order_email( $order, $sent_to_admin, $plain_text, $email ) {
// Get the order ID
@hamzahjamad
hamzahjamad / main.py
Created August 15, 2021 10:27
popcat-clicker
import unittest
import time
from selenium import webdriver
class PythonOrgSearch(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Chrome(
"D:\laragon\www\popcat-clicker\chromedriver.exe")
[unix_http_server]
file=/tmp/supervisor.sock ; path to your socket file
[supervisord]
logfile=/var/log/supervisord/supervisord.log ; supervisord log file
logfile_maxbytes=50MB ; maximum size of logfile before rotation
logfile_backups=10 ; number of backed up logfiles
loglevel=error ; info, debug, warn, trace
pidfile=/var/run/supervisord.pid ; pidfile location
nodaemon=false ; run supervisord as a daemon
#!/bin/bash
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get -y install docker-ce
sudo systemctl status docker
# fb-bot-tutorial/.env
# add these two new field
HUB_VERIFY_TOKEN=some_testing_token
FB_TOKEN=<token>
# fb-bot-tutorial/.env
# add these two new field
HUB_VERIFY_TOKEN=some_testing_token
FB_TOKEN=
<?php
// fb-bot-tutorial/app/Http/Controllers/WebhookController.php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class WebhookController extends Controller
{
// this will verify the Facebook Messenger with our Laravel project
<?php
// fb-bot-tutorial/app/Http/Controllers/WebhookController.php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class WebhookController extends Controller
{
// this will verify the Facebook Messenger with our Laravel project
<?php
// fb-bot-tutorial\app\Http\Middleware\VerifyCsrfToken.php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
class VerifyCsrfToken extends Middleware
{
/**
<?php
//fb-bot-tutorial/routes/web.php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which