Skip to content

Instantly share code, notes, and snippets.

@junkor-1011
junkor-1011 / README.md
Last active December 7, 2020 15:13
install vagrant
@junkor-1011
junkor-1011 / README.md
Created December 8, 2020 12:50
install neovim(Linux64)
@junkor-1011
junkor-1011 / install.sh
Last active December 8, 2020 15:10
install anyenv
#!/usr/bin/env bash
# get script path
SCRIPT_DIR=$(cd $(dirname $0); pwd)
cd $SCRIPT_DIR
# Clone anyenv
if [ ! -d ${HOME}/.anyenv ]; then
git clone https://github.com/anyenv/anyenv ${HOME}/.anyenv
else
@junkor-1011
junkor-1011 / README.md
Last active December 11, 2020 15:56
install hobebrew on linux

install homebrew on linux

install path: $HOME/.linuxbrew

USAGE

bash -c "$(curl -fsSl https://gist.githubusercontent.com/junkor-1011/5e28a9a7a357e1f1fa47e12471f7f8ef/raw/5f5c0500f446eb6117d8620cef049e4da9dfc323/install.sh)"
@junkor-1011
junkor-1011 / config
Created January 7, 2021 14:54
ssh-config example
# put $HOME/.ssh/config & chmod 600
ServerAliveInterval 60
# ADD & EDIT BELOW:
Host ec2-ubuntu-dev
HostName ec2-XX-XX-XX-XX.ap-northeast-1.compute.amazonaws.com
User ubuntu
Port 22
IdentityFile ~/.ssh/key_terraform
#!/bin/sh
od -A n -t x1 -v $1
@junkor-1011
junkor-1011 / .eslintrc.js
Last active March 7, 2021 12:11
typescript project(node-general)
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json'
},
plugins: [
'@typescript-eslint'
],
extends: [