Claus Wahlers

Results 27 comments of Claus Wahlers

This bug was briefly fixed, but is back with a recent release.

Here's my take: https://gist.github.com/claus/992a5596d6532ac91b24abe24e10ae81 It should satisfy all of @feluxe's [requirements](https://github.com/zeit/next.js/issues/3303#issuecomment-597810586) and behave like native scrollRestoration, although i haven't tested it too much yet. I ran it through Chrome, Firefox...

@ndimatteo In a current project i also ran into something like that (consistently in all browsers though). Something is setting scroll position immediately on click on a `Link`, even though...

I realize that this issue is old but i thought i let you know that i wrote a Proxy wrapper around tweenjs that does what you're asking for. Tweenjs API...

This is an interesting problem. In traditional centralized applications, timestamping happens on the server, ensuring that timestamps are consistent. In decentralized applications, there is no central authority that handles those...

Time, Clocks, and the Ordering of Events in a Distributed System http://amturing.acm.org/p558-lamport.pdf Just leaving this here, he lost me somewhere on page 3 :) But maybe it helps? Also, i...

Two suggestions: 1. Uglify: https://github.com/haadcode/orbit/pull/56 (7.64mb -> 3.04mb) 2. Have Webpack split vendor code into separate bundles (js-ipfs related stuff into one, React into another maybe?) See https://webpack.github.io/docs/code-splitting.html#split-app-and-vendor-code. This doesn't...

You should also tell your server at orbit.libp2p.io to gzip files. That would bring `main.js` down to 833kb :)

Re: codecs, for mp4 at least, we can use [MP4Box.js](https://github.com/gpac/mp4box.js#onreadyinfo) to get the codec info that MediaSource needs. Store that in the meta field we now have in https://github.com/haadcode/ipfs-post/blob/master/src/FilePost.js, and...

Also, mp4s need to be fragmented for MediaSource playback. I think MP4Box can solve that, too.