MBAs are seen as people without skin in the game. They are rewarded if things are going well, and are not punished if things go bad. The asymmetry makes these individuals look as if they are here to leech and most of their knowledge is just how to "network". Just pick any big bank and look at how the board members rotate as time goes on.
I remember that a bunch of my classmates in elementary school knew German through watching Pokemon on a German cartoon channel that was broadcasted in Croatia (required no paid subscription, unlike Cartoon Network).
Yes, but the usual cases of -> "app starts -> load some state from local storage -> store it in memory for sync access -> do app" sometimes get lost due to the ease of async/await syntax.
If you have to chain network requests but each request depends on results of the former ones, then async/await makes it really pretty.
I have no idea how much async/await is too much.
What I do dislike is that storage loads, network requests and other things are tied to the same type, so when you look at code, you have no idea what's happening inside those async functions, but that story is for some other time.
Sometimes you don't want to pause (with await) and give something else the chance to execute (happens a lot in UI).
When code is sloppily written you realize that at some point you can't use much of the existing code outside of async.
One nice example of polluting the codebase is having async local storage. Now everything that reads from the storage needs to be annotated async and now your initialization pipeline might be insanely async. Good way to avoid it is to read the whole local storage at the beginning (having a sync interface) and then everyone just reads without await.
From recent experience, I did exactly that with storage and ended up removing thousands of async annotations that were no longer necessary.
Similar "mistakes" happen for other things and then at some point you are putting loading guards everywhere because your async operations are always awaiting and letting the UI update when it should not.
Using fp-ts there is never a need for async/await and the code is still linear, (Promise is transformed to TaskEither<Error, Result>, similar to the example in the article, although you can ignore the error and just map over the result, handling the error somewhere near the end of the chain).
Problem with async/await is that the syntax is so easy that eventually the whole codebase gets polluted by it, even parts that could have been completely separated.
From the coding perspective, the problem with promises arise when there is a need to bind the intermediate results. You can either store them in an object and return that object for the next .then(fn) call, or you can nest inside a promise. I guess nesting is what annoys people the most (pyramid).
Automatically evaluated leet coding session (2 hours) + Live English language check interview (15 mins) + 2 week fake template project + Live coding session (30 mins).
I was fortunate enough to pass everything without additional attempts and had no job at that time. Some of my friends got in after 1 year (after you fail at some step, 2nd attempt is delayed), some never managed to complete the whole process.
This was my experience too. After the initial period where recruiters are a bit afraid to give you your first engagement everything starts flowing really smooth.
I started at Upwork and was constantly writing proposals and struggling with the search to find relevant jobs.
But on Toptal, even after an abrupt end of the contract I get something else in less than a week and it's zero effort from me and all effort from the Toptal team.
Even if I get bored and want a change, announcing the end of contract turns on the avalanche of offers from the Toptal team.
It's just insanely smooth and I had no idea I'd find something like that, initially.
In Europe some families are still insanely rich from being rich 500 years ago. There's not much being written about them today as many do not seek publicity.
Yes, I saw the figure and that's why I commented that the day 2 conversions for the control are basically giving all of the information in the assumed model.
To me it just looks like a whole new batch of assumptions. Might be fictitiously valid or not.
A/B tests work fine if the signal you are measuring is strong. This is not the case here.
Is it even fine to use the distribution assumptions in the later analysis?
Looks like these assumptions combined with a higher conversion rate on day 2 for control is the main reason for the surprising result (control is obviously spread out).
I guess it depends on what OP is talking about. Async code can be written with callbacks (callback hell incoming), or with Futures/Promises, or with syntax sugar like async (do notation).
Whatever the reason is for using async, I believe that the mismatch happens not because Async is optimized for I/O bound programs but because it's insanely easy to use (in Rust, Javascript).
async, when looked at from the "writing code" perspective is horrible.
it pollutes every function with async annotation.
it allows you to quickly write the code imperatively by just annotating a function and using the async function inside it.
it results in code that is massively polluted with async when at most places you never had to use it at all (if you just restructured the code).
having async be as verbose as possible would enforce people to not use it as much and to structure their code to have async bits nicely separated from non-async bits.
For example x^2 is in O(x^2) but is not in o(x^2).