Skip to content

Instantly share code, notes, and snippets.

View gitgitWi's full-sized avatar
💯

gitgitWi gitgitWi

💯
View GitHub Profile
git diff --staged | cody chat --stdin -m "suggest commit message for this git staged changes in Korean, like this format example \"feat(scope): commit message\""
@gitgitWi
gitgitWi / jira-issue-tables-to-markdown.js
Last active March 13, 2025 06:51
Jira Issue Tables to Markdown to-do list
console.clear();
// --- utils
const $ = (selector) => document.querySelector(selector);
const $$ = (selector) => document.querySelectorAll(selector);
// --- elements
const $issueTable = $('table[aria-label="Issues"]');
const $issueTableBody = $issueTable.querySelector("tbody");