How to use:
./wordle.sh
Or try the unlimit mode:
This is free and unencumbered software released into the public domain. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled | |
binary, for any purpose, commercial or non-commercial, and by any | |
means. | |
In jurisdictions that recognize copyright laws, the author or authors | |
of this software dedicate any and all copyright interest in the | |
software to the public domain. We make this dedication for the benefit |
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.
This script downloads an RSS feed, assembles it's latest entry into a nice HTML file, downloads all of the assets required, generates a Kindle .mobi book with Amazon's official tool, sends me a Pushbullet notification that it worked, and uploads the .mobi book to my Dropbox.
If you wanted, you could then have a tool like this upload it to your Kindle wirelessly.
parse.sh
and dropbox_uploader.sh
to your working directory that you'd like the script to livechmod +x parsh.sh dropbox_uploader.sh
# create an account, create an app | |
# @see https://apps.twitter.com/ | |
# retrieve the access tokens | |
# @see https://dev.twitter.com/oauth/reference/post/oauth2/token | |
# create the file ~/twitter_api | |
nano ~/twitter_api | |
Authorization: OAuth oauth_consumer_key="XXXXXX", oauth_nonce="11111111", oauth_signature="XXXXXX", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1450728725", oauth_token="99999-XXXXXX", oauth_version="1.0" |
#/usr/local/settings/PlayMusic.settings | |
mplayer #first line should be player | |
http://ccmixter.org/view/media/samples/mixed | |
http://ccmixter.org/view/media/remix | |
http://mp3.com/top-downloads/genre/jazz/ | |
http://mp3.com/top-downloads/ | |
http://mp3.com/top-downloads/genre/rock/ | |
http://ccmixter.org/view/media/playlists | |
#-------- i think only downloads work with these sites, no streaming ----- | |
http://www.last.fm/music/+free-music-downloads |
NOTE: This guide has moved to https://github.com/bpierre/switch-to-vim-for-good
This guide is coming from an email I used to send to newcomers to Vim. It is not intended to be a complete guide, it is about how I switched myself.
My decision to switch to Vim has been made a long time ago. Coming from TextMate 1, I wanted to learn an editor that is Open Source (so I don’t lose my time learning a tool that can be killed), cross platform (so I can use it everywhere), and powerful enough (so I won’t regret TextMate). For these reasons, Vim has always been the editor I wanted to learn, but it took me several years before I did it in a way that works for me. I tried to switch progressively, using the Janus Vim distribution for a few months, then got back to using TextMate 2 for a time, waiting for the next attempt… here is what finally worked for me.
Original gist with comments: https://gist.github.com/bpierre/0a0025d348b6001394e0
/* | |
1st 3 rounds of the NFL 2015 Draft | |
Collected by: https://www.khanacademy.org/profile/BobbyandKaren/ | |
*/ | |
CREATE TABLE picks( | |
id INTEGER PRIMARY KEY, | |
pick_number INTEGER, | |
name TEXT, | |
college TEXT, |
/* Friendly Card Game Results: | |
During this past winter, a few friends got together every Wednesday night for a friendly game of cards. On some nights they'd play two games, but never the same game twice on the same night. The usual players were Spunky Sam, Marcimus, Winston, and Hopper. Sometimes, one of the friends couldn't make it, so there were only three players. But sometimes they'd call another friend to fill-in. In every game they played, the one with the hightest score was declared the winner. These are their results: | |
Created by: https://www.khanacademy.org/profile/brianduckworth | |
*/ | |
CREATE TABLE card_games(id INTEGER PRIMARY KEY AUTOINCREMENT, | |
date_played TEXT, | |
game_name TEXT, | |
player_name TEXT, | |
score INTEGER); |
/* | |
Winston's Donut logs | |
This table of logs shows how many donuts Winston eats at each year of his life, | |
plus any particular reason to explain his eating habits. | |
Collected by: https://www.khanacademy.org/profile/mhogwarts/ | |
*/ | |
CREATE TABLE winstons_donut_logs ( | |
id TEXT PRIMARY KEY, | |
status TEXT, | |
years_old INTEGER, |