Darren Cook
Darren Cook
(Feature request) I want to write a custom image processing function; it would be useful to have a function that allows processing a NxM (e.g. 3x3) sliding window over an...
Is it possible to add the 2015-2016 data? (Does it need any tidy-up or processing, or is it just a matter of downloading a file from one site, and uploading...
In this directory: https://github.com/jokecamp/FootballData/tree/master/football-data.co.uk/england/2013-2014 It seems E2.csv has the data, and League1.csv only has half of it (it stops at 07/12/13). So I think the fix is to delete League1.csv,...
In a large web app we switched on `auto_compaction`. It seemed to work (e.g. chrome disk usage went from 102M to 89M on my test setup, and from 2.3GB to...
OpenCloud have a way to set the file timestamp when uploading; NextCloud adopted the same header. It is "X-OC-MTIME" and set to a unix timestamp integer. I tried hacking the...
I started using Catch recently, and then saw this library mentioned somewhere. In the Readme you describe it as based on the ideas of Catch. It would be useful to...
What is the intention of lines 65,66 here? https://github.com/dbashford/textract/blob/master/lib/extract.js#L66 // multiple spaces, tabs, vertical tabs, non-breaking space] text = text.replace( / (?! )/g, '' ) .replace( /[ \t\v\u00A0]{2,}/g, ' '...
## Expected Behavior The \u00A0 character should just appear as a space. (it is the unicode equivalent of ` `) ## Current Behavior It shows as a white dot in a...
Has it been deprecated in favour of some other package, or idiom, that we should all be using? (If so, which one?) Or is it just because it is marked...
An xts with 770K rows, takes about 40s (at 100% CPU, but memory use does not grow) to do this: ``` lag(x$High, k = -(0:12)) ``` It is implemented as:...