Skip to content

Instantly share code, notes, and snippets.

View 1eedaegon's full-sized avatar
Need more mocha =]

Gon ⌬ 1eedaegon

Need more mocha =]
  • Anywhere you want
  • 12:41 (UTC +09:00)
View GitHub Profile
@1eedaegon
1eedaegon / install-vmware-player-with-vagrant.ps1
Last active August 4, 2025 13:22
Install vagrant with vmware for windows 11
# 1. Download and install go
https://golang.org/doc/install
# 2. Download and install VMware workstation player
https://www.vmware.com/products/workstation-player.html
# 3. Download and install vagrant
https://www.vagrantup.com/downloads
# 4. Download vagrant vmware utility
@1eedaegon
1eedaegon / hyper-v-vagrant.md
Last active June 29, 2022 06:58
Enable hyper-v on windows 11 home and Use vagrant

How to use vagrant with hyper-v on Windows 11 home

  • Windows 11
  • Hyper-v
  • Vagrant

1. Install & enable hyper-v

Make and execute batch file install-and-enable-hyper-v.bat (Administrator)

@1eedaegon
1eedaegon / bash-keymap.md
Last active October 31, 2021 09:13
Useful bash keymap

Useful bash keymap

Like cheetsheet

1. Move and delete cursor

  • Ctrl + b: move cursor backward
  • Ctrl + f: move cursor forward
  • Ctrl + h: delete character on before cursor
  • Ctrl + d: delete character on current cursor
@1eedaegon
1eedaegon / install.sh
Created November 3, 2021 04:22
npm install specific repository
npm install --registry [ADDRESS] [LIBRRARY]
@1eedaegon
1eedaegon / nodejs-wsl2.md
Last active July 14, 2023 04:48
How to install nodejs on wsl2

How to install node.js on ubuntu

Simplify

1. Remove legacy node.js

# Check legacy node version
> /usr/bin/node -v
v8.10.0

Git branch 전략과 개선

Git이라는 분산 버전관리 저장소를 잘 사용해보자.

Basis

분산 버전관리 시스템(git)

  1. 내 드라이브에 저장된 branch를 origin으로 쉽게 변경 가능
  2. Pull / Push로 상태를 쉽게 바꿀 수 있다.
@1eedaegon
1eedaegon / config.sh
Last active November 27, 2025 06:33
fatal: could not read Username for """ 'https://bitbucket.org', 'https://gitlab.com/', 'https://github.com/', """: terminal prompts disabled
# github, gitlab, bitbucket
git config --global url.ssh://git@github.com/.insteadOf https://github.com/
git config --global url.ssh://git@gitlab.com/.insteadOf https://gitlab.com/
git config --global url.ssh://git@bitbucket.org/.insteadOf https://bitbucket.org/
@1eedaegon
1eedaegon / change-python-version.md
Last active June 6, 2022 11:46
How to change python version on ubuntu 18.04

How to change python version on ubuntu 18.04

  • Use update-alternatives
  • Change python command path

Check python version and path

  1. Check python2 and python3 version
# Python2
> python --version
Python 2.7.17
@1eedaegon
1eedaegon / install-python3.9-on-ubuntu18.04.md
Last active July 1, 2025 08:48
How to install python3.9 on ubuntu18.04

How to install python 3.9 on ubuntu 18.04

  • Install packages
  • Download python3.9
  • Build and install python binaries

Install packages

> sudo apt update
> sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev
@1eedaegon
1eedaegon / setup-black-on-vscode.md
Last active June 7, 2022 14:12
Set up black python formatter on vscode

Setup black python formatter on vscode

First, you remove default formatter setting like:

"editor.defaultFormatter": "esbenp.prettier-vscode" <- REMOVE THIS LINE

And install python like(link):

How to install python3.9

Run vscode and open settings.json