HN user

mindhunter

209 karma
Posts6
Comments52
View on HN

If he’d run the dark mode JavaScript in the head and control the style through a css class, it would not flash.

I recently made the leap in the opposite direction: after being asked to pay 59€ to continue using the app I downloaded Tower 2. So far I'm not missing anything they introduced since then. I'm actually happy about the old app icon.

When the warning that the license is running out popped up some time ago I expected the app to still work. Just that I won't get any new updates (like Sketch). But no: it just stops working and demands more money. Pew....

Web Starter Kit 12 years ago

CSS3's flex attribute solves that. It's the holy grail for modern web-interface-development. Vertical center text:

.vertical-text { display: flex; flex-direction: column; justify-content: center; }

(add ´align-items: center´for horizontal center)

Code Reads 13 years ago

How I hoped this to be an announcement for a public code reading. Like a author reading a chapter of his book, Jeremy reading and discussing a part of the coffeescript source.

Paperfold CSS 14 years ago

Half of the CSS code is used for the demo interaction (time changing, showing the helper elements and for debugging [grouping all animated elements to change the transition-duration all at one]).

In production it would be way less complex.

Watch out! The generated code uses the wrong unprefixed gradient syntax:

  linear-gradient(top, color1, color2)

is wrong. The direction syntax changed to
  linear-gradient(to bottom, color1, color2)

I'll contact the author of the tool.