Latest Web technology Podcast Episodes

Angular Rocks artwork

RxJS with Ben Lesh

Angular Rocks - August 10, 2022 10:00 - 47 minutes
RxJS (Reactive Extensions for JavaScript) is a complex and very interesting topic. The Rx (Reactive Extensions), originating from Microsoft, has been around for a very long time migrating from one platform to another. These days every programming language has its own native implementati...

Angular Rocks artwork

Reactive Angular

Angular Rocks - August 11, 2021 11:00 - 2 minutes
There is a lot of buzz around reactivity and reactive programming these days. All reactive Angular API is built on top of RxJS library so there is a lot of reactivity built-in within Angular. What do you think, should Angular have First-class RxJS support, should it be optional or ma...

Angular Rocks artwork

Designing Reusable Components with Tomas Trajan

Angular Rocks - August 04, 2021 10:00 - 48 minutes
Component is the central piece in Angular. Sometimes you want to generalize a particular component, to make it shareable across your application or to move into a custom component library to share it around multiple applications. It is important to understand how to approach shareable c...

Angular Rocks artwork

Web Components and Angular Elements

Angular Rocks - July 28, 2021 10:00 - 4 minutes
Web Components are also known as Custom Elements. Custom Element is a web standard for defining new HTML elements in a framework-agnostic way. There are a set of different techniques that allow you to build Web Components or Custom Elements. Being an Angular Developer you can easil...

Angular Rocks artwork

Developer Tools with Minko Gechev

Angular Rocks - July 21, 2021 10:00 - 45 minutes
I split up the developer tools into multiple categories  Development and productivity Debugging Performance Testing In this episode we discuss each category in details as well as answering the following questions: Why do we need developer tools? Can you imagine a dev life without ...

Angular Rocks artwork

Angular multi-project workspace

Angular Rocks - July 14, 2021 11:00 - 2 minutes
Every time you scaffold a new project with Angular CLI ng new command, the CLI, by default, produces an Angular CLI workspace for that project.  In some cases when you are working on multiple Angular projects under the same solution you may want to try out a Multi-project Workspace. Th...

Angular Rocks artwork

Angular Change Detection with Wassim Chegham

Angular Rocks - July 07, 2021 10:00 - 39 minutes
Change Detection is a mechanism built into Angular that allows Angular to decide what actions to be performed when the state of the app changes. Most of the time developers do not have to deal with change detection manually. In this episode we are talking about a quick history of chang...

Angular Rocks artwork

Keeping Angular Projects Up To Date

Angular Rocks - June 30, 2021 10:00 - 2 minutes
Angular is continuously evolving together with the entire web ecosystem. Therefore, it is a recommended best practice to keep up your Angular projects up to date with the latest Angular version. In this episode, you will learn why updating to a new Angular version is a good idea. Als...

Angular Rocks artwork

Animations with William Juan

Angular Rocks - June 23, 2021 10:00 - 24 minutes
Animation is a great solution to improve the application experience. You can add animations to your web applications using CSS animations, browsers web animations API or by using third-party libraries. Juan talking bout different aspects of animations, how it works and how to get star...

Angular Rocks artwork

Responsive Design

Angular Rocks - June 16, 2021 10:00 - 3 minutes
These days, people use different devices to access the web. Therefore, every web application should be adapted to all screen sizes. Responsive Design is a technique that allows screens to adjust to different sizes accordingly. There are a few techniques to make your Angular Apps respo...

Angular Rocks artwork

Angular Material with Jeremy Elbourn

Angular Rocks - June 09, 2021 10:00 - 39 minutes
Angular Material is the most popular UI library available for Angular. It contains a set of high-quality components implementing Google Material Design specification, built by the Angular Team. Think of Angular Material as a foundation that you can use to build your own custom componen...

Angular Rocks artwork

Angular CDK

Angular Rocks - June 02, 2021 10:00 - 2 minutes
CDK stands for Component Development Kit. CDK is something that not every Angular developer knows about. CDK contains a set of building blocks for creating your own UI components that could be great foundation for your custom components of any sort or a custom component library. Links...

Angular Rocks artwork

The History of Angular with Misko Hevery

Angular Rocks - May 26, 2021 11:25 - 37 minutes
Angular has been around for many years now.  There are a lot of decisions that were made within the Angular team that made Angular so successful today. AngularJS referring to v1 - the first version of the framework Angular referring to v2 and up, which is the new modern framework which...

Angular Rocks artwork

Component Communication Techniques

Angular Rocks - May 19, 2021 10:00 - 3 minutes
Component communication is the most common challenge developers face building single page applications. There are several techniques that you can use to approach components communication building Angular applications. In this episode I am discussing basic component communication techn...

Angular Rocks artwork

Angular Router with Justin Schwartzenberger

Angular Rocks - May 12, 2021 10:00 - 49 minutes
Angular router solves a lot of problems in client facing single-page web applications. The router helps to control the page content by dynamically displaying the components without a need to request pages from the server.  Without an Angular router the user navigation experience in ...

Angular Rocks artwork

Application Folder Structure

Angular Rocks - May 05, 2021 10:00 - 3 minutes
Have you ever asked yourself the following question, what is the best way to structure an Angular application? In this episode you will find out why you should care about the folder structure and what are the benefits of the proper folder structure. Links Feature modules

Angular Rocks artwork

Error Handling with Michael Karén

Angular Rocks - April 28, 2021 10:00 - 27 minutes
Error handling is a fundamental part of any real-world web application. In this episode, you will find everything you need to know about error handling in Angular and more. Fun fact: That is literally the first ever episode of Angular Rocks, recorded on 21 Jan 2021 Links Error Handl...

Angular Rocks artwork

Interacting with Backend API

Angular Rocks - April 21, 2021 10:00 - 3 minutes
Every real-world web application has to communicate with backend API. Developers building web applications with Angular usually interact with the backend API using HttpClient. In this episode I am explaining the basic HttpClient features and HTTP methods. Links Angular HttpClient H...

Angular Rocks artwork

Dependency Injection with Dmytro Mezhenskyi

Angular Rocks - April 14, 2021 22:00 - 26 minutes
Dependency Injection is a design pattern that creates objects and provides them to consumer classes that depend on those objects. Dependency Injection is widely used in Angular. In this episode you will find everything you need to know about Dependency Injection and how it works in A...

Angular Rocks artwork

Angualar Lifecycle Hooks

Angular Rocks - April 07, 2021 10:20 - 3 minutes
In this episode you will learn Angular lifecycle hooks 🪝

Angular Rocks artwork

Angular Lifecycle Hooks

Angular Rocks - April 07, 2021 10:20 - 3 minutes
Lifecycle hooks allow you to tap into the Angular lifecycle events to get more control. In this episode I am explaining the nature of lifecycle hooks in Angular and walking through the essential lifecycle hooks like ngOnInit and ngOnDestroy.  Links Angular Lifecycle Hooks

Angular Rocks artwork

Angular CLI with Alan Agius

Angular Rocks - April 01, 2021 11:00 - 25 minutes
Angular CLI is the most important piece of Angular ecosystem.  In this episode you will find everything you need to know about Angular CLI:  Brief history Top features Monorepos  Tips and tricks The future Links Alan Agius on Twitter Setup Multi Project Workspace Angular Package ...

Angular Rocks artwork

Angular Template Syntax

Angular Rocks - March 24, 2021 09:00 - 3 minutes
Angular template syntax powered by Angular built-in directives helps to do a lot of things within a component template. In this episode I am talking about the main features of an Angular template syntax. If you want to learn more, have a look in to Angular Cheat Sheet and the Demo App ...

Angular Rocks artwork

Angular Building Blocks

Angular Rocks - March 17, 2021 09:00 - 7 minutes
There is a number of building blocks in Angular: Components Services Modules Pipes Directives In this episode I am walking through the essential Angular building blocks and concepts. Links Introduction to Angular Concepts

Angular Rocks artwork

Things You Should Know About Angular

Angular Rocks - March 10, 2021 09:00 - 7 minutes
In this episode I am explaining what is Angular and answering the following questions: What does single-page client-side really means? Are there any differences between Angular and AngularJS? What are the benefits of using Angular?  Why developers and companies choosing Angular?  L...

Angular Rocks artwork

Hello World

Angular Rocks - March 02, 2021 00:11 - 1 minute
Angular Rocks: who it's for and what it's about. Hosted by kuncevic.dev

WebCamp KL artwork

Webcamp KL #12 – The Holy Cow Moment

WebCamp KL - March 03, 2012 17:08 - 2 hours ★★★★ - 3 ratings
What do they say be careful what we wished for? Indeed we are in a big surprise when roughly 150 people showed up for the event and have outgrown the hall that we’ve started Webcamp from! All we can say is: Thanks for making Webcamp KL a smash! We wouldn’t be able to reach such […]

WebCamp KL artwork

Webcamp KL on BFM Radio

WebCamp KL - November 22, 2011 08:47 - 13 minutes ★★★★ - 3 ratings
Finally! We are hitting mainstream! Webcamp KL was featured on BFM Radio today with an interview of the organizers, Wu Han and Seh Hui. During the show, we talk about how Webcamp KL got started, what makes Webcamp valuable and our mission to nurture a community of great people who are passionate ...

WebCamp KL artwork

Webcamp #10 – Spirits of Diwali

WebCamp KL - November 03, 2011 14:38 - 2 hours ★★★★ - 3 ratings
As luck has it, we had our Webcamp during Diwali: a festival of lights celebrated by the Indian community. While we do miss our fair share of murukku, we have a great lineup of speakers who were kind enough to spend time with us and share their expertise: Yam Tong Woo – My Blind Sight: How […]

WebCamp KL artwork

Webcamp #9 – WCKL All-Stars

WebCamp KL - October 02, 2011 05:06 - 2 hours ★★★★ - 3 ratings
What if you bring in all the most active members on the Webcamp KL Facebook group to give talks for the night? One word: EPIC! Yes, this month we have the all-stars lineup of experts and go on a full-on technical track, topics ranging from Google Analytics to blazing fast web development. Diving ...

Related Web technology Topics