Lucene search
+L

85 matches found

Jake Archibald's Blog
Jake Archibald's Blog
added 2017/04/18 3:25 p.m.21 views

Async iterators and generators

Streaming fetches are supported in Chrome, Edge, and Safari, and they look a little like this: async function getResponseSizeurl const response = await fetchurl; const reader = response.body.getReader; let total = 0; while true const done, value = await reader.read; if done return total; total +=...

7.1AI score
SaveExploits0
ThreatPost
ThreatPost
added 2016/08/30 12:23 p.m.36 views

Privacy Groups File FTC Complaint over WhatsApp Data Sharing with Facebook

Alleging a trail of broken promises, two privacy-focused advocacy groups yesterday filed a complaint with the Federal Trade Commission against a recent WhatsApp privacy policy change that states it will begin sharing user data with parent company Facebook. The Electronic Privacy Information Cente...

6.9AI score
SaveExploits0References6
Jake Archibald's Blog
Jake Archibald's Blog
added 2014/09/24 12:25 a.m.16 views

Using ServiceWorker in Chrome today

The implementation for ServiceWorker has been landing in Chrome Canary over the past few months, and there's now enough of it to do some cool shit! Unnecessary representation of "cool shit" What is ServiceWorker? ServiceWorker is a background worker, it gives us a JavaScript context to add featur...

6.2AI score
SaveExploits0
Jake Archibald's Blog
Jake Archibald's Blog
added 2014/03/27 12:00 a.m.12 views

ES7 async functions

They're brilliant. They're brilliant and I want laws changed so I can marry them. Update: This feature is now shipping in browsers. I've written a more up-to-date and in-depth guide. Async with promises In the HTML5Rocks article on promises, the final example show how you'd load some JSON data fo...

0.1AI score
SaveExploits0
Jake Archibald's Blog
Jake Archibald's Blog
added 2014/03/13 12:00 a.m.26 views

Promises: resolve is not the opposite of reject

When I first started working with promises I had the overly simplistic view that passing a value into reject would mark the promise as "failed", and passing a value into resolve would mark it as "successful". However, the latter isn't always true. new Promiseresolve, reject = resolvesomething;...

0.2AI score
SaveExploits0
Rows per page
Query Builder