Philip Chung

Philip Chung

Software Developer

I’m a software developer living in the Los Angeles area.

More about me

Latest Blog Posts

A Typeable DOS Quine Program

The following text is a valid DOS program:

X5M@P5~APZ%3@PY%AAP[5~$P^5T%P_)5GGG)5GG)5XPLFXLFLEQX5M@P5~APZ%3@PY%AAP[5~$P^5T%P_)5GGG)5GG)5XPLFXLFLEQ

What happens when you run it?

How (Not) to Sort Items: A Lesson from Public Transit in Pittsburgh

When I took a trip to Pittsburgh last year, I needed to figure out how to get around on public transit. I went to the website of the local transit authority, and when I got to the schedules page, something seemed off.

Misusing “and” in C++

The following is valid C++ code:

int x = 0;
int and y = x + 1;

Huh? What does int and y mean?