Felipe Figueroa

Results 56 comments of Felipe Figueroa

There is a relation between zoom level and display resolution. Current default zoom is suggested for desktop screens, but mobile screens should default to a lower zoom. Perhaps instead of...

I used node-gdal until gyp just couldn't do the binding. Have you tried https://github.com/wavded/ogr2ogr

I'm trying to do it using findorCreate and upsertwithWhere. However you are limited to POST requests, since you can't address the instance itself with PUT

Yeah, that would be the sanest approach, since `turf.simplify` already does geometry decomposition to apply the simplification to the underlying rings/arcs of geometries you feed it.

I've just seen that `jsts` does have both Algorithms in its `simplify` operation. I'll check if their weight adds too much overhead to the `@turf/simplify` build (as in, if I...

@felipemeddeiros you can do that already, for example: ```php $disk = Storage::disk('gcs'); $disk->put($filePath, $fileContents, [ 'metadata'=>[ 'cacheControl'=> 'public,max-age=86400', 'contentType'=> 'image/jpeg' ] ]); ``` This PR would allow for a default...

I'd love to see this one merged, so I could use progress alongside Winston or debug

@aarc I've just had to deal with this issue. My workaround, adapted to your case, would be ```js 'click #step1': { view: _.template($('.template-step1').html()), onActive: function(modal) { modal.$(modal.viewContainerEl).html(modal.currentView); modal.$el.find('.js-register-form').validate(); } }...

#### 1. Si te fijas, salvo en el caso que no se pase un DOMElement y la instancia no tenga un documento cargado https://github.com/LibreDTE/libredte-lib/blob/b75b92347223f422176b2f200c1599aa5d9df49f/lib/XML.php#L228-L230 En todos los otros casos el...

The appsecret_proof is generated on: https://github.com/criso/fbgraph/blob/894fa3153d745ac0de5d37b5ca905c98f98e8f68/lib/graph.js#L121-L128 It would need to be changed to: ```js // add appsecret_proof and appsecret_time to the url var appsecretTime = Math.floor(Date.now() / 1000); if (sessionAccessToken...