André Cruz
André Cruz
After asking @pgte, it seems that we don't have compression of the data being sent between replicas. Brain dump: - Compression would help cases in which large amounts of deltas...
See: http://docs.couchdb.org/en/1.6.1/maintenance/compaction.html#views-cleanup
At the moment it's impossible to distinguish between users and organizations from the API search results. Adding a `type` (user, org) would allow to differentiate between them. Also the following...
I've came across this project and we, at the [IPFS DDC](https://github.com/ipfs/dynamic-data-and-capabilities/) working group, will be doing something very similar. To give you some context, the IPFS DDC works towards offering...
The `nextTick` polyfill is supplied by https://github.com/defunctzombie/node-process/blob/master/browser.js which uses timers. See: https://github.com/defunctzombie/node-process/issues/86. Because timers are often throttled when a tab is not active to improve battery life, they only run...
Some zip files, like [http://code.angularjs.org/1.0.7/angular-1.0.7.zip](http://code.angularjs.org/1.0.7/angular-1.0.7.zip) contain `:` and `,` in filenames which are not allowed in Windows. We should have an option, that somehow allows to change the final names...
https://github.com/react-bootstrap/dom-helpers/blob/536ae60e6cb13df301575ffb497f9ba02bace32c/src/getScrollAccessor.ts#L19 When offset is `pageYOffset`, `scrollTo` will be invoked with `scrollTo(currentPageYOffset, newPageYOffset)`. When offset is `pageXOffset`, `scrollTo` will be invoked with `scrollTo(currentPageXOffset, newPageXOffset)`. This doesn't seem to be right. What...
After digging deep into the code, I concluded that all the problems came from using `deasync`. - In Visual Code, I get the following error: This is because `deasync` is...
```html This container is green ``` ```css .container { &-green { background-color: green; } &.isLoading { background-color: grey; } } ``` The linter does not recognise .container.isLoading, even though they...
## Story As a user I want to prove/connect my social accounts. ## Description The user must be able to link social accounts to give more credibility to its identity....