This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/python | |
""" | |
Convert podcast OPML file into Markdown format suitable for blog posting | |
Brian Cantoni | |
""" | |
import opml | |
import codecs | |
import locale | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.provision "shell", privileged: true, inline: <<-SHELL1 | |
apt-get update | |
apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev git -y | |
SHELL1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" Check web URL and list all redirections """ | |
import argparse | |
import requests | |
import sys | |
import time | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# check internet connectivity status | |
# file 'status' contains last known status (online or offline) | |
# file 'status.log' has an entry every time status changes | |
source ./status | |
echo "last status: $status at $time" | |
if nc -zw1 google.com 443; then | |
echo "online" | |
if [[ "$status" = "online" ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM wordpress:5.2.4-php7.2-apache | |
# replace stock plugins/themes with our own | |
RUN rm -rf /var/www/html/wp-content/{plugins,themes} | |
COPY --chown=www-data:www-data ./src /var/www/html/wp-content |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
''' | |
By just doing a HEAD operation, we can look at the location returned and extract game system and title: | |
$ curl -i --head "https://www.pricecharting.com/search-products?type=videogames&q=096427015055" | |
HTTP/2 307 | |
content-type: text/html; charset=utf-8 | |
location: https://www.pricecharting.com/game/nintendo-ds/cooking-mama-2-dinner-with-friends?q=096427015055 | |
x-appengine-log-flush-count: 0 | |
x-cloud-trace-context: 95201b263e270f913954a519333070f4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
##################################################################### | |
# fetched from original location: https://www.twilio.com/labs/bash/sms | |
##################################################################### | |
# | |
# Copyright (c) 2010 Twilio, Inc. | |
# | |
# Permission is hereby granted, free of charge, to any person | |
# obtaining a copy of this software and associated documentation | |
# files (the "Software"), to deal in the Software without |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import sys | |
import re | |
from datetime import datetime | |
import argparse | |
def get_github_issue(issue_url): | |
# Extract owner, repo, and issue number from URL | |
pattern = r"https://github\.com/([^/]+)/([^/]+)/issues/(\d+)" |
OlderNewer