RSSAmplifier

Blog

Seokho’s blog

Development and Tech blog

blog.seokho.devRSS feed ↗10 posts

Latest posts

Co-Organizing Browser Night, the browser developer meetup in South Korea

The Beginning…

Debugging note — Filing a Chromium issue with pdf.js font bug

Recently, I filed an issue to crbug.com which is discovered in our frontend product. In this blog post, I’ll share how I figured out it as a browser issue and how I reported it with the minimal reproduction code.

Expanding my contribution area to Turbolev the new top tier JIT compiler in V8

Recently, I expanded my contribution from JS surface layer to lower layer compiler pipeline, which takes a bytecode and produce machine instructions or produce a new graph for the further compiler.

Became a V8 committer

I got v8 committer status in this morning.

V8 Explicit Compile Hints with Magic Comments

While following Chrome platform status, I found an interesting feature that will be shipped in Chrome M136 and V8 v13.6.

V8 debugging note

Debugging Note

Float16Array Turbofan Pipeline DevLog — Weekly Sync with V8 Leader

Introduction

Optimize V8 Math.hypot - Hidden cost of the loop

Introduction

The first journey of implementing Float16Array into V8

I merged the Float16 feature to v8 today. (Float16 is half precision defined in IEEE754.)

How to collect coverage with Jest (V8)

Motivation I wanted to organize a workflow centered around coverage at my company and sought to understand precisely what coverage is.