General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Fireship
comments
Comments by "" (@AaronJack) on "Fireship" channel.
Previous
1
Next
...
All
So many things could be built around puppeteer, and the await syntax makes it so easy to reason about. Also seems like this is a perfect use-case for cloud functions vs having a dedicated API server. Great video.
32
big fan of these tips and your production quality is amazing. subscribed
15
😂refine our dopamine hits. reminds me of the book hooked by nir eyal, it's an eye opening way to undestand (or abuse) human's addictive tendencies as they pertain to digital products.
7
awesome, information dense video. super interesting to see why some of the weird quirks of JS got in there
3
So many good talks at Google IO this year -- loved the new JS / chrome features talks. Jeff, any chance you could make a video comparing Firebase to Google cloud store etc?
2
awesome tutorial -- I wrote paypal off over stripe a while ago due to API docs but given how easy this seems... this could be a game changer for paypal, especially since people "trust" paypal more due to name recognition. Would be interesting to see the stats of how many people choose PP over your Stripe checkout % wise. one thing I noticed btw, the script element may be appended twice in your useEffect hook, since document.body.appendChild will run a second time once the loaded variable updates. not a huge issue now but could be trouble if more state hooks are added as it would run anytime one of them updates. a workaround could be to load the script tag in a first "componentDidMount" useEffect hook by passing in an empty array as the second arg, then another useEffect that uses an array with [loaded] as the only value. This "watches" the loaded variable for updates.
2
Previous
1
Next
...
All