How to use:
./wordle.sh
Or try the unlimit mode:
Inspired by the following exchange on Twitter, in which someone captures and posts a valuable video onto Twitter, but doesn't have the resources to easily transcribe it for the hearing-impaired, I thought it'd be fun to try out Amazon's AWS Transcribe service to help with this problem, and to see if I could do it all from the bash command-line like a Unix dork.
The instructions and code below show how to use command-line tools/scripting and Amazon's Transcribe service to transcribe the audio from online video. tl;dr: AWS Transcribe is a pretty amaz
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
# Build Russell 3000 List | |
# Import libraries | |
import urllib.request | |
import datetime | |
# Download Russell 3000 to local repository | |
f_path = "/Russell3000/Membership Lists/" | |
f_name = f_path + "Russell3000 " + datetime.date.today().strftime("(%b %d, %Y)") + ".pdf" | |
def download_file(url): |
Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.
And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.
If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.
Set the environment variables
Install nano(or not if you intend to use vi)
yum install -y nano
Open ~/.profile
with nano ~/.profile
and add the following:
##### Replace 'example' anywhere with the name of your app and '*ec2ip*' with your ec2 instance ip | |
##### Set up your instance and make sure it's security group has ssh, http, and https open inbound and outbound | |
##### Don't forget to chmod 400 cert.pem | |
##### .deliver/config | |
APP="example" | |
BUILD_HOST="*ec2ip*" | |
BUILD_USER="elixir_builder" | |
BUILD_AT="/home/$BUILD_USER/edeliver/$APP/builds" |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)