Last Saturday, we went to our 2nd Regina Spektor concert this year. We went to see her at Walt Disney Concert Hall in LA back in March, and had a really great time. After we came back home, I saw she was coming to Woodinville, WA, about 3 miles from our house.
Continue reading
Everybody is asking about how to create gradient borders with transparent backgrounds. But I just had to solve an issue that’s in the opposite situation and learned about background-origin
.
Continue reading
DOMTokenList
is a built-in DOM interface that represents a set of string tokens. If you are familiar with classList
, you are already familiar with it. In a recent project, I wanted to make a custom element property as a DOMTokenList
, here’s what I learned.
Continue reading
Many websites take the first letters from a user’s names to generate their default avatar. It is similar to monograms. If you have to achieve this in JavaScript, I found using Unicode property escapes Regular Expressions is the easiest.
Continue reading
Many web developers take design mockups a bit too literally–thinking the rendered webpages should visually match the mockups. While it’s crucial to carry the visual design over to the coded webpages, there’s much more to our works than just making visual copies of mockups. We develop user interfaces that can be understood and interacted with by different people with different tools.
Continue reading