Joseph Lennox

Results 57 comments of Joseph Lennox

@alejandrade It should be as simple as installing Visual Studio then double clicking the `.csproj` file. You can then run it with the debugger attached or compile from inside the...

How do you imagine this displaying on the UI? A second row that says "Calories: {N}" ?

> Be honest with you, I was going to fork your code and make it a web service You're of course welcome to :) And I can assist you as...

@Hive8 There's no JSON service but that's not an unreasonable thing to implement. How do you imagine it would work? Just a socket that does `{json's byte length}{utf8 encoded json}`...

@Hive8 There is currently a CSV file that others have externally consumed in real time -- if that helps.

My hacky fix for this is to modify `node_modules/@babel/register/lib/cache.js`: ```diff - serialised = JSON.stringify(data, null, " "); + serialised = JSON.stringify(data); ``` When I deleted `node_modules/.cache/@babel/register/.babel.7.13.10.development.json` * then run with...

If `v8.serialize` can stream the serialization to a file directly then it would help. Anything that buffers the complete JSON object to memory will still have the issues discussed here....

The benchmarking should be done on an actual 100mb or larger cache file. Any synthetic dataset depends on assumptions. I can't provide a sample cache file because it's for a...

@andersk @VerteDinde Is there any update on this? This would presumably fix an issue I am seeing: ``` .../node_modules/spectron/lib/spectron.d.ts:260:24 - error TS2694: Namespace 'Electron.CrossProcessExports' has no exported member 'RemoteMainInterface'. 260...

@mjsabby If you have some clear ideas on what needs to be done, I can contribute some time each week. I can be contacted through jlennox at g-mail. Thanks for...