Skip to content

Instantly share code, notes, and snippets.

# Country Channel EPG ID
12.219 United States 5 Star Max US 5starmax.us
12.220 United States A&E US aande.us
12.221 United States ABC 10 Miami US abc10wplg.us
12.222 United States ABC 11 Louisville US abc11whas.us
12.223 United States ABC 13 Houston US abc13ktrktv.us
12.224 United States ABC 13 Alaska US abc13kyur.us
12.225 United States ABC Tampa Bay US abc28wfts.us
12.226 United States ABC 5 Puerto Rico US abc5wora.us
12.227 United States ABC 7 LA US abc7kabctv.us
@ix4
ix4 / chromedriver_upgrade.sh
Created February 22, 2024 20:11
Updates (or installs) ChromeDriver to ensure its version matches the installed Google Chrome version
#!/bin/bash
JSON_URL="https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json"
# Check if the system is Debian-based
if ! command -v lsb_release &> /dev/null || [ "$(lsb_release -is)" != "Debian" -a "$(lsb_release -is)" != "Ubuntu" ]; then
echo "This script is for Debian-based systems only. ❌"
exit 1
fi
@ix4
ix4 / README.md
Created January 23, 2020 08:02 — forked from roachhd/README.md
Feed.xml RSS for Jekyll blog on GitHub pages.

Jekyll RSS Feed Templates.

A few Liquid templates to use for rendering RSS feeds for your Jekyll blog. Featuring four kinds of feeds:

  • feed.xml — Renders the 10 most recent posts.
  • feed.category.xml — Only renders posts for a specific category. This example renders posts for a "miscellaneous" category.
  • feed.links.xml — Only contains posts that link to external websites noted by a link variable in the YAML Front Matter. Not a common Jekyll convention, but a good way to generating a linked list.
  • feed.articles.xml — Only showing articles that don't link to external sites; The opposite of feed.links.xml.
@ix4
ix4 / index.html
Created January 13, 2020 07:20
Real-Time HTML/CSS Editor
<header>
<h1>Real-Time HTML/CSS Editor</h1>
<h2>Put something between the tags or replace them altogether...</h2>
</header>
<div class="container grid">
<form>
<h3>HTML</h3>
<textarea id="html" class="edit"><h1></h1></textarea>
<h3>CSS</h3>
@ix4
ix4 / README.md
Created January 28, 2020 17:02
JavaScript Fingerprint

JavaScript Fingerprint

Forked from CodePen. Original URL.

This is a javascript only way to fingerprint a user with better than 90% accuracy in as few bytes as possible and no cookie storage!

@ix4
ix4 / emojis.json
Created January 23, 2020 16:02 — forked from netsi1964/emojis.json
List of UTF-8 emoji codes and descriptions for them
[
{
"code": [
"1f600"
],
"name": "grinning face"
},
{
"code": [
"1f603"
@ix4
ix4 / README.md
Last active January 9, 2023 12:15 — forked from john-guerra/README.md
GeoJson map of NYC Boroughs
@ix4
ix4 / apache-nginx-ftp
Created October 26, 2022 05:20 — forked from solancer/apache-nginx-ftp
Correct permissions for /var/www/html
# Adding current user to www-data
sudo adduser $USER www-data
# change ownership to user:www-data and
sudo chown $USER:www-data -R /var/www/html
sudo chmod u=rwX,g=srX,o=rX -R /var/www/html
# change file permissions of existing files and folders to 755/644
sudo find /var/www/html -type d -exec chmod g=rwxs "{}" \;
sudo find /var/www/html -type f -exec chmod g=rws "{}" \;
@ix4
ix4 / .gitignore
Created January 3, 2020 08:18 — forked from bwswedberg/.gitignore
Satellite Map Using Leaflet
screenshots
@ix4
ix4 / keyboard-keys.md
Created September 6, 2022 19:41
Keyboard keys markup in MarkDown

Ctrl + Alt + Space

<kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>Space</kbd>