This file contains 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
# "Universal" Makefile | |
# Imani Pelton (@bepri on GitHub) | |
# A plug-n-play Makefile for any medium-scale C/C++ project. Probably not as powerful as CMake, but sufficient if you don't want to use all that. | |
# Uses a target directory with object file outputs to speed up compilation times on multi-file projects | |
# Modify these for your program | |
COMP = g++ | |
COMPFLAGS = -g -Wall -Wpedantic -Werror -D DEBUG | |
PROGNAME = prog |
This file contains 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
#!/usr/bin/env python3 | |
""" | |
INTRO: | |
This is a Python script to log in & retrieve your SSH keys from Bitwarden. It will save your session token to a | |
local file and invalidate that file after a certain timeframe. This script will NOT start your SSH agent for you, | |
but it will expect that your SSH agent is already running and properly configured. If in doubt, run the following | |
command in your shell before this script to start and configure an agent first: `source <(ssh-agent)` | |
USAGE: |