Skip to content

Instantly share code, notes, and snippets.

View cowkite's full-sized avatar
🧚‍♀️

Soyeon Kim cowkite

🧚‍♀️
View GitHub Profile
⭐ Total Stars: 4
➕ Total Commits: 791
🔀 Total PRs: 343
🚩 Total Issues: 18
📦 Contributed to: 2
🌞 Morning 42 commits ███▎░░░░░░░░░░░░░░░░░ 16.0%
🌆 Daytime 102 commits ████████▏░░░░░░░░░░░░ 38.8%
🌃 Evening 65 commits █████▏░░░░░░░░░░░░░░░ 24.7%
🌙 Night 54 commits ████▎░░░░░░░░░░░░░░░░ 20.5%
class SomeInstance {
private static SomeInstance mInstance = new SomeInstance();
private SomeInstance() {
}
public static SomeInstance getInstance() {
return mInstance;
}
}