@arseblog_live If we concede one more goal. We will be at the bottom of the table. Not a fan for long started following in 2010 but i think tuhis will be the worst so far I have seen.
Amazing work, Coinbase!
They successfully migrated all of their mobile apps onto React Native, with improved app store ratings, performance, and crash rates than their native apps. 😍
@DiegoCalvoU@shahedC@AzureStaticApps It's good to hear that finally my favourite cloud provider support this. I was relying on vercel for something like this for last year or so.
Get ready to doodle your way through Google Cloud products in @pvergadia’s whiteboard sketch series. In 3 minutes, you'll learn about Compute Engine and how to use it for projects while managing costs → https://t.co/jK5r0d92wG
A trick I learned from @naval to get rid of envy:
If you are going to be jealous of someone, you must be willing to swap your *entire* life for theirs.
You can’t cherry-pick the aspect of their life you want.
You must give up *everything* you have and know.
Not interested.
Always tailor your offering to the problem you're solving, not the way in which you plan to solve it.
People don't want a drill; they want holes. If they could buy a package full of holes, nobody would buy a drill.
Focus on the problem you'll solve, not the tools you'll use.
Great piece by @martinfowler on collection pipelines.
Love the way used to explain the operations you often find in collection pipelines:
https://t.co/lzk7SSoPiZ
...we found a quick, 4-min @ThePracticalDev intro into the goodies found in the new release of #CSharp 9. It'll probably be pretty useful to you in the future. Check it out: https://t.co/uzczsMV43l
How to #sort an #array in #JS. Am i doing it wrong ?
const arrayToSort = [200, 110, 154, 194];
for (const item of arrayToSort) {
setTimeout(() => {
console.log(item);
}, item);
}