Marcos Dione
Marcos Dione
I guess I can live without that setting, as not much traffic is plain text nowadays? What type of analysis does it do?
I still see this: ```javascript /home/mdione/src/projects/kosmtik/src/back/Project.js:128 if (err) throw err; ^ [Error: ENOENT: no such file or directory, unlink 'tmp/osm-carto/meta/14.2127.1485x1.lock'] { errno: -2, code: 'ENOENT', syscall: 'unlink', path: 'tmp/osm-carto/meta/14.2127.1485x1.lock' }...
Not sure, I'm working with https://github.com/StyXman/openstreetmap-carto/tree/elevation/develop. I think that at least the error I reported above can be handled by simply ignoring the `ENOENT` error; you're trying to `unlink` (remove)...
This should help fixing things like #483.
I've been thinking about rewriting `carto` for a while, because waiting 15s+ in kosmtik every time I make a change is really time consuming. But I can't; I really wish...
Related to this, today I pulled the latest master and I started getting this error: ``` ./bin/carto ~/src/projects/osm/osm-carto/project.mml Error: Invalid API version. A valid version is e.g. 3.0.0 or 3.0.10...
Yeah, that was it. So it means I updated a dependency. I wish the language would warn about those (but to be fair, Python does not do it either).
This is commit 9aeca4744728e7a7b6ce93750cafc5528e1a5fe5 from Fri Jun 30 23:02:31 2017 +0200.
I'm baffled. Befuddled. Bewildered. Let's start with a recent profile: ```js [Summary]: ticks total nonlib name 11097 60.1% 65.2% C++ 5911 32.0% 34.7% JavaScript 1453 7.9% Shared libraries 163 0.9%...
Well, one thing I learned is that regexps literals are automatically compiled by `v8`, and probably has a JIT for that too. I also tried caching the results of several...