Skip to content

Instantly share code, notes, and snippets.

View voyagerwoo's full-sized avatar
😌
🌴

voyagerwoo voyagerwoo

😌
🌴
View GitHub Profile
@serithemage
serithemage / softbank20181Q.md
Last active May 13, 2021 06:14
μ†Œν”„νŠΈλ±…ν¬ 2018λ…„3μ›” 1λΆ„κΈ° κ²°μ‚°μ„€λͺ…νšŒ μš”μ•½ λ²ˆμ—­

이 글은 μ†Œν”„νŠΈλ±…ν¬ 2018λ…„3μ›” 1λΆ„κΈ° κ²°μ‚°μ„€λͺ…νšŒμ—μ„œ μ†μ •μ˜ 회μž₯의 λ°œμ–Έλ§Œμ„ μš”μ•½/λ²ˆμ—­ν•œ 것 μž…λ‹ˆλ‹€. λ™μ˜μƒμ€ μ•„λž˜ λ§ν¬μ—μ„œ 보싀 수 μžˆμŠ΅λ‹ˆλ‹€.

인사말 λ²ˆμ—­(μ˜μƒμ˜ 1λΆ„45μ΄ˆλΆ€ν„°)

μ†μ •μ˜ μž…λ‹ˆλ‹€. 잘 뢀탁 λ“œλ¦½λ‹ˆλ‹€.

졜근 μ ˆμ‹€νžˆ 느끼고 μžˆμŠ΅λ‹ˆλ‹€λ§Œ 뭐든지 λ‹¨κΈ°κ°„λ§Œ λ΄μ„œλŠ” μ•ˆλœλ‹€λŠ” 생각이 λ“­λ‹ˆλ‹€.

@serithemage
serithemage / AWSSecurityContents.md
Last active July 24, 2025 04:30
AWS λ³΄μ•ˆ κ΄€λ ¨ 자료 λͺ¨μŒμ§‘

AWS ν•™μŠ΅ 링크집 μ‹œλ¦¬μ¦ˆ

@serithemage
serithemage / AWSCertifiedDeveloperUnofficialStudyGuide.md
Last active December 11, 2025 14:15
AWS 곡인 개발자 - μ–΄μ†Œμ‹œμ—μ΄νŠΈ μˆ˜ν—˜ κ°€μ΄λ“œ

AWS ν•™μŠ΅ 링크집 μ‹œλ¦¬μ¦ˆ


AWS 곡인 개발자 - μ–΄μ†Œμ‹œμ—μ΄νŠΈ μˆ˜ν—˜ κ°€μ΄λ“œ(http://bit.ly/devcertguide)

@brianz
brianz / install-docker.sh
Last active July 7, 2023 07:32
Install docker on Amazon Linux
#!/bin/bash
#
# steps taken verbatim from:
# http://docs.aws.amazon.com/AmazonECS/latest/developerguide/docker-basics.html#install_docker
#
sudo yum update -y
sudo yum install -y docker
sudo service docker start
sudo usermod -a -G docker ec2-user
# log out and log in to pickup the added group
@rxaviers
rxaviers / gist:7360908
Last active March 20, 2026 18:16
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:
@nhoffman
nhoffman / pyscript.py
Last active September 8, 2025 11:00
Python script template
#!/usr/bin/env -S uv run --script --quiet
# /// script
# requires-python = ">=3.13"
# dependencies = []
# ///
"""A simple python script template.
"""