Skip to content

Instantly share code, notes, and snippets.

🌞 Morning 101 commits ███░░░░░░░░░░░░░░░░░░ 14.7%
🌆 Daytime 284 commits ████████▋░░░░░░░░░░░░ 41.3%
🌃 Evening 210 commits ██████▍░░░░░░░░░░░░░░ 30.5%
🌙 Night 93 commits ██▊░░░░░░░░░░░░░░░░░░ 13.5%
@rolroralra
rolroralra / Algebra.md
Created August 25, 2022 01:11
Abstract Algebra

Algebraic Structure

스크린샷 2022-08-25 오전 10 10 03

image

@rolroralra
rolroralra / lambda.md
Last active July 29, 2022 15:14
Lambda, FunctionalInterface

FunctionalInterface (Java 8)

Functional Interface Function Descriptor Specific Interface
Predicate T -> boolean IntPredicate
LongPredicate
DoublePredicate
Consumer T -> void
@rolroralra
rolroralra / HATEOAS.md
Last active August 17, 2022 08:31
HATEOAS
@rolroralra
rolroralra / Stream.md
Last active September 18, 2022 06:40
Stream (Java)

Intermediate Operation (중간 연산)

Operation Stateless Style Return Type Parameter Function Descriptor Description
filter Filtering Stream<T> Predicate<T> T -> boolean
distinct stateful, unbound Filtering Stream<T>
sorted stateful, unbound Sort
@rolroralra
rolroralra / BMT.md
Last active September 18, 2022 10:43
BMT (Performance Test)

merge-review

merge-review = "!f() { git checkout develop; git branch -D merge/\"$2\"; git fetch gerrit; git checkout -b merge/\"$2\" gerrit/\"$2\"; git merge --no-ff gerrit/\"$1\"; git review -R \"$2\"; }; f"