In this video, we will explore the topic of Reflection and how that can be used to write cleaner software. Reflection allows us to examine and modify the structure and behaviour of a program at runtime. We will be...
Category - Video
Dart and MongoDB Tutorial #3: Refactor our RESTful API into Controller classes
In the last video we wrote a RESTful api to interface with a MongoDB database. In this video we will learn how to refactor our solution into a PersonController class responsible to facilitating communication with our...
Dart and MongoDB Tutorial #2: Implement a RESTful api to interface with our database
In the last video we learnt how to talk to a MongoDB database using the mongo_dart package. In this video we will learn how to write a RESTful api to talk to our MongoDB database with inbuilt Dart classes and the...
Dart and MongoDB Tutorial #1: Using the mongo_dart package
In this video series, we will learn how to talk to a MongoDB database with Dart, using the mongo_dart package. MongoDB is a well-known NoSQL database that stores its items as JSON documents (BSON to be exact). At the...
AngularDart Tutorial #6: Firebase Integration Complete
In the previous part we began integrating Firebase as our database for persisting our bookmark entries. In this AngularDart tutorial, we will continue to use the Firebase Dart package to interact with our online...
AngularDart Tutorial #5: Firebase Integration
In the previous part we implemented basic form validation using the NgForm directive with its NgControl counterpart. In this video we will learn how to integrate Firebase as our database for persisting our bookmark...
AngularDart Tutorial #4: Forms and Validation
In the previous video, we refactored our form functionality into a separate component, using the special annotations to bind custom attributes and define custom events. In this part you will learn how to implement...
AngularDart Tutorial #3: Components and Events
In the previous video we added the capability of creating and editing bookmarks. We will now refactor our form functionality into a separate component as a means of keeping that concern contained within its own context...
AngularDart Tutorial #2: Create and Edit Functionality
In the previous tutorial we built our scaffold component and implemented the delete functionality for our bookmarks. We will now implement the features of creating and editing bookmarks. We will use the Bootstrap UI...
AngularDart Tutorial: Let’s Build a Bookmark Manager (Part 1)
In this video series we will be looking at the AngularDart framework, building a Bookmark Manager to store our favourite clippings from the web. This single page app will allow us to perform the usual CRUD operations...