Skip to content

Instantly share code, notes, and snippets.

View BumgeunSong's full-sized avatar

bumgeun BumgeunSong

View GitHub Profile
@BumgeunSong
BumgeunSong / SKILL.md
Last active April 21, 2026 13:41
crig-concept-learning
name crig-concept-learning
description Helps build deep understanding of any concept by scaffolding its structure (rigging) and crystallizing it into a seed sentence. Use when learning something new, feeling stuck while understanding a concept, or wanting to truly own an idea. Triggered by phrases like "이해하고 싶어", "그려지지 않아", "왜 필요해?", "내 것으로 만들고 싶어", "정리해봐", "핵심이 뭐야?".
author Jong Taek Oh

Crig (Crystal Rigging)

씨앗: Crig은 개념의 골격을 세워 머릿속에서 돌릴 수 있게 하고, 그것을 다시 씨앗으로 굳히는 것이다.

@BumgeunSong
BumgeunSong / Heap.swift
Last active June 25, 2022 05:20
# Data Structure Practice
// Heap.swift
//
// Created by Bumgeun Song on 2022/05/16.
//
import Foundation
struct Heap<Element: Comparable> {
typealias Sort = (Element, Element) -> Bool
var elements: [Element] = []
var sort: Sort