This file contains 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 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 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 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 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 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 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
create KEYSPACE spark_demo WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'}; | |
create table spark_demo.raw_files (filename text,line int, contents text, PRIMARY KEY(filename,line)); | |
create table spark_demo.users (id int PRIMARY KEY ); | |
create table spark_demo.movies (id int PRIMARY KEY, name text, year int); | |
create table spark_demo.ratings (id int PRIMARY KEY, user_id int, movie_id int, rating float ); |
This file contains 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 on AWS Example | |
# Brian Cantoni | |
# This sample sets up 1 VM ('delta') with only Java installed. | |
# Adjustable settings | |
CFG_TZ = "US/Pacific" # timezone, like US/Pacific, US/Eastern, UTC, Europe/Warsaw, etc. |
This file contains 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 : | |
# test setting a guest environment variable based on a host environment variable | |
# if FOO_BAR is set locally, create command to add it to .profile in the guest | |
env_var_cmd = "" | |
if ENV['FOO_BAR'] | |
value = ENV['FOO_BAR'] | |
env_var_cmd = <<CMD |
This file contains 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
--- ImportExport.pm.bak 2014-04-01 12:45:00.873266322 -0400 | |
+++ ImportExport.pm 2014-04-01 17:35:53.995130625 -0400 | |
@@ -483,15 +483,14 @@ | |
$tmpl->text(<<'TEXT'); | |
AUTHOR: <$MTEntryAuthor strip_linefeeds="1"$> | |
TITLE: <$MTEntryTitle strip_linefeeds="1"$> | |
-BASENAME: <$MTEntryBasename$> | |
+BASENAME: <mt:IfNonEmpty tag="EntryKeywords"><$MTEntryKeywords$><mt:Else><$MTEntryTitle dirify="1"></mt:IfNonEmpty> | |
STATUS: <$MTEntryStatus strip_linefeeds="1"$> | |
ALLOW COMMENTS: <$MTEntryFlag flag="allow_comments"$> |
NewerOlder