Skip to content

Instantly share code, notes, and snippets.

View serithemage's full-sized avatar
๐Ÿ 
Working from home

Jung Do Hyun serithemage

๐Ÿ 
Working from home
View GitHub Profile
@serithemage
serithemage / pycaret.ipynb
Last active September 8, 2024 03:30
PyCaretํŠœํ† ๋ฆฌ์–ผ-ํšŒ๊ท€.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@serithemage
serithemage / DevelopingServerlessSolutionsOnAWS.md
Created October 12, 2021 22:42
AWS์—์„œ ์„œ๋ฒ„๋ฆฌ์Šค ์†”๋ฃจ์…˜ ๊ฐœ๋ฐœํ•˜๊ธฐ
@serithemage
serithemage / ec2_auto_stop.py
Last active June 1, 2021 01:13
Finds ec2 of all regions and stops instances where the tag AutoStopProtect is not set to True.
import boto3
import logging
# setup simple logging for INFO
logger = logging.getLogger()
logger.setLevel(logging.INFO)
client = boto3.client('ec2')
runningInstanceFilter = [
cd ~/
sudo yum install ruby -y
sudo amazon-linux-extras install epel -y > /dev/null 2>&1
sudo yum install figlet -y
echo "ruby version"
ruby --version
if [ -f ~/master.zip ]
then
echo "lolcat master.zip already download"
@serithemage
serithemage / aws-tnc-introduce.md
Last active January 30, 2025 15:30
AWS ํŠธ๋ ˆ์ด๋‹ ๋ฐ ์ž๊ฒฉ์ฆ ์†Œ๊ฐœ

AWS ํŠธ๋ ˆ์ด๋‹ ๋ฐ ์ž๊ฒฉ์ฆ ์†Œ๊ฐœ(http://bit.ly/aws-tnc-intro)

AWS ํ•™์Šต ๋งํฌ์ง‘ ์‹œ๋ฆฌ์ฆˆ

  • AWS ํŠธ๋ ˆ์ด๋‹ ๋ฐ ์ž๊ฒฉ์ฆ ์†Œ๊ฐœ http://bit.ly/aws-tnc-intro
  • AWS ํ•™์Šต ์ž๋ฃŒ์ง‘ http://bit.ly/aws-study-resource
  • AWS ๊ณต์ธ ์†”๋ฃจ์…˜์Šค ์•„ํ‚คํ…ํŠธ - ์–ด์†Œ์‹œ์—์ดํŠธ ์ˆ˜ํ—˜ ๊ฐ€์ด๋“œ http://bit.ly/sacertguide
  • AWS ๊ณต์ธ ๊ฐœ๋ฐœ์ž - ์–ด์†Œ์‹œ์—์ดํŠธ ์ˆ˜ํ—˜ ๊ฐ€์ด๋“œ http://bit.ly/devcertguide
  • AWS ๋ณด์•ˆ ๊ด€๋ จ ์ปจํ…์ธ  ๋ชจ์Œ์ง‘ http://bit.ly/secontents
  • AWS ๊ธฐ๋ฐ˜ ๋น…๋ฐ์ดํ„ฐ ํ•™์Šต์ž๋ฃŒ์ง‘ http://bit.ly/bdonaws
  • AWS ๋”ฅ๋Ÿฌ๋‹ ํ•™์Šต ์ž๋ฃŒ ๋ชจ์Œ์ง‘ http://bit.ly/dlonaws
@serithemage
serithemage / instance-types.sh
Last active June 2, 2023 18:41 — forked from trestletech/instance-types.sh
Get all EC2 Instance Types in All Availability Zones
#!/bin/bash
# Getting list of Availability Zones from target region
# all
#target_regions=$(aws ec2 describe-regions --output text --query 'Regions[*].[RegionName]' | sort)
# default region
target_regions=$(aws configure get region)
@serithemage
serithemage / setup-for-d2l.ipynb
Last active November 18, 2019 01:52
Setup for D2L.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@serithemage
serithemage / konlpy+mecab_install_to_amazon_linux2.sh
Last active November 5, 2019 22:15
konlpy์™€ mecab์„ amazon linux2์— ์ธ์Šคํ†จํ•˜๋Š” ์Šคํฌ๋ฆฝํŠธ์ž…๋‹ˆ๋‹ค
#!/bin/bash
sudo amazon-linux-extras install epel
sudo yum install -y https://packages.groonga.org/centos/groonga-release-latest.noarch.rpm
sudo yum install -y -enablerepo=epel groonga
sudo yum install -y gcc-c++ java-1.8.0-openjdk-devel python-devel python3-devel fontconfig fontconfig-devel libstdc++
sudo yum install mecab mecab-devel mecab-ipadic git make curl xz patch
sudo pip3 install konlpy
@serithemage
serithemage / apache-mxnet-gluon-on-colab.ipynb
Created September 29, 2019 00:05
Apache MXNet/gluon on Colab.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.