Skip to content

Instantly share code, notes, and snippets.

@sergeyklay
sergeyklay / journalctl-cheatsheet.md
Last active November 26, 2025 07:34
Journalctl Cheat Sheet

Journalctl Cheat Sheet

Configuration

Permissions

To see messages from other users and the system as well as performing various log operations from a regular user add it to the group:

sudo usermod -aG systemd-journal $USER
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active November 27, 2025 06:26
Conventional Commits Cheatsheet
@fnky
fnky / ANSI.md
Last active November 27, 2025 07:37
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@johanmeiring
johanmeiring / build-vms.sh
Created February 9, 2015 06:15
VirtualBox Ubuntu VM creation from command line
#!/bin/bash
# Example file line:
# VM name,Group,MAC Address,RAM,Procs,HDD,VRDP port
# sf-mc-01,Group,080027EF99DD,512,1,6000,9007
if [[ ! -e $1 ]]; then
echo "File $1 not found."
exit 1
fi
@dmitshur
dmitshur / gist:6927554
Last active December 29, 2024 12:06
[Legacy GOPATH mode] How to `go get` private repos using SSH key auth instead of password auth.