Skip to content

Instantly share code, notes, and snippets.

View oversize's full-sized avatar
🍡
i find your lack of tea disturbing

Manuel Schmidt oversize

🍡
i find your lack of tea disturbing
View GitHub Profile
@oversize
oversize / gist:90cd429d256eb02f0dceaef327a5f122
Created August 28, 2025 11:46 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
#!/bin/bash
# SPDX-License-Identifier: MIT
## Copyright (C) 2009 Przemyslaw Pawelczyk <przemoc@gmail.com>
##
## This script is licensed under the terms of the MIT license.
## https://opensource.org/licenses/MIT
#
# Lockable script boilerplate
@oversize
oversize / gpg cheat sheet.md
Last active December 4, 2021 12:15 — forked from SansGuidon/gpg cheat sheet.md
GPG Cheat Sheet

Basics

Generating a key

Interactive

gpg --gen-key or gpg --generate-key generates a new key using default parameters (e.f.: for encryption used) Also creates revocation certificates in ~/.gnupg/openpgp-revocs.d/[ID].rev

generate key in batch mode using a custom profile

@oversize
oversize / postgres-cheatsheet.md
Created April 18, 2019 11:40 — forked from Kartones/postgres-cheatsheet.md
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)