Laurence Rowe

Results 18 issues of Laurence Rowe

Experimenting with mediawiki-parser I found I needed the following changes to get anywhere with parsing: https://github.com/lrowe/pijnu/commit/d3f86c21f997771535f8f540b4237c0536fd58ff (Seems I can't have two pull requests open at once, and this is a...

It would be useful to support loading [user defined functions](https://www.sqlite.org/c3ref/create_function.html) to use with filters and index with an [expression index](https://www.sqlite.org/expridx.html). Perhaps a similar mechanism to the VFS plugin could be...

enhancement

It would be nice to support dict unpacking `{**a, "b": 2}`, the Python equivalent to JavaScript object spread `{ ...a, b: 2}`. ```py # testme.py a = {"a": 1} b...

IS: enhancement
PRIO: 3 nice

JavaScript converts operands to 32-bit signed ints before doing bitwise operations. However various places in the code assume it will work with numbers >= 2**31. One example where this does...

We occasionally see build failures due to problems accessing the npm server. While we could run a local npm server instance ourselves, doing so adds unwanted complexity. The Python world...

Many [Gherkin](https://github.com/cucumber/cucumber/wiki/Gherkin#gherkin-syntax) [examples](https://github.com/cucumber/cucumber/wiki/Given-When-Then#and-but) on the net indent And/But steps with an extra space: ``` cucumber Scenario: Indent my steps When I indent with 4 spaces And I indent with 5...

enhancement
backwards incompatible

When I run remotejs (either shell or desktop) no console.log values are printed. ``` $ python2.6 remotejs.py # RemoteJS - Remote JavaScript Console for Android. # Please wait... # Target...

Postgres 14 added support for [pipeline mode](https://www.postgresql.org/docs/14/libpq-pipeline-mode.html) to libpq. ["You can use it on old PostgreSQL versions so long as you're using a new libpq."](https://stackoverflow.com/a/67428743) This seems like it would...

setValueSync parameters `errorSelectorArg` and comparatorArg`have no effect as the variables they are used to initialize,`errorSelector`and`comparator` are never used. https://github.com/Netflix/falcor/blob/3451e91/lib/set/sync.js We should identify places where setValueSync is being used and either...

bug

These devDependencies have deprecation warnings: - [email protected] (latest, last commit May 1, 2014) - [email protected] (peer dependency, latest) - `npm WARN deprecated [email protected]: Grunt needs your help! See https://github.com/gruntjs/grunt/issues/1403.` -...