Artem Tyurin
Artem Tyurin
In Deserializer, https://github.com/baalexander/node-xmlrpc/blob/master/lib/deserializer.js#L276 Instead of ``` js var buffer = new Buffer(data, 'base64') ``` I need ``` js var buffer = String(new Buffer(data, 'base64')) ``` Can you export the Deserializer...
Most of work seems to be done by @Fensterbank in https://github.com/agentcooper/react-pdf-highlighter/issues/62#issuecomment-742059853. It would be great if someone can send a PR based on that work. Previous issues: - #62 -...
Code should use [portals](https://reactjs.org/docs/portals.html) instead of calling `ReactDOM.render` inside `renderHighlights`.
1. Open http://online.swiftplayground.run/ 2. Click `Sign out` 3. Try to use the [link with ?sourceURL=](http://online.swiftplayground.run/?sourceURL=data:text/plain,enum%20Food%20%7B%0A%20%20case%20vegetable%0A%20%20case%20fruit%0A%20%20case%20fastfood%0A%7D%0A%0Avar%20farm%3A%20%5BFood%3ASet%3CString%3E%5D%20%3D%20%5B%0A%20%20.vegetable%3A%20Set(%5B%22%F0%9F%8D%85%22%2C%20%22%F0%9F%8C%BD%22%5D)%2C%0A%20%20.fruit%3A%20Set(%5B%22%F0%9F%8D%8C%22%2C%20%22%F0%9F%8D%8F%22%5D)%0A%5D%0A%0Aif%20let%20vegetables%20%3D%20farm%5B.vegetable%5D%20%7B%0A%20%20if%20(vegetables.contains(%22%F0%9F%8D%85%22))%20%7B%0A%20%20%20%20print(%22We%20have%20tomatoes!%22)%0A%20%20%7D%0A%7D%0A) (or just use an incognito session for the link) **Expected:** Playground with code. **Actual:** Page...
Hey. I see that some work was already done in https://github.com/isomorphic-git/lightning-fs/tree/feat/native. What is the timeline for this and what are the current blockers? For reference: https://www.chromestatus.com/feature/6284708426022912.
- TypeScript AST viewer http://ts-ast-viewer.com/ (https://github.com/dsherret/ts-simple-ast)
Playground should have examples documenting various TS feature and known quirks and bugs.
UI should provide share popup where user can control sharing settings: - Option to include compiler options in the share url - Copy link as markdown/html
A hidden feature already exists for specifying `--lib` params in the URL, example: https://agentcooper.github.io/typescript-play/?lib=lib.esnext.d.ts#example/async-generators (will fetch and load lib.esnext.d.ts) This should be exposed in the UI.