BeeFree.io's documentation reference: https://help.beefree.io/hc/en-us/articles/212522605-Configuring-your-own-AWS-S3-bucket-to-work-with-BEE-Plugin
This will add security and limit the impact in case keys are leaked.
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"cloudformation:CreateStack", | |
"cloudformation:UpdateStack", | |
"cloudformation:DescribeStacks", | |
"cloudformation:ListStacks", |
// Jeremie Miserez <[email protected]>, 2016 | |
// | |
// A little bit of Javascript to let you export your Google Music library, playlists, and album track lists :) | |
// | |
// I posted this as an answer here: http://webapps.stackexchange.com/questions/50311/print-playlist-from-google-play-music | |
// | |
// 1. Go to: https://play.google.com/music/listen#/all (or your playlist) | |
// | |
// 2. Open a developer console (F12 for Chrome). Paste | |
// code below into the console. |
BeeFree.io's documentation reference: https://help.beefree.io/hc/en-us/articles/212522605-Configuring-your-own-AWS-S3-bucket-to-work-with-BEE-Plugin
This will add security and limit the impact in case keys are leaked.
AWSTemplateFormatVersion: '2010-09-09' | |
Description: Cognito Stack | |
Parameters: | |
AuthName: | |
Type: String | |
Description: Unique Auth Name for Cognito Resources | |
Resources: | |
# Creates a role that allows Cognito to send SNS messages |
CHAMBER_VERSION="2.1.0" | |
CHAMBER_URL="https://github.com/segmentio/chamber/releases/download/v${CHAMBER_VERSION}/chamber-v${CHAMBER_VERSION}-linux-amd64" | |
if [ ! -f "/usr/local/bin/chamber" ]; then | |
echo "Downloading chamber from $CHAMBER_URL" | |
curl -L $CHAMBER_URL -o /usr/local/bin/chamber | |
chmod +x /usr/local/bin/chamber | |
fi |
# Found at https://superuser.com/questions/1002080/how-to-get-csvkit-to-recognise-long-ascii-lines | |
awk '/[^\x00-\x7F]/{ print NR ":", $0 }' data.csv | less |
# remap prefix to Control + a | |
unbind C-b | |
set -g prefix C-a | |
#bind C-a send-prefix | |
bind-key a send-prefix | |
# force a reload of the config file | |
unbind r | |
bind r source-file ~/.tmux.conf |