Giorgi Lagidze
Giorgi Lagidze
Hello. Here is code I found in your project. ``` try { yield article.uploadAndSave(req.file); req.flash('success', 'Successfully created article!'); res.redirect(`/articles/${article._id}`); } catch (err) { res.status(422).render('articles/new', { title: article.title || 'New Article',...
I tried putting 10,000 coordinates into array and loop through it like this. `` It looks like performance is so horrible for 10,000 that it really almost tries to crash...
**TypeScript Version:** 3.8.3 **Code** This is my `tsconfig.json` ```json { "compilerOptions": { "typeRoots": [ "./typings" ], "types": ["Phaser"] } } ``` In my project root, I got `package.json, package-lock.json, main.ts(empty...
Hey. Thanks for your help so far. I am using this plugin and also leaflet-draw plugin. When drawing sprites, each one of them is clickable. Clicks work fine. Now, after...
Hi, Thanks for this plugin. Let's say I have a component which I pass markers. And use your code to draw them. Now, parent component's data might change, so prop...
Hi, This is what I have currently.... ```js icons: [ { src: utils.resolve('static/assets/images/icons/android-chrome-512x512.png'), sizes: [72, 96, 128, 144, 152, 192, 384, 512], destination: path.join('assets', 'images', 'icons'), } ] ``` This...
### Issue Type (delete the irrelevant ones) - [x] Question ### Specs What version are you using? 2.18.0 What browser? Chrome ### Expected Behavior What did you expect to happen?...
Hi. Thanks for this nice package. I am curious about 2 things. 1) is it possible to add waypoints all at once instead of adding them one by once? 2)...
```js const [sender, receiver] = await provider.getWallets(); const mockContract = await deployMockContract(sender, abi); ``` Problem 1: Before, I even `mock` return values for the `mockContract`, I want to call function...
## Feature request #### Problem or desire I have been writing some docs for my own use case. The library is amazing. Though I need ideas. Some pages are quite...