Miroslav Bajtoš

Results 204 comments of Miroslav Bajtoš

> 1. Exactly what browsers (and versions) should be supported. From my POV, all evergreen browsers (Chrome, Firefox, Safari) and Internet Explorer 8+ (that's the difficult part). > 1. Determine...

> This module also requires support for `Object.defineProperty` and similar ES5 features, so that may limit the supported browser list. Is this required for all module users, or only when...

@dougwilson thank you for adding basic support for running the module via browserify. Since we have implemented a workaround that actually logs deprecation warnings (see [browser.depd.js](https://github.com/strongloop/loopback-datasource-juggler/blob/934786200b0180ed3d3cf45f78986b2019511e79/lib/browser.depd.js)), I prefer to stick...

FWIW, you can take a look at how https://www.npmjs.com/package/phantomjs-prebuilt is handling re-use of downloaded data.

See also: - https://help.github.com/articles/licensing-a-repository/ - https://help.github.com/articles/adding-a-license-to-a-repository/

Hi, this is @bajtos from the LoopBack team. I am not familiar with this repository and what kind of benchmarks you are running, but I am happy to help you...

We have some basic benchmarks here: https://github.com/strongloop/loopback-next/tree/master/benchmark/src, see [worker.ts](https://github.com/strongloop/loopback-next/blob/master/benchmark/src/worker.ts) for server setup and [scenarios](https://github.com/strongloop/loopback-next/tree/master/benchmark/src/scenarios) for REST API calls made by the benchmark. The benchmarks are testing CRUD operations using out...

Would this work for merging interface docs into class docs? Using the example from https://github.com/microsoft/rushstack/issues/1921: ```ts /** * @public */ export class MyWidget extends EventEmitter { // class implementation goes...

**Ruby on Rails** Seems to use the same approach. Reference: https://edgeapi.rubyonrails.org/classes/Hash.html#method-i-to_query Source code: https://github.com/rails/rails/blob/b5302d5a820b078b6488104dd695a679e5a49623/activesupport/lib/active_support/core_ext/object/to_query.rb#L61-L86 Example code: ```ruby require "activesupport" data = { "name" => "David", "nationality" => "Danish", "address" =>...

**Python 2.7** AFAICT, Python does not support nested objects in query parameters. Example code: ```python from urllib import urlencode from urlparse import parse_qs data = { 'person': { 'name': 'David',...