Ferran Maylinch

Results 8 issues of Ferran Maylinch

Sorry if this issue is not appropriate, but I wonder if I can wait for multiple promises to be fulfilled. I was checking https://github.com/jdeferred/jdeferred and it has that feature. I...

I created this myself, but it could be added to the library. For logs that do not conform to standards. ```go // --- Dummy format that just puts the whole...

Problem with certs: ``` panic: x509: certificate relies on legacy Common Name field, use SANs instead goroutine 36 [running]: gopkg.in/mcuadros/go-syslog%2ev2.(*ServerSuite).TestTLS.func1(0x0) /-S/vendor/gopkg.in/mcuadros/go-syslog.v2/servertls_test.go:69 +0x148 created by gopkg.in/mcuadros/go-syslog%2ev2.(*ServerSuite).TestTLS /-S/vendor/gopkg.in/mcuadros/go-syslog.v2/servertls_test.go:65 +0x13c ``` Problem with...

In case you find it useful, we're using this extension. Just not to forget `$set`! ``` DBCollection.prototype.set = function(query, setUpdates) { return this.update(query, {$set:setUpdates}, false, true); }; ```

enhancement

I've seen that there's a bug when setting values like these: ``` hourSlider.minimumValue = 6 hourSlider.maximumValue = 23 hourSlider.lowerValue = 6 hourSlider.upperValue = 23 ``` It seems that the setter...

With the iOS7+ version of this piece of code running in iOS8/9, I get lots of layout conflicts and calls to `heightForRowAtIndexPath` for every row, so I merged both versions:...

I don't know much about SVG format but at [SVGParser:1001](https://github.com/pents90/svg-android/blob/master/svgandroid/src/com/larvalabs/svgandroid/SVGParser.java#L1001) the code looks for attributes `width` and `height` while I used [this SVG file](http://www.flaticon.com/free-icon/keyboard-and-hands_84436#term=keyboard&page=1&position=24) which has a `viewBox` attribute with...