andrewbkim.devπ νν 리μΌ: 5λΆ λ§μ λΉ νλ©΄μμ μ± λ°°ν¬κΉμ§ (ai μμ΄μ νΈ μ€ν)GitHub Codespaces λ₯Ό μ¬μ©νλ©΄ λ‘컬 λ¨Έμ μμ μλ¬΄λ° μ€μΉλ₯Ό νμ§ μκ³ λ κ°λ°μ ν μ μλ€λ κ²μ μ΅κ·Όμ μκ² λμμ΅λλ€. λ, claude code λ₯Ό μ°λ©΄ μ½λ© μμ΄μ νΈκ° ν둬ννΈμ λ§μΆμ΄μ νμΌμ μ§μ μμ±/μμ νκ³ μ½λ©μ ν΄ μ€λ€λ κ²μ μκ² λμμ΅λλ€. λ§μ½ μ΄ λκ°μ§λ₯Ό κ²°ν©νλ©΄ μ΄λ¨κΉ νλ μκ°μ΄ λ€μ΄μ μ΄ μ€νμ΄ μλν μ§ ν μ€νΈλ₯Ό ν΄ λ³΄μμ΅λλ€. κ°λ°μ κ²½νμ΄ λ무 νλ₯νκΈ° λλ¬Έμ, ν΄λΉ κ³Όμ μ μλμ κ°μ΄ μ 리νμ΅λ...Jan 8Β·2 min read
andrewbkim.devπ Tutorial: From Zero to Live App in 5 Minutes (The AI Agent Stack)I heard of GitHub CodeSpaces where I donβt need a local machine to develop code. Then I also heard I could use Claude Code as a coding agent. So, I connected them both and had Claude create a very simple webapp for proof of concept of this dev enviro...Jan 8Β·2 min read
andrewbkim.devFind the Perfect Icon, Effortlessly: Introducing AI-Powered Semantic SearchIntro. Finding the perfect icon for your text can be a frustrating experience. You type in keywords, hoping to stumble upon something that fits, but often come up short. In an age where computers understand human language better than ever, shouldn't ...Jul 6, 2025Β·2 min read
andrewbkim.devκ³ μ IP λ‘ μΈν°λ·μ μ°κ²°λ νκ²½μμ VMWare - Ubuntu 20.04 컨ν μ΄λλ₯Ό μΈν°λ·μ μ°κ²°μν€μ¬μ© νκ²½ : VMWare Fusion 12.2.4 νμ¬ κ³ μ IP λ₯Ό ν΅ν΄ μΈλΆλ‘ μΈν°λ·μ μ μνλ λ€νΈμν¬ νκ²½μ λλ€. μ΄ λμ VMWare λ‘ Ubuntu 20.04 μ΄λ―Έμ§λ₯Ό μ€μΉνλ λ°λ‘ μΈν°λ· μ°κ²°μ΄ λμ§ μμμ΅λλ€. μ΄λ΄ λμ μΈν°λ· μ°κ²°μ νλ λ°©λ²μ λλ€. (Credit: https://www.youtube.com/watch?v=69jZUccRbik) VM instance μ Network Adaptor λ₯Ό NAT λ‘ μ€μ ν©λλ€....Nov 4, 2022Β·2 min read
andrewbkim.devUsing Iterator To Generate A Suite of Card DecksUsing Iterator To Generate A Suite of Card Decks const cardDeck = { suits: ['β§', 'β’', 'β₯', 'β€'], court: ['J', 'Q', 'K', 'A'], [Symbol.iterator]: function* () { for (let suit of this.suits) { for (let i = 2; i <= 10; i++) yield suit + ...Jul 30, 2022Β·1 min read