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.
#!/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 |
(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 |
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> |
package main | |
import ( | |
"log" | |
"net/http" | |
"regexp" | |
"strings" | |
"time" | |
"github.com/PuerkitoBio/gocrawl" |
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 |
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"errors" | |
"io/ioutil" | |
"net/http" | |
"strings" | |
) |