Skip to content

Instantly share code, notes, and snippets.

View ryuheechul's full-sized avatar
💻
hacking on projects!

Heechul Ryu ryuheechul

💻
hacking on projects!
View GitHub Profile
@ryuheechul
ryuheechul / build-accelerated-kvm-guest-custom-kernel-for-wsl2.md
Last active October 19, 2024 18:32
Build An Accelerated KVM Guest Custom Kernel for WSL 2

I'm not the author the blog post and this gist is a simply a note on my usage based on the original post, https://boxofcables.dev/kvm-optimized-custom-kernel-wsl2-2022/.

I also changed the code that extract the latest to a concrete linux kernel version.

First start with openSUSE Tumbleweed distro and commands below can be used to build the custom kernel and set it to be used for WSL2 distros.

# prepare build deps
sudo zypper -n up
# original from the post
@ryuheechul
ryuheechul / test-memory-leak.ts
Created March 15, 2023 07:04
Simple javascript memory leak tester
// a quick memory leak tester
// TODO: actually verify and make it objectively testable
function getRandomInt(max: number) {
return Math.floor(Math.random() * max);
}
const size = 2000 * 1000 as const; // whatever length to make the size big enough at each step
@ryuheechul
ryuheechul / patch-ipp-for-local.md
Last active February 8, 2023 22:20
A helm post-renderer for hitchhikers to the tiny planet of minikube + local images

But why? At least three reasons:

  1. You want to use local images without having to push to a remote registry
  • you probably just built an image locally and want to use that image with a helm chart
  • you can see the image when you run minikube image ls
  • but you still got an error on image pulling and the reason was imagePullPolicy: Always
  1. with imagePullPolicy: Always, minikube (or probably limitation on k8s) will always attempt to pull from remote registry ignoring "locally pulled" ones
  1. Helm charts not always expose imagePullPolicy as editable values
@ryuheechul
ryuheechul / nvm-path-resolution.md
Created July 14, 2022 23:18
about CircleCI node image PATH issue regarding the use of NVM

Issue

After changing the image from cimg/node:17.2.0 to cimg/node:18.4.0

sudo npm resulted in sudo: npm: command not found.

tl;dr: it's because of this

$ sudo cat /etc/sudoers | grep -n env_reset
9:Defaults      env_reset
@ryuheechul
ryuheechul / external.md
Last active May 19, 2022 23:13
aws cli usages
@ryuheechul
ryuheechul / emacs.md
Last active March 25, 2025 21:24
Note about emacs
Context about Emacs and me I used a few text editors (with vim key bindings) lightly for a number of years and I started wanting more.

In 2016, I first stumbled upon Spacemacs and got hooked for a while. That was my first Emacs experience. Spacemacs was so user friendly that I didn't have to learn Emacs at all.

In 2017, I moved on to VSCode (with VSpaceCode) as it got popular. In 2019, I moved to [Neo]vim (with SpaceVim) mainly because of the better performance and it was a natural transition as I also started using Tmux and I started to refuse leaving terminals.

@ryuheechul
ryuheechul / jira-standup.zsh
Last active September 16, 2022 16:32
a helper to bootstrap stand-ups messages quickly by fetching data from Jira and render for editing and pasting
# vim: set ft=zsh:
## You are suppose to source this file from your shell - tested on zsh and might work with bash as well
# like `source [this_file]`
# You can turn this into scripts if that's more of your taste
## binary dependancies
# - https://github.com/stedolan/jq # json processor
# - https://github.com/charmbracelet/glow # markdown render on cli
# - https://github.com/httpie/httpie # A command line HTTP client whose goal is to make CLI human-friendly