Skip to content

Instantly share code, notes, and snippets.

View wwwebc's full-sized avatar

Vladimir Skriabin wwwebc

View GitHub Profile
@wwwebc
wwwebc / countries-idd-flag.json
Last active February 13, 2025 03:13
List of countries containing ISO 3166-1 alpha-2 code, dial code and flag svg url (251 records)
[{
"code": "AF",
"name": "Afghanistan",
"dial_code": "+93",
"flag_url": "https://flagcdn.com/af.svg"
}, {
"code": "AX",
"name": "Åland Islands",
"dial_code": "+358",
"flag_url": "https://flagcdn.com/ax.svg"
@ziadoz
ziadoz / install.sh
Last active October 4, 2025 06:28
Install Chrome, ChromeDriver and Selenium on Ubuntu 16.04
#!/usr/bin/env bash
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c
# https://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver
# https://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception
# https://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal
# https://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04
# Versions
CHROME_DRIVER_VERSION=`curl -sS https://chromedriver.storage.googleapis.com/LATEST_RELEASE`
@refringe
refringe / sendy-server
Last active August 11, 2025 14:38
Nginx configuration file example for Sendy (http://sendy.co/).
server {
listen 80;
listen [::]:80;
server_name domain.com;
autoindex off;
index index.php index.html;
root /srv/www/domain.com/public;