Creating Your First Angular App: Implement Routing
Before going ahead with this tutorial, it is a good idea to summarize everything we have done so far in order to avoid any confusion and errors. If you have missed any of the steps from the last three...
View ArticleNew Course: Build APIs With GraphQL
What You'll Be CreatingGraphQL is designed to work with data represented by a graph, and it has a powerful query syntax for traversing, retrieving, and mutating data. Learn how to use it in our new...
View ArticleCreating a Blogging App Using Angular & MongoDB: Login
Angular is a one-stop framework for creating mobile and web apps using the same reusable code. Using Angular, you can divide the whole application into reusable components, which makes it easier to...
View ArticlePhoenix I18n
In my previous articles I covered the various aspects of Elixir—a modern functional programming language. Today, however, I would like to step aside from the language itself and discuss a very fast and...
View ArticleCreating a Blogging App Using Angular & MongoDB: Home
In the first part of the tutorial series, you saw how to get started with creating an Angular web app. You learnt how to set up the application and created the Login component.In this part of the...
View ArticleCreating a Blogging App Using Angular & MongoDB: Show Post
In the last part of the tutorial series, you saw how to write the REST API endpoint for user login. You used Mongoose to interact with MongoDB from Node. After successful validation, you saw how to use...
View ArticleIntroduction to Mocking in Python
Mocking is a library for testing in Python. It allows you to replace parts of your system under test with mock objects and make assertions about how they have been used. This tutorial will discuss in...
View ArticleCode a Widget for Android: Input and Display
Since Android 1.5, application widgets have enabled users to get information, control apps, and perform crucial tasks, all from the comfort of their homescreens.In this two part series, I’ll be showing...
View ArticleCreating a Blogging App Using Angular & MongoDB: Add Post
In the previous part of the Angular blog tutorial series, you learnt how to create the ShowPostComponent to display the list of blog posts on the home page. You fetched the records that were inserted...
View ArticleCreating a Blogging App Using Angular & MongoDB: Edit Post
In the previous part of this tutorial series you learnt how to create the add post component to add new blog posts. You learnt how to create the REST API endpoint to add a new post to the MongoDB...
View ArticleCode an App With GraphQL, React Native and AWS AppSync: the Back-End
What You'll Be CreatingIn these tutorials, I'll show you how to create and interact with a GraphQL database using AWS AppSync and React Native. This app will have real-time & offline functionality,...
View ArticleConnect Android Things to a Smartphone With Nearby Connections 2.0
One of the first things users will want to do with a new smart home device is get it on their wireless network. Many IoT devices lack a screen or keyboard, so one way to do this is by allowing users to...
View ArticleCreating a Blogging App Using Angular & MongoDB: Delete Post
In the previous part of this tutorial series, you learnt how to implement the functionality to edit the blog post details.In this part, you'll implement the functionality to delete an existing blog...
View ArticleCustom Events in Laravel
In this article, we are going to explore the basics of event management in Laravel. It's one of the important features that you, as a developer, should have in your arsenal in your desired framework....
View ArticleIntroduction to Multiprocessing in Python
The multiprocessing package supports spawning processes using an API similar to the threading module. It also offers both local and remote concurrency. This tutorial will discuss multiprocessing in...
View ArticleEasier React Native Development With Expo
Expo is a collection of tools that make it easier to code React Native apps. In this tutorial, I'm going to show you how you can quickly create React Native apps using Expo.With Expo, developers can...
View ArticleMy Favorite Front-End Development Extensions for Visual Studio Code
Visual Studio Code is one of the newest kids on the IDE “block” and it’s making a lot of noise. It’s taken a little while to gain traction, perhaps because it’s one of Microsoft’s few open source...
View ArticleCreating a Blogging App Using Angular & MongoDB: Home
In the first part of the tutorial series, you saw how to get started with creating an Angular web app. You learnt how to set up the application and created the Login component.In this part of the...
View ArticleStimulus: A JavaScript Framework for People Who Love HTML
Stimulus is a “modest JavaScript framework”, built by the folks at Basecamp who brought you Rails.It is, in many ways, the opposite of other modern frameworks available today. While you might see some...
View ArticleJSON Serialization With Golang
OverviewJSON is one of the most popular serialization formats. It is human readable, reasonably concise, and can be parsed easily by any web application using JavaScript. Go as a modern programming...
View Article