Development Environment with EmacsEntering the Forbidden Realm I used to be the type of person who felt compelled to try every new tool related to work, whether it was an editor or an IDE. However, at some point, I realized that they...November 13, 2017tool
Implementing Adaptive HTTP Streaming with Web TechnologyAn enormous amount of video content is being consumed not only in Korea but globally. The dominant web video technology, once Flash, has gradually transitioned to the standard HTML5 video technology,...September 18, 2017frontendjavascript
Understanding JavaScript Prototype Chain EasilyJavaScript is a multi-paradigm language that supports both object-oriented programming and functional programming, treating functions as first-class citizens. Those who have worked with JavaScript kno...February 21, 2017javascript
Measuring Frontend Performance Using Chrome Developer ToolsTimeline The Timeline is a tool that records and visualizes browser operations triggered by webpage loading or user interactions in a timeline format. It allows you to monitor browser events (not just...November 15, 2016frontendtool
Closures, Encapsulation, and Information HidingClosures and Objects I remember struggling to understand closures when I first encountered them. Properly grasping closures requires a solid understanding of JavaScript's core concepts. Personally, I...June 27, 2016javascript