- Signal Private Messenger
- End-to-end encrypted open-source messaging app for desktop, Android, and iOS.
- DuckDuckGo
- Easy-to-use, non-tracking search engine that (for the most part) holds its own against the likes of Google in terms of search performace.
- See deGoogle.md for alternatives to other Google services.
- Tor Browser
- The Onion Router: long considered the gold standard of internet privacy solutions. Routes you through an overlay network consisting of more than seven thousand relay nodes around the world to anonymize your traffic.
- TAILS OS
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| ####################################################### | |
| # | |
| # Thermal camera display for AMG8833 IR camera | |
| # | |
| # by Caden Gobat | |
| # PHYS 2152 | The George Washington University | |
| # | |
| ####################################################### | |
| import time, sys |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import os, sys, platform | |
| import subprocess | |
| CSPICE_dir = "/absolute/path/to/cspice/" | |
| __doc__ = """ | |
| SPICE executables, made available from within Python. | |
| Available executables: | |
| """ + "\n".join([os.path.splitext(exe)[0] for exe in os.listdir(os.path.join(CSPICE_dir,"exe"))]) + """ | |
| """ |