Brendon Boshell
Brendon Boshell
See https://github.com/brendonboshell/supercrawler/issues/16#issuecomment-407563185: "Using the start method of Crawler after you have called stop is problematic because it doesn't properly handle the case where you resume while there are outstanding requests...
It seems that using the `Firebird.escape` function replaces each backslash (`\`) with two backslash (`\\`) characters, for example: ``` console.log(firebirdEscape("hello\\world'\s")) // Outputs: 'hello\\world''s' ``` However, this results in duplicate backslashes...
Because of Brexit, it seems businesses in Northern Ireland must use the 'XI' prefix rather than 'GB' in some circumstances. https://ec.europa.eu/taxation_customs/sites/taxation/files/use_of_gb_and_xi_codes_guidance.pdf
When tied to an onresize event, for example, the code can cause significant frame-rate performance issues in Webkit browsers such as Chrome. This is due to the repeated insertion and...
In this example: ``` const s = require("superstruct"); const Query = s.object({ url: s.pattern(s.string(), /^example/g), }); const testQuery = { url: "example", }; console.log(s.is(testQuery, Query), s.is(testQuery, Query)); ``` It returns...
Please see [the issue I reported previously - "pm2 reload causing connection timeout and downtime"](https://github.com/Unitech/pm2/issues/2573). Using `pm2 reload` causes connection errors and downtime when running a process in cluster mode....