I hereby claim:
- I am kennystier61 on github.
- I am mtdev (https://keybase.io/mtdev) on keybase.
- I have a public key ASCLXDxf57cfhoEk4ZVhWetUZyY9mBBft1sGGXdzj-vmOAo
To claim this, I am signing this object:
#!/bin/bash | |
# SD JB RSS Feed URL | |
oldfeedurl="http://feeds.feedburner.com/linuxunvid.xml" | |
oldfeedname="sdfeed.xml" | |
newfeedname="hdfeed.xml" | |
# Download a JB Podcast | |
wget -O $oldfeedname $oldfeedurl | |
# Remove the string "-432p" from the video URLs (the HD URLs doesn't have that string) |
wget $(apt-get install --reinstall --print-uris -qq $1 | cut -d"'" -f2) |
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:97b0fc4286a315eef776fd00f2f94d4f45fafe62] |
#!/bin/bash | |
# Twitter PWS Status Bot | |
# Author: Kenny Stier <[email protected]> | |
# | |
# Gathers Personal Weather Station data from Weather Underground | |
# and sends tweets throughout the day | |
# Twitter Credentials | |
username="user" | |
password="password" |
#!/bin/bash | |
# | |
# Written by Kenny Stier for Trenta.io | |
# | |
# Rainier Automatic Raster Resizer (RARR) | |
# Copyright (C) 2017 Trenta.io | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# TODO: replace your-hostname-here.com | |
server="your-hostname-here.com" | |
if [ $# -lt 1 ] ; then | |
echo "usage: rwget URL" | |
exit 1 | |
fi |
#!/bin/bash | |
ls dafang/*/*/*.jpg | sed "s/^/file '/;s/$/'/" > files.txt | |
ffmpeg -r 45 -f concat -i files.txt -s hd720 -vcodec libx264 timelapse_$(date +%F).mp4 |