Skip to content

Instantly share code, notes, and snippets.

View hoho4190's full-sized avatar
🐞

hoho4190

🐞
  • Republic of Korea
  • 21:14 (UTC +09:00)
View GitHub Profile
🌞 Morning 141 commits ████▎░░░░░░░░░░░░░░░░ 20.7%
🌆 Daytime 329 commits ██████████▏░░░░░░░░░░ 48.2%
🌃 Evening 210 commits ██████▍░░░░░░░░░░░░░░ 30.8%
🌙 Night 2 commits ░░░░░░░░░░░░░░░░░░░░░ 0.3%
We couldn’t find that file to show.
⭐ Total Stars: 25
➕ Total Commits: 2,079
🔀 Total PRs: 194
🚩 Total Issues: 119
📦 Contributed to: 4
JSON +2.8k/ -166 █████▉░░░░░░░░░░░░░░░ 28.4%
TypeScript +3.2k/ -431 ████▍░░░░░░░░░░░░░░░░ 20.9%
Kotlin +1.1k/ -146 ██▍░░░░░░░░░░░░░░░░░░ 11.5%
HTML +997/ -129 █▊░░░░░░░░░░░░░░░░░░░ 8.4%
XML +830/ -0 █▌░░░░░░░░░░░░░░░░░░░ 7.3%
Markdown +656/ -6 █▍░░░░░░░░░░░░░░░░░░░ 6.8%
SCSS +592/ -208 ▊░░░░░░░░░░░░░░░░░░░░ 3.8%
Shell +479/ -3 ▊░░░░░░░░░░░░░░░░░░░░ 3.7%
Gradle +280/ -0 ▍░░░░░░░░░░░░░░░░░░░░ 2.1%
Python +357/ -0 ▎░░░░░░░░░░░░░░░░░░░░ 1.6%
@hoho4190
hoho4190 / tmux-install-update.md
Last active April 9, 2024 12:09
tmux-install-update
@hoho4190
hoho4190 / btop-install-update.md
Created April 9, 2024 12:12
btop-install-update
@hoho4190
hoho4190 / lazygit-install-update.md
Created April 9, 2024 12:14
lazygit-install-update
@hoho4190
hoho4190 / 00_contents.md
Last active April 10, 2024 04:14 — forked from edp1096/00_contents.md
오렌지파이5플러스 설정 메모
package com...test;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
import java.lang.reflect.Field;
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class ReflectionUtil {
public static void setFieldValue(Object object, String fieldName, Object valueTobeSet)
@hoho4190
hoho4190 / BillPughSingleton.md
Created May 26, 2024 01:48
Java: Bill Pugh Singleton
public class BillPughSingleton {
    private BillPughSingleton() {

    }

    private static class SingletonHelper {
        private static final BillPughSingleton BILL_PUGH_SINGLETON_INSTANCE = new BillPughSingleton();
    }