Vitaly Tomilov
Vitaly Tomilov
It doesn't seem right that a retry loop can only be interrupted (or interacted with) form inside the callback. There are many scenarios when it needs to happen externally. Function...
When I was looking for something like this 8 month ago, I couldn't find anything, so I wrote my own library - [manakin](https://github.com/vitaly-t/manakin). I've just done some testing for the...
db hint
In this file: https://github.com/lfittl/beatql/blob/master/data/database_helpers.js you are reinventing what pg-promise already does automatically in most cases. see [helpers](http://vitaly-t.github.io/pg-promise/helpers.html) namespace.
db hint
on your code here: https://github.com/lukasmartinelli/postgis-editor/blob/b13ab81b99dc49d486fd62067f56651a10e78208/src/database.js#L25 ``` js connect(connectionOptions) { this.db = pgp(connectionOptions); } ``` You should know that that code does nothing really. It doesn't connect to the database, merely...
Very nice library! I would only point out that the `bool` filter doesn't look right. It evaluates the value as strictly `!==true`: ``` javascript angular.module('frapontillo.ex.filters') .filter('bool', function() { return function(input,...
Since [pg-promise] is now the underlying driver, I wanted to make a quick list of useful considerations. ### Monitoring Queries As `Massive` constructor accepts the third parameter to configure `pg-promise`,...
https://github.com/anandanand84/technicalindicators/blob/d8fe190212f5011a6057beaeaea0c11e763a4bcb/src/candlestick/TweezerTop.ts#L14 Your Twizzer Top + Bottom calculations look bad. You should not do exact match comparisons like `data.high[3] == data.high[4]`. The match must include a minor deviation, which may be...
Move away from the now deceased free `Travis CI`, and into the new [Github Actions](https://github.com/features/actions).
I've spent many hours searching for an answer, but couldn't find anything usable to seemingly a simple question - how to publish a package with global dependencies. Here I asked...
PostgreSQL v10 was released on Oct 05, 2017, see the [Release Notes](https://www.postgresql.org/docs/10/static/release-10.html). --- One of the most interesting features that affects `node-postgres` is [multiple host names or addresses in libpq...