Skip to content

Instantly share code, notes, and snippets.

View your-local-developer's full-sized avatar
🦕
Don’t beelive the hype 🐝

Jan your-local-developer

🦕
Don’t beelive the hype 🐝
View GitHub Profile
@thinkjrs
thinkjrs / gpg-gitpod-setup.md
Last active January 2, 2023 12:18
GPG Gitpod Setup

Adding GPG keys to Gitpod

It's actually fairly straightforward to add GPG keys to Gitpod. Do note that this is halfway secure, in that someone (Gitpod) does have access to your key, regardless of what you do. See the issues below for more on this topic.

⚠️ DO NOT upload your normal signing key that you care about. Create a new one. ⚠️

These security warnings are in no way meant to suggest that the folks at Gitpod are untrustworth; in this author's opinion, quite the opposite. They're merely meant to highlight actual security in the limit.

@aamnah
aamnah / install-apps.sh
Last active June 24, 2023 13:14
Bash script to install packages [Git, s3cmd] on a new system. For Debian and Ubuntu. To run, copy the script to the server and run ``bash install-apps.sh``
#!/bin/bash/
#######################################
# Bash script to install apps on a new system (Ubuntu)
# Written by @AamnahAkram from http://aamnah.com
#######################################
## Update packages and Upgrade system
sudo apt-get update -y
## Git ##