-
-
Notifications
You must be signed in to change notification settings - Fork 29
React Native EU Conf 20
LeoTM edited this page Apr 18, 2023
·
12 revisions
- React Native EU 2020: Eli White - Modernizing React Nativeβs JavaScript
- React Native EU 2020: Steven Moyes - Building For Desktops And Dual Screens
- React Native EU 2020: Kudo Chien - Extending React Native To The Next Platform
- React Native EU 2020: Brent Vante - React Native Or Expo? Both.
- React Native EU 2020: Parashuram N - React Native Performance - Take 2
- React Native EU 2020: Omri Bruchim - Performance Does Matter - Making Your React-Native App Fast
- React Native EU 2020: Yann Leflour - XState β€οΈ NoNav - Taking Back Control Of Navigation
- React Native EU 2020: Aleksandra Desmurs-Linczewska - An Animation Showcase: RN App Can Ce Beautiful
- React Native EU 2020: Akshat Paul - Lets Go 3D With React Native
- React Native EU 2020: Jesse Katsumata - Visual Regression Test In React Native
- React Native EU 2020: Maria Marchenkova & MichaΕ PierzchaΕa - Testing Library Meets React Native
- React Native EU 2020: Fabrizio Bertoglio - Contributing To React Native Is Easy
- React Native EU 2020: Pavlos Vinieratos - Xcode Complexity? No More.
- React Native EU 2020: Monica Restrepo - The great Divide: Bridging Native Modules And React Native
- React Native EU 2020: Dylan Jhaveri - Porting Your SDK To React Native
- React Native EU 2020: Kadi Kraman - GraphQL And React Native - The urql Edition
- React Native EU 2020: Saknet Sahu - Building Real-Time Multi-User Apps With JSON Patches
- React Native EU 2020: Juha Linnanen - GraphQLifying React Native App
- React Native EU 2020: Gant Laborde - Who Said It?
- React Native EU 2020: Alexander Kuttig - The Power Of Process Automation
- React Native EU 2020: Talia Nassi - Controlled Mobile Rollout With React Native And Feature Flags
- React Native EU 2020: Sebastien Lorber - Cross-platform: ReactNative, Jamstack, And Beyond
- React Native EU 2020: RamΓ³n Huidobro - 5 Lessons Learned From A Major React Native Upgrade
Getting the vid names
for (const item of document.getElementsByTagName('h4')) { console.log(item.children[1].innerHTML) }
Getting the links
for (const item of document.querySelectorAll('[id=playlist-items]')) { console.log(item.children[0].href) }
// or firstElementChild
Putting 'em all together (old skool Vanilla JS awakening π€―)
for (const item of document.querySelectorAll('[id=playlist-items]')) { console.log(`[${item.firstElementChild.href}](${item.firstElementChild.firstElementChild.children[2].children[1].children[1].innerHTML})`) }