James Wilson

Results 60 comments of James Wilson

Promises make this very easy, So I'm not sure I'd duplicate this functionality in the library: ``` $q.all([ angularLoad.loadScript('https://mysite.com/someplugin1.js'), angularLoad.loadScript('https://mysite.com/someplugin2.js') ]).then( reactToAllScriptsBeingLoaded ) ```

Just to chime in, I have hit precisely the same issue as @Hypnosphi has above using webpack 5.33.2

I ran into a similar issue. I *think* I have a solution (for now), but it is somewhat hideous: ``` sqlx::query!( "WITH a AS (SELECT row_number() over(), * FROM UNNEST(...

As an aside, I also tried doing a simpler approach of passing a single array of all of the values I wanted to update at once, but I hit a...

Just a quick FYI that, at least from a postgres POV, this works as I'd like. Here's a brief example: ``` db=> create table foo (id integer, foo text, bar...

A bit of a guess, but it looks like this error is in the area of attempting to sync the RocksDB secondary database with the primary one. I don't have...

Just to update anybody viewing this issue on my current feelings here: - Substrate-archive will require a fair chunk of time and effort to upgrade to ParityDB eventually, as it...

See my above comment; I'd suggest that if you're interested in building off this project that you create a fork of it and go from there. We do not have...

I recently needed to use the git API programatically to list my repos, and was pretty surprised to find that I could not create a token with readonly access to...