Skip to content

Instantly share code, notes, and snippets.

View Ryangr0's full-sized avatar

Ryan Grippeling Ryangr0

View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>YouTube Subscriptions as RSS</title>
</head>
<body>
<outline text="YouTube Subscriptions">
<outline type="rss" text="HorrorBabble" title="HorrorBabble" xmlUrl="https://www.youtube.com/feeds/videos.xml?channel_id=UCIvp_SM7UrKuFgR3W77fWcg" htmlUrl="https://www.youtube.com/@HorrorBabble"/>
<outline type="rss" text="Luetin09" title="Luetin09" xmlUrl="https://www.youtube.com/feeds/videos.xml?channel_id=UC8RfCCzWsMgNspTI-GTFenQ" htmlUrl="https://www.youtube.com/@Luetin09"/>
<outline type="rss" text="SmoughTown" title="SmoughTown" xmlUrl="https://www.youtube.com/feeds/videos.xml?channel_id=UCcvGOIuFH6befwVyElnMI_A" htmlUrl="https://www.youtube.com/@SmoughTown"/>
@Ryangr0
Ryangr0 / addcert.sh
Last active December 8, 2017 12:41
Adding certification for Google Chrome's decision to force https for .dev domains made a little bit easier
#!/usr/bin/env bash
# Has to be an environment variable to properly execute the openssl command
export KEY_ALTNAMES="something"
if [ "$(uname)" == "Darwin" ]; then # OSX
echo "continuing"
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
echo "Not tested on linux systems"
exit
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then