Konrad Dzwinel

Results 184 comments of Konrad Dzwinel

https://developer.chrome.com/devtools ![screen shot 2015-01-12 at 21 40 41](https://cloud.githubusercontent.com/assets/985504/5710585/b3684692-9aa3-11e4-8f59-67c1e82f21a6.png) https://developer.chrome.com/devtools/index ![screen shot 2015-01-12 at 21 36 50](https://cloud.githubusercontent.com/assets/985504/5710542/5f1a0e86-9aa3-11e4-9bea-8c2cd4e9b238.png) Note the two missing "show" classes in the first one. It seems that these...

In my opinion `{{^removeToc}}` is not responsible. HTML markup for the left menu _exists_, it's just not visible. Execute this line in the DevTools console and menu will appear: `$('.inline-site-toc...

IMO "optimized too many times" means that function was optimized multiple times with wrong assumptions (both args are int! first is string the other is int? both are string?! I...

@WebReflection you sure can have polymorphic functions, they won't be as optimized an monomorphic ones. Which, in most cases, is OK. After reading [this](http://mrale.ph/blog/2015/01/11/whats-up-with-monomorphism.html) article my guess is that "optimized...

@mraleph thanks for an explanation! Now it makes much more sense, hopefully we will get that documented. Since "optimized too many times" suggests a V8 bug, should we consider reporting...

Turns out inside single text block there can be multiple styles. We should migrate to that (top text shows current approach) (bottom text shows new approach)

@KimDal-hyeong oh wow, that's super useful! Thank you 🙇‍♂️

It looks like we are using "text" objects with "style" property describing the "text style". However, that style is only a baseline style. "text" objects have "attributedString"s that consist of:...

Hey! Thanks for reporting. I didn't know it's not supported, but it does make sense - these little dashes/dots/numbers that appear next to the list items are not real DOM...

We should probably be able to convert all possible `transform` values to a generic [`matrix` transform](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/matrix) and try to convert to sketch from that.