Skip to content

Instantly share code, notes, and snippets.

View leegeunhyeok's full-sized avatar
🎯
Focusing

Geunhyeok LEE leegeunhyeok

🎯
Focusing
View GitHub Profile
@sipec
sipec / index.js
Created December 14, 2024 02:17
Convert vscode theme to zed using node
const fs = require("fs");
function convertSyntaxHighlighting(tokenColors) {
const syntax = {};
const scopeMapping = {
variable: ["variable", "variable.other.readwrite", "entity.name.variable"],
"variable.builtin": ["variable.defaultLanguage", "variable"],
"variable.parameter": ["variable.parameter", "variable"],
// "variable.member": [],
@axemclion
axemclion / PerfLogger.java
Last active October 25, 2024 03:10
React Native Android - Systrace from ReactMarkers
package com.nparashuram;
import android.os.Process;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.view.ViewTreeObserver;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.bridge.ReactContext;
@parmentf
parmentf / GitCommitEmoji.md
Last active October 31, 2025 17:32
Git Commit message Emoji
@tsl0922
tsl0922 / .tmux.conf
Last active October 13, 2025 08:18
vim style tmux config
# vim style tmux config
# use C-a, since it's on the home row and easier to hit than C-b
set-option -g prefix C-a
unbind-key C-a
bind-key C-a send-prefix
set -g base-index 1
# Easy config reload
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."