Skip to content

Instantly share code, notes, and snippets.

View etff's full-sized avatar
🎯
Focusing

Empowered Thoughts, Fearless Future etff

🎯
Focusing
View GitHub Profile
🌞 Morning 178 commits β–ˆβ–ˆβ–ˆβ–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 23.3%
πŸŒ† Daytime 362 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 47.4%
πŸŒƒ Evening 18 commits ▍░░░░░░░░░░░░░░░░░░░░ 2.4%
πŸŒ™ Night 205 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 26.9%
@etff
etff / I'm an early 🐀
Last active October 29, 2020 01:07
daily coding
🌞 Morning 208 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 24.4%
πŸŒ† Daytime 404 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 47.3%
πŸŒƒ Evening 18 commits ▍░░░░░░░░░░░░░░░░░░░░ 2.1%
πŸŒ™ Night 224 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 26.2%
public class Test01 {
public static void main(String[] args) {
Person p = Person.builder()
.name("λΉ΅ν˜•")
.birth("20200202")
.build();
System.out.println(p);
}
}
@etff
etff / remote-guide.md
Last active October 10, 2021 09:06
GIT μ›κ²©μ§€μ˜ 정보 λ°˜μ˜ν•˜κΈ°
  1. 곡톡 repository을 fork

  2. forkν•œ λΈŒλžœμΉ˜μ—μ„œ μžμ‹ μ˜ μ»΄ν“¨ν„°λ‘œ git clone ν•˜κΈ°

  3. 클둠 받은 ν”„λ‘œμ νŠΈμ—μ„œ git remote -v λͺ…λ Ήμ–΄λ₯Ό 톡해, 포크 받은 곳의 μ£Όμ†ŒμΈμ§€ 확인을 ν•˜κΈ°

git remote -v
  1. 곡톡 λ¦¬ν¬μ§€ν† λ¦¬μ˜ μ €μž₯μ†Œ λ“±λ‘ν•˜κΈ°
@etff
etff / homework02.kt
Last active June 9, 2022 15:37
과제2
import kotlin.reflect.KProperty
import kotlin.reflect.full.findAnnotation
fun <T> T.stringify() = StringBuilder().run{
jsonValue(this@stringify)
toString()
}
class Gson {
companion object {