You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Really enjoyed the Medium writeup- I have a gallery of food-related pictures that I've been thinking of turning into a project someday, so this might come in handy!
Wanted to ask if you'd looked into using WebWorkers to do some of the computation on background threads instead of the main Javascript thread? The catch with Web Workers is they can't touch the DOM directly, but you can pass mathematical / network request related tasks to them and they can give the result back to your main application thread. @kosamari gave an example in her OpenVis talk this year.
The text was updated successfully, but these errors were encountered:
Really enjoyed the Medium writeup- I have a gallery of food-related pictures that I've been thinking of turning into a project someday, so this might come in handy!
Wanted to ask if you'd looked into using WebWorkers to do some of the computation on background threads instead of the main Javascript thread? The catch with Web Workers is they can't touch the DOM directly, but you can pass mathematical / network request related tasks to them and they can give the result back to your main application thread. @kosamari gave an example in her OpenVis talk this year.
The text was updated successfully, but these errors were encountered: