That's true, the pull request diff viewer does not make viewing file renaming very clear and there could be conflicts.
On the other hand, what I see in practice is adding or removing context providers and layout components in the react router file, it becomes huge, and all the diffs change all of the lines with new indentation.
I know a guy in Toronto who used to offer loans from the Caymans to Chinese CEOs secured by 2x stock. If they default, he keeps the stock. So they take out a massive loan then immediately default. He sells at market, anything above half is profit. $100Ms.
I don't get it either. Google reads your email to serve better ads. You grant unroll.me access to filter marketing campaigns. Now they read your email too. Selling anonymous purchase info is pretty benign given the amount of access.
I read architecture.md in the runtime package and it looks perfect for binding websocket updates into components. I was really hoping for the following example:
* create a stand-alone relay store
* query and subscribe to changes, print to console
* imperatively push updated records into store
* see updated data in console
I assume this is possible, but maybe it's not? Or you need a graphql server or container component?
- It's easier to find a significant other with whom to produce offspring if you exhibit kindness and charity to others.
- Generosity is often reciprocated.
- Giving implies EQ so altruistic person also likely takes care of family.
That's the issue with statistical models with finite decisions and states, they don't include enough parameters and interactions to capture anything relating to real life.
Like imagine a prehistoric human feeds a weak stranger, later that month the stranger warns them of danger. It's so obvious how kindness could be beneficial gene.
For any parents out there: Please think long and hard before getting your kid prescribed. Get 2nd opinions, try nature or counselling, reflect if it's actually you who is the instigator. If you do go that route, know that your kid might not make it to 18, and if they do, might resent you deeply.
When experts in the same field looking at the same case can't agree even a little bit on best course of action, maybe it's not really science.
I was using that too, and switched over to Jest + Chai Assert. It was too difficult for me to replicate features like file watching, run only tests with changes for faster feedback loop, transpiling typescript and es6 in the same project, asset mocking, starting and stopping timers, etc. I only really used sinon.spy() so traded it for jest.fn().
RE: 2. Jest bundles Jasmine. It's primarily a test runner (like karma[1]) more than a framework. Jest includes mocking capabilities at the function level (like sinon[2]) and module level (like rewire[3]). It supports parallel execution, custom source code transpiling, file extension mocks (for webpack requires) and file watching. It favors large ES6 projects -- takes a second to start up.