Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ninezero90hy's full-sized avatar
🤼‍♂️
Maybe, I getting exercise every days!

Ninezero ninezero90hy

🤼‍♂️
Maybe, I getting exercise every days!
  • Seoul, Korea
  • 01:51 (UTC -12:00)
View GitHub Profile
@ninezero90hy
ninezero90hy / tmux-cheat-sheet.md
Last active November 14, 2018 04:03 — forked from michaellihs/tmux-cheat-sheet.md
tmux Cheat Sheet
@ninezero90hy
ninezero90hy / java8-default-method.adoc
Created November 17, 2018 05:28 — forked from ihoneymon/java8-default-method.adoc
Java 8 `Predicate` 인터페이스에서 `and`, `or` 그리고 `negate` 메서드를 사용할 수 있는 이유??

함수형 인터페이스인 Predicate<T> 에서 and, or`과 `negate 메서드를 사용할 수 있는 이유

인터페이스 Predicate<T>

자바 8인 액션에서 람다표현식과 관련된 부분을 읽다가

함수형 인터페이스@FunctionalInterface 에는 메서드가 하나만 있어야 한다.

@ninezero90hy
ninezero90hy / .gitMessage
Created November 17, 2018 07:08 — forked from ravinderk/.gitMessage
This is commit template which follows git commit best practices used by angular team :)
#<type>(<scope>): <subject>
#<BLANK LINE>
#<body>
#<BLANK LINE>
#<footer>
@ninezero90hy
ninezero90hy / github.md
Created March 6, 2019 12:28 — forked from dahlbyk/github.md
Mastering GitHub

Mastering GitHub

GitHub is often used as a basic Git host, but its platform has so much more to offer. From simple and powerful issues and pull requests, to advanced features for power users and integrators, it’s a tool worth knowing well in its own right. This session will review everything you need to know to master collaboration with GitHub, from best practices for GitHub Issues and how it represents basic Git concepts, to hidden features and the tools enabling its developer ecosystem.

  • Git Hosting
@ninezero90hy
ninezero90hy / nvm_quick_start.md
Created July 2, 2020 10:05 — forked from falsy/nvm_quick_start.md
NVM(Node Version Manager) 맥OS에서 설치 & 사용하기

NVM(Node Version Manager) Qick Start

맥OS에서 NVM 사용하기

NVM 설치

1. 설치

$ sudo curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
$ create-react-app ${ProjectName}
$ cd ${ProjectName}
$ yarn add husky lint-staged -D
$ npx husky install
{
"devDependencies": {
"husky": "^7.0.2",
"lint-staged": "^11.1.2"
}
}
$ touch .lintstagedrc.json