Skip to content

Instantly share code, notes, and snippets.

View phongthanfz's full-sized avatar
🙃
I may be slow to respond.

Đạt Phạm phongthanfz

🙃
I may be slow to respond.
View GitHub Profile
@phongthanfz
phongthanfz / readme.md
Last active January 5, 2024 04:06
[Google sheet] Get last stock price
@patmigliaccio
patmigliaccio / install-cf-gae-ssl.md
Last active February 9, 2025 18:06
Configuring Cloudflare SSL/TLS certificates on Google App Engine

Configuring Cloudflare SSL/TLS on Google App Engine

Implementing end-to-end HTTPS encryption with CloudFlare for Google App Engine applications.

Google App Engine - Custom Domains

Add Domains

Register the root domain with Google Cloud Platform at the following:

@b4oshany
b4oshany / chrome.robot
Created May 26, 2018 02:21
Python Robot Framework with Headless Chrome Setup and Robot Files
*** Keywords ***
Open Chrome
[Arguments] ${url}
${chrome_options}= Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys, selenium.webdriver
Call Method ${chrome_options} add_argument --disable-extensions
Call Method ${chrome_options} add_argument --headless
Call Method ${chrome_options} add_argument --disable-gpu
Call Method ${chrome_options} add_argument --no-sandbox
Create Webdriver Chrome chrome_options=${chrome_options}
@tmilos
tmilos / README.md
Last active May 6, 2025 09:51
Modified Preorder Tree Traversal

Modified Preorder Tree Traversal

Hierarchical data metrics that allows fast read operations on tree like structures.

Based on Left and Right fields that are set during tree traversal. When entered into node value is set to it's Left, when exiting node value is set to it's Right.

Sample implementation