Ildar Sagdejev

Results 122 comments of Ildar Sagdejev

I see [in the CHANGELOG](https://github.com/fazibear/colorize/blob/468c2f7832239dbac30db51c889c4bd3378f1766/CHANGELOG#L42): ``` == 0.6.0 / 2013-09-25 ... * STDOUT.isatty condition removed ``` What were the discussions relevant to this decision?

Here's the problem. This looks nice: ![meetup-cli-color-output](https://cloud.githubusercontent.com/assets/451178/19872611/15040366-9f91-11e6-921f-1069cc5543c4.png) On the other hand, this is an unpleasant surprise: ![meetup-cli-color-codes-problem](https://cloud.githubusercontent.com/assets/451178/19872624/2528824e-9f91-11e6-9ae2-d6b9e15a6a79.png) In my experience, the default behavior is usually implemented to be the opposite...

I've got an app that depends on the [solid](https://github.com/solidjs/solid/) library. Building with esbuild produces a bundle with code sections like this: ```js // src/app/Main.jsx init_define_config(); init_web(); init_web(); init_web(); init_solid(); init_dist();...

Most likely you're interested in taking into account the new dimensions of the parent container when it is resized. Currently the carousel dimensions are decided based on the dimensions of...

I hope this is still relevant. Check value of the `farScale` [setting](https://github.com/specious/cloud9carousel#carousel-options) when you initialize the carousel to adjust how much smaller the carousel items become as they rotate to...

Do you mean one of the scroll bars is shifting on your page when the carousel animates?

That would be possible by adjusting the formula that calculates by how much the carousel will rotate between two animation frames: https://github.com/specious/cloud9carousel/blob/c25c4ccf21c0f831142b313d0e733b79a6731bb2/jquery.cloud9carousel.js#L215-L217 A pull request for a feature that would...

I appreciate that you are giving this carousel a try. Thank you for sharing what you're attempting to do and that it's not working as might be expected. The carousel...

Array.prototype.indexOf() is presumably [not implemented](http://stackoverflow.com/questions/1744310/how-to-fix-array-indexof-in-javascript-for-internet-explorer-browsers) in IE 8 and earlier. I'm too busy to delve into this right now, but a pull request implementing a small polyfill might be worth...

I had some success taming the response to the track pad on my MacBook Pro with: ``` js if( options.mouseWheel ) { var t; var tLast = 0; var tReset...