Skip to content

Instantly share code, notes, and snippets.

View alucard001's full-sized avatar

Ellery Leung alucard001

View GitHub Profile
@alucard001
alucard001 / data_source.py
Last active January 24, 2024 07:06
Python3 AWS Lambda Send email with CSV attachment full code
"""
Again, don't just copy and paste the code below. This is for your study only.
Change the code to suit your case accordingly.
"""
import logging
import csv
import zipfile
from zoneinfo import ZoneInfo
@alucard001
alucard001 / send_email_with_attachments.py
Created January 18, 2024 03:01 — forked from kuharan/send_email_with_attachments.py
Send email with attachments in AWS lambda
def send_email(sender, recipient, aws_region, subject, file_name):
# The email body for recipients with non-HTML email clients.
BODY_TEXT = "Hello,\r\nPlease find the attached file."
# The HTML body of the email.
BODY_HTML = """\
<html>
<head></head>
<body>
<h1>Hello!</h1>
<p>Please find the attached file.</p>
@alucard001
alucard001 / Dockerfile
Last active February 27, 2024 16:26
Docker + Laravel + Nginx + Swoole Reverse Proxy Setup
FROM php_base:latest
RUN apt update -y && apt upgrade -y
WORKDIR /var/www/html
RUN composer update --optimize-autoloader
COPY src/. /var/www/html
COPY build/php/.env.local /var/www/html/.env
@alucard001
alucard001 / llama.ipynb
Created July 22, 2023 10:28
llama.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alucard001
alucard001 / docker-compose.yml
Last active February 19, 2023 14:58
Docker compose for Kafka + Zookeeper + Kafka UI - Just work!
# Just run `docker compose up --build` to build and run these containers
# To access the UI go to http://localhost
# While I haven't REALLY use program to access producer/consumer, you can use the Python wrapper
# provided by Confluent: https://developer.confluent.io/get-started/python/#introduction
# to get start
version: "3"
services:
zookeeper:
@alucard001
alucard001 / GetNextBusinessDay.php
Created March 30, 2020 02:57
[PHP]Get Next Business Day, include/not include holiday
<?php
/**
* One of my task is to create a function that find the next business day.
*
* Reference: https://stackoverflow.com/a/5532070/1802483
*/
class GetNextBusinessDay{
// Get a list of holiday in https://holidayapi.com/. Then I copy, paste and edit it manually to make this list
private $holidayList = [
"2020-04-04",
@alucard001
alucard001 / GoogleIndexing.py
Created May 27, 2019 04:49
Google Indexing API V3 Working example with Python 3
from oauth2client.service_account import ServiceAccountCredentials
import httplib2
import json
import pandas as pd
# https://developers.google.com/search/apis/indexing-api/v3/prereqs#header_2
JSON_KEY_FILE = "json_key_file_downloaded_after_creating_your_google_service_account_see_above_details_on_how_to_do.json"
SCOPES = ["https://www.googleapis.com/auth/indexing"]
@alucard001
alucard001 / googlesearch.py
Last active June 24, 2019 04:09
Google Search API Working Example - Python 3 + MSSQL
#!/usr/local/bin/python3
'''
This program is used to get all search terms in Google search console and save it in MSSQL DB.
Please note: Just using this .py is not enough. You need to create a Google service account in google API console and
connect that service account to Google search console property.
Points to note:
===============
@alucard001
alucard001 / apns.py
Created June 2, 2017 04:13
Python Apple Push Notification HTTP/2 Example - Silent Push
"""
Use HTTP/2 send APNS Example main reference
===========================================
http://gobiko.com/blog/token-based-authentication-http2-example-apns/
Error 410 to detect uninstalls
==============================
https://leftshift.io/mobile-tracking-uninstalls-on-ios-and-android
https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CommunicatingwithAPNs.html#//apple_ref/doc/uid/TP40008194-CH11-SW1