phiresky

Results 402 comments of phiresky

I just tried it and using Atomics for async stuff (without asyncify) works! In my case I'm trying to write a virtual table to access the DOM right now, which...

One more thing I found while experimenting is `pragma cache_size = 0`: SQLite by default has its own internal page cache of 2MB, so if you want to really see...

The stats show the memory usage of the whole system, not just the cluster processes. In addition, due to https://github.com/nodejs/node/issues/23892 it calculates the used memory "incorrectly", since it includes disk...

I solved it by creating the file `~/.theanorc` as described in https://github.com/dnouri/kfkd-tutorial/issues/5#issuecomment-68589651 . Some information about using Lasagne master should probably be added to the readme, and maybe something about...

Thanks. > I didn't anticipate getting people outside of a relatively small academic community looking at any of this Well you did post it on reddit :) I'm just happy...

Same problem here. Nvidia 396.54 (GTX 980 Ti Strix). SteamVR Build `Aug. 7, 2018 at 19:52 Version 1533664367` on Arch Linux (kernel `4.18.5-arch1-1-ARCH`). Basically unusable without getting a headache within...

For webpack2, this load configuration worked for me: {test: /\.jsx?$/, include: /react-pivot/, loader: 'babel-loader', query: {presets: ['es2015', 'react']} } With the packages yarn add babel-loader babel-core babel-preset-es2015 babel-preset-react

Look at the code in my original issue description. It solves this problem for all combinations of unions of literals, primitives, newtypes with a single hook.

Just want to mention that SQLite has native wasm support now. They have a few "ideas" for how to do persistent storage https://sqlite.org/wasm/doc/trunk/persistence.md . You'd download the whole SQLite db...

I feel like maybe this should be a UI / frontend thing? Same as RES. How to define what is read and what not heavily changes based on the UI...