determin1st

Results 54 comments of determin1st

> Did I say anything about "evil corps"? I don't think I did, I chose to move to gitlab for convenience, not because I think m$ is inherently evil. Though...

I had this `undefined:undefined` on localhost machine.. checked firewall (tcp 9000 port), php settings (127.0.0.1:9000), extention settings (0.0.0.0:9000).. all was correct.. restarted Apache - it magically worked.. hmm.

Oh, I see. Used your second version of "workaround" with (). I think JS ternary operator style is good (simple), but LiveScript's version more complicated.

nice comment ozra, your example: `x = y > 0 && (z > 0 && 1 || 2) || 3` looks complicated) and will work with numbers better to my...

I'll be careful, i promise :]

@vendethiel works well when `n` is given straight and small, but: ```javascript repeatArray$([x], n); function repeatArray$(arr, n){ for (var r = []; n > 0; (n >>= 1) && (arr...

@rhendric So you mean that LiveScript should be upgraded to have some compile option that enables higher JS/ES runtime versions first?

ye, okay, i've created some factory function outside of the loop for now.. the construction overhead doesn't matter much in my case (it's a singleton object), it just doesn't look...

well, i've got some answer from the JIT-man: "Different constructor functions will have different hidden classes" So my intent to make some set of "look-alike" constructors with the same hidden...