@Noah333777888 please DM me when you have a chance. It's regarding an ENS name currently in your possession. Would contact by other means but unable to find your contact info. Thanks.
@mint@Intuit I'm a user of https://t.co/kswkp7pROa logging on to the site and this is what I'm seeing in browser dev console... I'm an end user logging on to PRODUCTION not dev or staging or qa or whatever. And seeing this. Is this for real??? You think this is okay? ๐ฆ
๐ I made a small tool for everyone: CSS Grid Generator. You can designate rows, columns, gaps, and units, and then drag to create child divs to make dynamic layouts with ease!
Open source on GitHub and deployed on @Netlify
https://t.co/IslfoUYyKL
@NameBazaar0x When is the approx. ETA on the https://t.co/rc5dJKop0R site being back up? How do I contact someone at your group for support regarding a specific issue? Thanks!
just learned a neat trick from the Three.js source code: if you want to remove an item from an array whose order doesn't matter, don't do this...
array.splice(index, 1); // slooooowwwww
...do this:
array[i] = array[array.length - 1];
array.pop(); // orders of magnitude faster!
Been possessed by this problem recently and finally got everything working. All this just to ensure that when you type in https://t.co/VYz3l9YGDb and push the enter key, *your* stuff comes up semi-instantaneously, with no spinners.
Personal learning project using @zeithq Next.js 8.0 with target: "serverless", plus @Firebase auth, plus @apollographql API, all deployed as lambdas. I think something like this is what happens anytime you log on to Facebook or any other SSR app.
Weโve just released React 16.8 with a stable version of Hooks. React Hooks let you use features like local state and lifecycle without writing a class. Theyโre fully backwards-compatible and you can start using them today. https://t.co/didbtI06Ie
In my opinion, it should be standing law that when the government shuts down, Congress should not receive their salaries. They should also stay in session, working until a resolution is reached. I would venture to say that any shutdown wouldnโt last more than about 3 hours! 2/3
Ever wondered what happens when you run `ReactDOM.render(<App />, root)`?
Here's a full stack trace. FYI this is:
- initial mount only
- production: omits everything in __DEV__ blocks (a lot)
- omits everything related to profiler and user timing APIs (a lot) @dan_abramov
Appears that Twitter is automatically downsampling the image, dangit.
Quick summary: 291 function calls up to 27 stack frames deep, just to mount:
<div><h1>Hello World</h1></div>
Number of calls easily double this with dev stuff, profiler, etc. turned on.