Skip to content

Instantly share code, notes, and snippets.

View pistazie's full-sized avatar

Tom Roshko pistazie

View GitHub Profile
@pistazie
pistazie / buildspec.yml
Created August 3, 2021 19:04
Adds emoji support to AWS CodeBuild - made our Cypress.js (run in Electron browser) test logs contain missing Emojis
version: 0.2
phases:
pre_build:
commands:
- yum install google-noto-emoji-color-fonts -y
@pistazie
pistazie / gist:8671c2fb83800113469b319980d451b9
Created April 7, 2020 13:55
Amazon Linux 2 EC2 User Data Initial shell script to change the SSH port the instance listens on
#!/bin/bash -ex
sed -i 's/#Port\s22/Port 8732/' /etc/ssh/sshd_config
systemctl restart sshd.service