Install the OpenSSL on Debian based systems
sudo apt-get install openssl
This is cobbled together and extended from https://github.com/zchee/deoplete-jedi/wiki/Setting-up-Python-for-Neovim
Neovim requires a package to be installed for Python plugins to work. You
really should read :h nvim-python
to supplement the info on this page.
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.
#!/usr/bin/env python3 | |
import pathlib | |
import sqlite3 | |
if __name__ == "__main__": | |
connection = sqlite3.connect(f"{pathlib.Path.home()}/Library/Messages/chat.db") | |
for (name, size, chat, date) in connection.execute(""" | |
SELECT transfer_name, total_bytes, chat_message_join.chat_id, date | |
FROM message_attachment_join JOIN message ON message_attachment_join.message_id = message.ROWID |