Alexander Kachkaev

Results 463 comments of Alexander Kachkaev

That's what I did. Basically I updated all the deps in that project by running [`ncu -u`](https://www.npmjs.com/package/npm-check-updates), then did `npm install; npm start` and saw all those React warnings.

@OlegIlyenko how does your browser console look after updating all deps? Do you see any warnings?

I'll try again and will let know how it goes. Didn't spend much time on figuring out what could be wrong this weekend. Good to see that not everyone experiences...

Hi Oleg, I tried updating the packages once again, but still saw a lot of warnings. Here's the latest package.json (`develop` branch of `graphiql-workspace-app`): https://gitlab.com/kachkaev/graphiql-workspace-app/blob/develop/package.json Chrome's console is pretty full...

Thanks! All of that red text is gone now, I updated master in [`graphiql-workspace-app`](https://gitlab.com/kachkaev/graphiql-workspace-app). Dropzone might still need a bit of refactoring, but It's not that crucial. ![screen shot 2017-03-02...

Hmm it looks like http://try.sangria-graphql.org/graphiql no longer uses `graphiql-workspace`, it's just a standard graphiql interface. However, a [screen shot](https://raw.githubusercontent.com/OlegIlyenko/graphiql-workspace/master/screenshot.png) in `README.md` still does contain _prettify_ button. When I go to...

Thanks for sharing your code @lostpebble and @pachacamac 🙌 I made [a typescript version](https://github.com/kachkaev/tooling-for-how-old-is-this-house/blob/1ec724ac219882fb13184c9ca84f741a6419def5/src/shared/helpersForGeometry.ts#L113-L189) of [the function](https://github.com/Turfjs/turf/issues/1743#issuecomment-736805738) if anyone would want to copy-paste it.

It'd be great to see this feature indeed, especially configurable inside [`serve`](https://www.npmjs.com/package/serve) as a CLI argument. Meanwhile, my workaround is to use [`http-server`](https://www.npmjs.com/package/http-server): ``` npm install --global http-server http-server path/to/web...

I used `yarn kill-port 3000` in CI but then realised it was not finishing the process the way I was expecting. A file that was supposed to be written on...

This issue with tuples will likely apply to `j` and `v` outputs too. It seems that [elm-string-representation](https://github.com/gicentre/litvis/tree/master/packages/elm-string-representation) struggles with turning `[(`, `),(` and `)]` into a valid JSON. What would...