To sneak past the STLToday paywall you need to do the following (I'm assuming you're using Google Chrome, but the same basics will work on any PC browser.)
-
Go to STLToday.com
-
Create a bookmark of that page.
-
Edit the bookmark.
| #!/usr/bin/env bash | |
| INPUT=$1 | |
| INPUT_FILE="${INPUT%.*}" | |
| TIMES=$2 | |
| IFS=',' read -ra start_times <<< "$TIMES" | |
| idx=0 | |
| ffmpeg -i $INPUT \ |
| #!/bin/bash | |
| # A script that wraps the aws-cli to automate the auditing of EC2 security groups | |
| # Requires: https://aws.amazon.com/cli/ and https://stedolan.github.io/jq/ | |
| if [ -z $(which aws) ]; then | |
| echo "ERROR: The aws-cli command is not installed or not in your path." | |
| exit 1 | |
| fi |
| function ytChannelId(channelName) { | |
| if(channelName) { | |
| var name = getChannelFromUrl(channelName); | |
| var url = "https://gdata.youtube.com/feeds/api/users/" + name + "?fields=id&alt=json"; | |
| var result = UrlFetchApp.fetch(url); | |
| var data = Utilities.jsonParse(result.getContentText()) | |
| if(typeof data['entry'] !== 'undefined' && data['entry']['id']['$t'] !== 'undefined') { | |
| var id = "UC" + data['entry']['id']['$t'].split('/').pop(); | |
| #!/bin/bash | |
| HOSTSFILE="/etc/hosts" | |
| BAKFILE="$HOSTSFILE.bak" | |
| DOMAINREGEX="^[a-zA-Z0-9]{1}[a-zA-Z0-9\.\-]+$" | |
| IPREGEX="^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$" | |
| URLREGEX="^https?:\/\/[a-zA-Z0-9]{1}[a-zA-Z0-9\/\.\-]+$" | |
| backup() | |
| { |
| (require '[api.service.tools :as csv]) | |
| (require '[pipeline.youtube.api :as api]) | |
| (require '[api.channel :as c]) | |
| (require '[api.cms :as cms]) | |
| (defn foobar | |
| [infile outfile country] | |
| (->> (slurp infile) | |
| (csv/csv-to-map) | |
| (map #(assoc % :cms-name (->> (c/get :id (:id %) :fields [:cms]) | |
| :cms |
| include ../_global/wordpress.mk | |
| wpconfig: | |
| @./wp core config --dbname=example_site --dbuser=root --dbpass=root --path=./wordpress --skip-check; | |
| theme: | |
| @echo "Theme file found." | |
| @unzip theme.zip -d wordpress/wp-content/themes |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # ./record.sh 192.168.77.51:8051 xxxxxx yyyyyy > /dev/null 2>&1 | |
| # Check input. | |
| if [ -z "$1" ]; then | |
| echo "Missing camera hostname." | |
| exit 1 | |
| fi |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dcterms="http://purl.org/dc/terms/" version="2.0"> | |
| <channel> | |
| <title>[LOL] DmPranksProductions from 20160601</title> | |
| <description></description> | |
| <link>http://www.spotify.com/</link> | |
| <itunes:author>Studio71</itunes:author> | |
| <itunes:images href="http://studio71-mrss-videos-baconlettucetomato.s3.amazonaws.com/studio71_square.tif"></itunes:images> | |
| <item> | |
| <guid isPermaLink="false">spf_-vfqSkrfhlw</guid> |