Skip to content

Instantly share code, notes, and snippets.

View jaekook's full-sized avatar
🎯
Focusing

Ahn, Jae Kook jaekook

🎯
Focusing
  • Seoul, Jakarta
View GitHub Profile
@jaekook
jaekook / README.md
Created July 19, 2023 03:20 — forked from usrbinkat/README.md
Microk8s + Kubevirt + Multus (Fedora 36)

Kargo3.0 Bare Metal GitOps Hypervisor

WARNING: Microk8s is currently impacted by BUG #3085 please see bug workaround instructions to remediate until patch is released to stable channels!

01. Install OS

@jaekook
jaekook / bigcache.go
Created August 31, 2022 08:58 — forked from calebschoepp/bigcache.go
Code to wrap Bigcache with a generic interface
package cache
import (
"bytes"
"encoding/gob"
"errors"
"github.com/allegro/bigcache/v2"
)
@jaekook
jaekook / MainActivity.java
Created June 29, 2020 08:39
Android: How to collect the response of a USSD request (Including multi-session requests)
//Get the instance of TelephonyManager
final TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
try {
if (tm != null) {
Class telephonyManagerClass = Class.forName(tm.getClass().getName());
if (telephonyManagerClass != null) {
Method getITelephony = telephonyManagerClass.getDeclaredMethod("getITelephony");