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 / Makefile
Last active June 13, 2021 09:45
Notes about Hashicorp Nomad
.PHONY: up
up: ## assuming you want to run something like shell scripts relatively
up:
sleep 8 && nomad ui&
MY_REPO_TOP_LEVEL=$(shell git rev-parse --show-toplevel) nomad agent -dev -bind 0.0.0.0 -log-level INFO
@ryuheechul
ryuheechul / _tips.md
Last active July 8, 2026 23:11
Kinesis Advantage 2 Keyboard Customization

progm + [hotkey] Changes Layouts

  • progrm + m => m_querty.txt (macOS)
  • progrm + w => w_querty.txt (Windows, and Linux too - my Linux boxes are usually installed on originally-Windows hardware, so this covers both)
  • progrm + F3 => qwerty, i.e. no custom remap at all - personally I should not use this, always keep one of the two above loaded instead (see below for why)

Software remapping layers (separate axis, not tied to the above)

@ryuheechul
ryuheechul / README.md
Last active August 5, 2021 16:53
kubectl port-forward service made easy

A script to port-forward via Service name

  • kubectl should support port-forwarding with service name but it doesn't
  • k9s does though 👍🏼
  • So this script mimics its behavior

credits:

Roadmap (maybe)

@ryuheechul
ryuheechul / KOReader-on-rm2.md
Last active January 23, 2026 19:11
Installing KOReader on Remarkable 2
@ryuheechul
ryuheechul / GF_JSON.md
Last active August 19, 2021 08:54
Upload and download Grafana dashboard without pain

GF_JSON

What the hell is this?

It helps you synchronizing your code, your-dashboard.json and quickly iterated result from the GUI, without pain.

Why I made this?

  • Grafana dashboards must live inside of code repository if it is to be deployed in multiple places.
  • Currently I don't buy the story of using jsonnet or grafonnet to maintain the dashboard as a code because it's one directional.
@ryuheechul
ryuheechul / jq.md
Last active January 25, 2022 22:47
@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