Skip to content

Instantly share code, notes, and snippets.

View Nelsonochoam's full-sized avatar

Nelson Ochoa Nelsonochoam

View GitHub Profile
@Nelsonochoam
Nelsonochoam / aws.md
Last active October 6, 2022 21:02 — forked from colinvh/aws.md
AWS Region Names
@slawekzachcial
slawekzachcial / aws-sigv4-ssm-get-parameter.sh
Last active March 26, 2025 03:45
Using CURL to call AWS ReST API, signing request with v4 signature
#!/bin/bash
# Source: https://docs.aws.amazon.com/general/latest/gr/sigv4-signed-request-examples.html
[[ -n "${AWS_ACCESS_KEY_ID}" ]] || { echo "AWS_ACCESS_KEY_ID required" >&2; exit 1; }
[[ -n "${AWS_SECRET_ACCESS_KEY}" ]] || { echo "AWS_SECRET_ACCESS_KEY required" >&2; exit 1; }
readonly parameterName="SlawekTestParam"
readonly method="POST"
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active April 16, 2025 19:00
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname