Posts for Tutorials

Advanced Tutorials for web and app development, we cover topics including, Vue, JavaScript, Laravel, Flutter, Golang, Python and more
Deven
Deven wrote

Getting started with TensorFlow.js

TensorFlow.js is the Import of the machine learning framework TensorFlow for JavaScript. TensorFlow.js accesses the lower-layer APIs (tfjs-core) to do some fundamental optimization on classical problems. So, basically TensorFlow.js is a JavaScript Library for training and deploying machine learning models in the browser and in Node.js. TensorFlow.js can leverage a vast platform of devices while […]

March 9, 2021 in Javascript & Tutorials
Deven
Deven wrote

Build a network monitoring app using React

In this tutorial, we will learn to build a simple network monitoring app using React Hooks. Use case Sometime while using our React application a user connects with a network with no data connection. In that case your app must show the user network connection status. Pre-requisite Basic understanding of JavaScript ES6 Basic understanding of […]

March 7, 2021 in React & Tutorials

Complete React Datepicker Tutorial with Examples

In this tutorial, you will learn how to use React datepicker in your React project. You will learn from a basic example to a specific use case by creating a hotel booking component using React-Datepicker. React-datepicker is a simple and reusable component for React. This component currently has around 314 contributors with more than 600.000 […]

March 1, 2021 in React & Tutorials

How to conditionally redirect users after login on Laravel Jetstream

In this article, you will learn how to conditionally redirect users after login to Laravel Jetstream and Fortify applications. With the introduction of Laravel Jetstream, it is always tempting to setup Laravel projects with Laravel Jetstream and Fortify handling the authentication of your app. It becomes challenging when your project requires custom redirection to a […]

February 23, 2021 in Laravel & Tutorials

Learn How to Implement Admob Ads In React Native

In this article, you will learn How To Implement Admob Ads In Your React Native App. Steps Install Expo Install Other Dependencies Create Banner Ad Create Interstitial & Rewarded Creating Expo Project npm install -g expo-cli After installing Expo Client we will now create project using expo. expo init react-native-admob cd react-native-admob expo start After […]

February 21, 2021 in React Native & Tutorials

Building a Regression Model to Predict Sales Revenue using Sci-Kit Learn

In this guide, we will learn how to build a multiple linear regression model with Sci-kit learn. Unlike the Simple Linear Regression model that uses a single feature to make predictions, the Multiple Linear Regression model uses more than one feature to make predictions. It shows the relationship between multiple independent variables and a dependent […]

February 18, 2021 in Machine Learning & Tutorials
Deven
Deven wrote

Building an eCommerce shopping cart with Svelte

In this article, you will learn some significant concepts in svelte by building an eCommerce shopping cart with Svelte. Svelte is a modern JavaScript compiler that allows you to write easy-to-understand JavaScript code that is then compiled to highly efficient code that runs in the browser. The framework is similar to React or Vue, but […]

February 3, 2021 in Svelte & Tutorials
Deven
Deven wrote

Building a Crud application using Preact

What is Preact? Preact is a Javascript library, although similar to React, but tiny. At the moment of writing, the main Preact library is around 4Kb. This is small enough that it’s possible to add React-like features to web pages in barely more code than is required to write native JavaScript. Preact is not React. […]

January 27, 2021 in Preact & Tutorials
Deven
Deven wrote

Handling Vuex and Axios Authentication

In this tutorial, we will be using Vuex and Axios to handle simple authentication in our Vuejs app. The flow for implementing this is: User login using password and email ( fake login) On successful authentication, the user is granted access to specific resources. Prerequisites In the course of building this application, we would be using Vuex to […]

January 24, 2021 in Tutorials & Vue
Deven
Deven wrote

Build a CRUD application using CodeIgniter 4 and Mysql

A CodeIgniter CRUD application is one that uses forms to get data into and out of a database. In this tutorial, we’ll build a complete CRUD application using CodeIgniter 4 and Mysql. CRUD is an acronym for the four basic operations: Create, Read, Update, Delete. Most applications have some kind of CRUD functionality, and we can assume that every programmer had to deal with CRUD at some point. […]

January 2, 2021 in CodeIgniter & Tutorials

Build an Anime quiz app using Vuex helper methods

In this article, You will learn how to make use of Vuex helper methods, best design implementations in using them, and making API calls in the Vuex store by building an Anime quiz application with Vuex. Our Quiz application is going to have 3 components: Header: This is where our logo and reset button will […]

December 31, 2020 in Tutorials & Vue

Build Progressive Web Application (PWA) with React

In this article, we will create a React PWA that has reusable React components and styling using Create React App and styled-components. The application will use data fetched from an external REST API. Pre-requisite Basic understanding of JavaScript ES6 Basic understanding of HTML and CSS Basic understanding of react Have Nodejs installed on your machine […]

September 16, 2020 in React & Tutorials