Skip to content

Instantly share code, notes, and snippets.

View IMHOSUNG's full-sized avatar
🏠
Working from home

임호성 IMHOSUNG

🏠
Working from home
View GitHub Profile
@IMHOSUNG
IMHOSUNG / loop_over_lists.md
Created September 16, 2022 05:43 — forked from carlessanagustin/loop_over_lists.md
ANSIBLE: Loop over 2 lists
  • playbook test.yml
---
- hosts: localhost
  gather_facts: no
  connection: local

  vars:
    type: st1
@IMHOSUNG
IMHOSUNG / README.md
Created March 13, 2022 14:32
Build a custom Windows AMI on AWS using Packer

Windows AWS Packer example

An example of building a Windows Server 2019 AMI on AWS with Packer. The AMI will include Firefox, Putty, VSCode and extensions.

This is heavily based on the AWS Windows examples from https://www.packer.io/docs/builders/amazon/ebs

  1. Configure your environment with some AWS credentials
  2. Run packer build custom-windows.pkr.hcl
@IMHOSUNG
IMHOSUNG / change_docker_default_subnet.sh
Last active February 18, 2022 02:02 — forked from kamermans/configure_docker0.sh
Change the IP subnet of Docker's default subnet interface
#!/bin/bash
if [ $# -lt 1 ]; then
echo "Usage: sudo ./change_docker_default_subnet.sh <ip/CIDR>"
echo " examples: "
echo " ./change_docker_default_subnet.sh 10.200.0.57/16"
echo " ./change_docker_default_subnet.sh 172.31.0.21/16"
echo " ./change_docker_default_subnet.sh 192.168.254.1/24"
echo " "
echo " NOTE: You should stop Docker before running this script."
🌞 Morning 0 commits ░░░░░░░░░░░░░░░░░░░░░ 0.0%
🌆 Daytime 1 commits ▍░░░░░░░░░░░░░░░░░░░░ 1.9%
🌃 Evening 35 commits ██████████████▏░░░░░░ 67.3%
🌙 Night 16 commits ██████▍░░░░░░░░░░░░░░ 30.8%
@IMHOSUNG
IMHOSUNG / TensorFlow 시작하기.md
Created April 12, 2019 06:25 — forked from haje01/TensorFlow 시작하기.md
TensorFlow 시작하기

텐서플로우 시작하기

글쓴이: 김정주(haje01@gmail.com)

이 문서는 텐서플로우 공식 페이지 내용을 바탕으로 만들어졌습니다.


소개

텐서플로우(TensorFlow)는 기계 학습과 딥러닝을 위해 구글에서 만든 오픈소스 라이브러리입니다. 데이터 플로우 그래프(Data Flow Graph) 방식을 사용하였습니다.