Player FM - Internet Radio Done Right
75 subscribers
Checked 1d ago
הוסף לפני five שנים
תוכן מסופק על ידי ng-conf. כל תוכן הפודקאסטים כולל פרקים, גרפיקה ותיאורי פודקאסטים מועלים ומסופקים ישירות על ידי ng-conf או שותף פלטפורמת הפודקאסט שלהם. אם אתה מאמין שמישהו משתמש ביצירה שלך המוגנת בזכויות יוצרים ללא רשותך, אתה יכול לעקוב אחר התהליך המתואר כאן https://he.player.fm/legal.
Player FM - אפליקציית פודקאסט
התחל במצב לא מקוון עם האפליקציה Player FM !
התחל במצב לא מקוון עם האפליקציה Player FM !
S2 E19 - Dynamic Module + Component Loading Using any Observables
Manage episode 296977140 series 2763753
תוכן מסופק על ידי ng-conf. כל תוכן הפודקאסטים כולל פרקים, גרפיקה ותיאורי פודקאסטים מועלים ומסופקים ישירות על ידי ng-conf או שותף פלטפורמת הפודקאסט שלהם. אם אתה מאמין שמישהו משתמש ביצירה שלך המוגנת בזכויות יוצרים ללא רשותך, אתה יכול לעקוב אחר התהליך המתואר כאן https://he.player.fm/legal.
Single Page Applications (SPA) have many advantages, including increased interactivity, responsiveness, and user experience. However, a SPA often requires sending large chunks of JavaScript code to the client. This code must be downloaded and parsed by the client, not to mention the execution time required. There are many strategies to achieve a highly performant single-page application. One of the most commonly used strategies is to lazy-load as much of the application as possible. It's likely that the client does _not_ need the entire application's code upfront, rather, we can deliver a minimal amount of code to the client to bootstrap the application. We can then either prefetch and preload the remaining chunks or wait until the user interacts with a specific feature or module of our application, and then fetch and load the JavaScript that is necessary to render and execute.
As Angular developers, you are likely familiar with the built-in router's ability to lazy load child modules via routing. This is a big win for all of us. But, what if you could dynamically load modules and components at runtime? The Angular Show panelists (Aaron, Jennifer, and Brian) sat down with Jay Cooper Bell to learn more about this solution and the approach that he has used. Jay is the CTO and co-founder of Trellis, a fundraising platform for non-profit organizations, and a frequent contributor and speaker in the Angular community. Jay, and the team at Trellis, created rx-dynamic-component, an open-source library that enables Angular developers to dynamically load and mount a component at runtime using RxJS Observables. Jay teaches us about what he learned building the library along with the advantages of lazy-loading components using an Observable's next notification as the observer.
Don't forget to subscribe so you can continue to hang out with the Angular Show panelists as we learn from the Angular community!
Show Notes:
rx-dynamic-component source code:
https://github.com/trellisorg/platform/tree/master/packages/rx-dynamic-component
rx-dynamic-component demo:
https://github.com/trellisorg/platform/tree/master/apps/rx-dynamic-component-demo
https://blog.angular.io/ivys-internal-data-structures-f410509c7480
Video about Memory Management: https://www.youtube.com/watch?v=Zs-d6_FPfMY&t=1s
Article: https://www.nytimes.com/interactive/2021/05/24/us/tulsa-race-massacre.html
Connect with us:
Jay Bell - @JayCooperBell
Brian F Love - @brian_love
Jennifer Wadella - @likeOMGitsFEDAY
Aaron Frost - @aaronfrost
…
continue reading
As Angular developers, you are likely familiar with the built-in router's ability to lazy load child modules via routing. This is a big win for all of us. But, what if you could dynamically load modules and components at runtime? The Angular Show panelists (Aaron, Jennifer, and Brian) sat down with Jay Cooper Bell to learn more about this solution and the approach that he has used. Jay is the CTO and co-founder of Trellis, a fundraising platform for non-profit organizations, and a frequent contributor and speaker in the Angular community. Jay, and the team at Trellis, created rx-dynamic-component, an open-source library that enables Angular developers to dynamically load and mount a component at runtime using RxJS Observables. Jay teaches us about what he learned building the library along with the advantages of lazy-loading components using an Observable's next notification as the observer.
Don't forget to subscribe so you can continue to hang out with the Angular Show panelists as we learn from the Angular community!
Show Notes:
rx-dynamic-component source code:
https://github.com/trellisorg/platform/tree/master/packages/rx-dynamic-component
rx-dynamic-component demo:
https://github.com/trellisorg/platform/tree/master/apps/rx-dynamic-component-demo
https://blog.angular.io/ivys-internal-data-structures-f410509c7480
Video about Memory Management: https://www.youtube.com/watch?v=Zs-d6_FPfMY&t=1s
Article: https://www.nytimes.com/interactive/2021/05/24/us/tulsa-race-massacre.html
Connect with us:
Jay Bell - @JayCooperBell
Brian F Love - @brian_love
Jennifer Wadella - @likeOMGitsFEDAY
Aaron Frost - @aaronfrost
253 פרקים
Manage episode 296977140 series 2763753
תוכן מסופק על ידי ng-conf. כל תוכן הפודקאסטים כולל פרקים, גרפיקה ותיאורי פודקאסטים מועלים ומסופקים ישירות על ידי ng-conf או שותף פלטפורמת הפודקאסט שלהם. אם אתה מאמין שמישהו משתמש ביצירה שלך המוגנת בזכויות יוצרים ללא רשותך, אתה יכול לעקוב אחר התהליך המתואר כאן https://he.player.fm/legal.
Single Page Applications (SPA) have many advantages, including increased interactivity, responsiveness, and user experience. However, a SPA often requires sending large chunks of JavaScript code to the client. This code must be downloaded and parsed by the client, not to mention the execution time required. There are many strategies to achieve a highly performant single-page application. One of the most commonly used strategies is to lazy-load as much of the application as possible. It's likely that the client does _not_ need the entire application's code upfront, rather, we can deliver a minimal amount of code to the client to bootstrap the application. We can then either prefetch and preload the remaining chunks or wait until the user interacts with a specific feature or module of our application, and then fetch and load the JavaScript that is necessary to render and execute.
As Angular developers, you are likely familiar with the built-in router's ability to lazy load child modules via routing. This is a big win for all of us. But, what if you could dynamically load modules and components at runtime? The Angular Show panelists (Aaron, Jennifer, and Brian) sat down with Jay Cooper Bell to learn more about this solution and the approach that he has used. Jay is the CTO and co-founder of Trellis, a fundraising platform for non-profit organizations, and a frequent contributor and speaker in the Angular community. Jay, and the team at Trellis, created rx-dynamic-component, an open-source library that enables Angular developers to dynamically load and mount a component at runtime using RxJS Observables. Jay teaches us about what he learned building the library along with the advantages of lazy-loading components using an Observable's next notification as the observer.
Don't forget to subscribe so you can continue to hang out with the Angular Show panelists as we learn from the Angular community!
Show Notes:
rx-dynamic-component source code:
https://github.com/trellisorg/platform/tree/master/packages/rx-dynamic-component
rx-dynamic-component demo:
https://github.com/trellisorg/platform/tree/master/apps/rx-dynamic-component-demo
https://blog.angular.io/ivys-internal-data-structures-f410509c7480
Video about Memory Management: https://www.youtube.com/watch?v=Zs-d6_FPfMY&t=1s
Article: https://www.nytimes.com/interactive/2021/05/24/us/tulsa-race-massacre.html
Connect with us:
Jay Bell - @JayCooperBell
Brian F Love - @brian_love
Jennifer Wadella - @likeOMGitsFEDAY
Aaron Frost - @aaronfrost
…
continue reading
As Angular developers, you are likely familiar with the built-in router's ability to lazy load child modules via routing. This is a big win for all of us. But, what if you could dynamically load modules and components at runtime? The Angular Show panelists (Aaron, Jennifer, and Brian) sat down with Jay Cooper Bell to learn more about this solution and the approach that he has used. Jay is the CTO and co-founder of Trellis, a fundraising platform for non-profit organizations, and a frequent contributor and speaker in the Angular community. Jay, and the team at Trellis, created rx-dynamic-component, an open-source library that enables Angular developers to dynamically load and mount a component at runtime using RxJS Observables. Jay teaches us about what he learned building the library along with the advantages of lazy-loading components using an Observable's next notification as the observer.
Don't forget to subscribe so you can continue to hang out with the Angular Show panelists as we learn from the Angular community!
Show Notes:
rx-dynamic-component source code:
https://github.com/trellisorg/platform/tree/master/packages/rx-dynamic-component
rx-dynamic-component demo:
https://github.com/trellisorg/platform/tree/master/apps/rx-dynamic-component-demo
https://blog.angular.io/ivys-internal-data-structures-f410509c7480
Video about Memory Management: https://www.youtube.com/watch?v=Zs-d6_FPfMY&t=1s
Article: https://www.nytimes.com/interactive/2021/05/24/us/tulsa-race-massacre.html
Connect with us:
Jay Bell - @JayCooperBell
Brian F Love - @brian_love
Jennifer Wadella - @likeOMGitsFEDAY
Aaron Frost - @aaronfrost
253 פרקים
כל הפרקים
×T
The Angular Plus Show

1 S9E12 | GraphQL for Angular Developers | Jay Bell 1:20:28
1:20:28
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:20:28
Our beloved former host, Jay Bell, stopped by this week to share what he’s learned about using GraphQL to speed up development and keep code quality on point. Always a blast having him back! https://graphql.org/learn/ https://www.apollographql.com/ https://the-guild.dev/ More about Jay: Bluesky: @jaycooperbell.dev LinkedIn: Jay Bell X: @JayCooperBell trellis.org https://graphql.org/learn/ https://www.apollographql.com/ https://the-guild.dev/ Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9E11 | Prompting Responsibly: Ethical AI Use | Michelle Frost 1:08:29
1:08:29
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:08:29
Today Michelle Frost from JetBrains joins Jan and Q to explore the challenges and opportunities of integrating AI tools directly into your IDE, discuss real-world scenarios around trust, transparency, and skill-building, and unpack what “responsible AI use” looks like. More about Michelle Bluesky: @aiwithmichelle.com LinkedIn: https://www.linkedin.com/in/michelle-frost-dev/ Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9 E10 | Angular Turns the Big 2-0! | Minko Gechev 55:46
55:46
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי55:46
It’s not everyday your favorite JavaScript framework releases its twentieth version! Join us with Minko as we find out what features graduate to stable, what changes we can expect, and more!! goo.gle/angular-v20 More about Minko X: @mgechev LinkedIn: Minko Gechev Bluesky: @mgechev.bsky.social Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9 E9 | Into Server-Side Rendering | Brygida Fiejdasz 1:16:43
1:16:43
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:16:43
We talked about SSR here before. This week we sat down with Brygida and continued this conversation, covering some more of the in-depths of SSR and what it means for you and your team! More about Brygida: https://www.linkedin.com/in/brygidafiejdasz/ https://x.com/brydziaf https://www.instagram.com/speed_date_with_angular/ https://www.youtube.com/@SpeedDateWithAngular Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9E8 | TypeScript: the types, the mistakes, and the growth| Jan-Niklas Wortmann & Chau Tran 1:09:23
1:09:23
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:09:23
Chau and Jan sit down and talk about the "TYPE" in TypeScript because Chau comes across an amazing talk Kris Jenkins called Communicating in Types. Chau shares about his mistakes with error handling patterns with Remix in TypeScript. Jan seems to enjoy it and we think you will enjoy it too. https://www.youtube.com/watch?v=SOz66dcsuT8 More about Chau & Jan-Niklas X: @niklas_wortmann @Nartc1410 LinkedIn: Jan-Niklas Wortmann Chau N Tran Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9E7 | Writing Tests That Won't Cause Headaches | Younes Jaaidi 1:20:08
1:20:08
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:20:08
Testing your code should not be painful and it shouldn't set you up for painful refactors down the road. Our guest Younes Jaaidi shares his stratgey for writing tests that flips the way we think about writing test AND code on it's head. Younes' cookbook: Younes' Cookbook https://poku.io/ More about Younes https://twitter.com/yjaaidi https://www.linkedin.com/in/yjaaidi/ https://bsky.app/profile/younesjd.dev https://github.com/yjaaidi https://medium.com/@yjaaidi Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9E6 | AI Agents Getting It Done | Rizel Scarlett 46:11
46:11
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי46:11
We all hear about AI every single day, but what are AI Agents and how are they used? Join us today as we talk with Rizel Scarlett from Block! More about Rizel X: https://x.com/blackgirlbytes LinkedIn: http://linkedin.com/in/rizel-bobb-semple Bluesky: https://bsky.app/profile/blackgirlbytes.bsky.social YouTube: https://www.youtube.com/shorts/vHK9Xg_d6Sk Block AI Agent: https://github.com/block/goose Resilient Coders: https://www.resilientcoders.org/ LinkedIn Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9E5 | Let's talk about Cypress | Mark Noonan 50:42
50:42
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי50:42
Cypress is a fantastic tool for E2E, but also component testing. In this episode we sat down with Mark Noonan, product manager at cypress. Other than Cypres we also extensively talked about testing accessibility, you don't want to miss that! More about Mark LinkedIn: Mark Noonan Bluesky: @marktnoonan.bsky.social Cypress Accessibility product page UI Coverage Angular component testing docs Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9E4 | Getting Started with SSR in Angular | Soumaya Erradi 1:06:01
1:06:01
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:06:01
Angular SSR has come a long way since the destructive hydration days, it's easier than ever to spin up a new ssr app or even add ssr to an existing app! Join us as we interview Soumaya Erradi about getting into SSR, what the best new features are, and even how to get started debugging! More about Soumaya LinkedIn: Soumaya Erradi X: @sumy92 Bluesky: @sumyerradi.bsky.social Hybrid Rendering Guide NG Baguette Conf Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf/2025 Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9E3 | From Idea to Mic: Writing Winning Talk Proposals | Chris Woody Woodruff 43:22
43:22
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי43:22
Want to land your first (or next) speaking slot at a tech conference? Join us as Chris Woody Woodruff (Sessionize "Most active Speaker" badge for 2023 & 2024) breaks down the art of crafting talk proposals that get noticed—and accepted. From brainstorming compelling topics to writing titles and abstracts that stand out in a sea of submissions. Whether you’re a first-time speaker or looking to sharpen your proposal game, you’ll learn some practical tools to move your idea from concept to conference stage. Resources: Presentation Zen book ASP.NET Core Reimagined with htmx Book https://woodruff.dev/ Sessionize More about Woody LinkedIn Blog Company Mastodon BlueSky Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9E2 | Maintaining and Updating Legacy Angular | Katarzyna Płocka 1:10:18
1:10:18
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:10:18
It is hard to be an Angular developer without running into "legacy" Angular code, especially when we consider the number of features and updates that have been released by the Angular team in the past few years. In this episode, we talk with Katarzyna Płocka from ngGirls and Motorolla about how she and her teams manage their code bases to keep their applications performant, up to date, and easy to maintain. More about Katarzyna X: @pelagia1232 LinkedIn: Katarzyna Anna (Puczko) Płocka ng-girls Follow us on: X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge on Salt Lake City, UT every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S9 E1 | Let's Make Stupid S**T | Jason Lengstorf 1:00:03
1:00:03
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:00:03
Join us as we talk with Jason Lengstorf about how adding fun and creativity to your coding can actually help you be a better coder! More about Jason: X: @jlengstorf , @codetv_dev Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge on Salt Lake City, UT every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S8E16 | What's New in Angular Material | Ankita Sood 1:12:33
1:12:33
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:12:33
When it comes to component libraries, there are several choices, but there is only one that is maintained by that Angular team at Google. Angular Material has been quietly updating and adding features. In version 19 of Angular, Angular Material uses Material Design 3, design tokens, and so much more. Join us today as we talk with Ankita Sood about what's new in Angular Material and why Ankita's team uses Angular Material every day. More about Ankita X: @GuacamoleAnkita LinkedIn: Ankita Sood Bluesky: @ankitasood.bsky.social Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge on Salt Lake City, UT every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S8E15 | Angular testing, micro-frontends, and more! | Rainer Hahnekamp 51:55
51:55
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי51:55
This is an episode of the Angular Plus Show that you will not want to miss. We welcome Rainer Hahnekamp to the show to learn about his Angular community contributions to NgRx, NgRx Toolkit, Playwright Component Testing and more. Rainer is a Google Developer Expert in Angular and a software architect at Angular Architects. Rainer shares his experience building open-source software for the Angular community and answers all of the questions on testing, micro-frontends and more. More about Rainer: X: @rainerhahnekamp LinkedIn: Rainer Hahnekamp Bluesky: @rainerhahnekamp.bsky.social https://www.youtube.com/@ng-news https://www.youtube.com/@RainerHahnekamp Follow us! X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge on Salt Lake City, UT every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
T
The Angular Plus Show

1 S8 E14 | Auth for Modern Angular | Alisa Duncan 1:00:21
1:00:21
הפעל מאוחר יותר
הפעל מאוחר יותר
רשימות
לייק
אהבתי1:00:21
Join us and Alisa Duncan as we explore auth for Modern Angular! More about Alisa X: @AlisaDuncan LinkedIn: J. Alisa Duncan Follow us on X: The Angular Plus Show Bluesky: @theangularplusshow.bsky.social The Angular Plus Show is a part of ng-conf. ng-conf is a multi-day Angular conference focused on delivering the highest quality training in the Angular JavaScript framework. Developers from across the globe converge on Salt Lake City, UT every year to attend talks and workshops by the Angular team and community experts. Join: http://www.ng-conf.org/ Attend: https://ti.to/ng-conf Follow: https://twitter.com/ngconf https://www.linkedin.com/company/ng-conf https://bsky.app/profile/ng-conf.bsky.social https://www.facebook.com/ngconfofficial Read: https://medium.com/ngconf Watch: https://www.youtube.com/@ngconfonline Edited by Patrick Hayes https://www.spoonfulofmedia.com/ Stock media provided by JUQBOXMUSIC/ Pond5…
ברוכים הבאים אל Player FM!
Player FM סורק את האינטרנט עבור פודקאסטים באיכות גבוהה בשבילכם כדי שתהנו מהם כרגע. זה יישום הפודקאסט הטוב ביותר והוא עובד על אנדרואיד, iPhone ואינטרנט. הירשמו לסנכרון מנויים במכשירים שונים.