The Reference API allows you to easily access a list of supported Countries, States, TimeZones and Currencies.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ENV['VBOX_INSTALL_PATH'] = ENV['VBOX_MSI_INSTALL_PATH'] | |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| $aws_pem = <<SCRIPT | |
| chmod 400 /home/vagrant/.ssh/uofmeme64.pem | |
| chmod 755 /home/vagrant/step_1.sh | |
| chmod 755 /home/vagrant/step_2.sh | |
| chmod 755 /home/vagrant/cleanup.sh | |
| SCRIPT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Switch to root user | |
| sudo -s | |
| # Update password: | |
| passwd # Enter new password and confirm by repeating it | |
| # Switch back to listed user (e.g. tom) | |
| su tom |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Save this file as ~/.ssh/config | |
| # SSH into AWS instance using the following command: | |
| # ssh -i ~/.ssh/memedev.pem uofmeme | |
| Host uofmeme | |
| HostName 13.58.40.19 | |
| User ubuntu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm step_*.sh | |
| rm cleanup.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ cat ~/.ssh/id_rsa.pub | ssh remote-user@hostname 'cat >> ~/.ssh/authorized_keys' |
Standard Notes is an application which allows end-to-end encrypted notes. These notes are synchronized through their servers to ensure that you can have your notes on each and all of your devices.
The draw of Standard Notes for me was the end-to-end encryption. No one besides me can see the contents of my notes. It is an open source application that has been well vetted for security, and user privacy.
A feature they provide is software-based 2FA solution. As someone who has used
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Usage: python keepassxc_to_protonpass_import.py | |
| # | |
| # Description: This script converts a KeePassXC CSV export to a ProtonPass | |
| # Generic CSV import. | |
| # | |
| # The script assumes that the KeePassXC CSV file has the following headers: | |
| # Group, Title, Username, Password, URL, Notes, TOTP, Icon, Last Modified, Created | |
| # | |
| # The script assumes that the ProtonPass CSV file has the following headers: | |
| # name, url, email, username, password, note, totp, vault |