Last updated:26th October, 2024Angular Material UI Tutorial with NGRX In this Angular Material UI Tutorial with NGRX, we will build an Angular 18 application using NGRX for state management and Angular Material 3 for the user interface. We will fetch data from a mock API using JSONPlaceholder and demonstrate how to implement actions, reducers, and effects for managing state in …
Read More »JavaScript
Introduction to arrow functions in javascript
Last updated:24th December, 2022Arrow functions in JavaScript Arrow function were introduced in ES6 version of JavaScript. These functions allows us to create functions in a better and concise way as compared to regular JavaScript functions. The syntax of arrow functions in JavaScript is as follows: // function expression let arrowFunction = (arg1, arg2, ... argn) => { statement(s) } An …
Read More »How to make a python password generator
Last updated:9th August, 2022How to make a python password generator Python is a popular programming language, used to create dynamic applications. In a previous tutorial, we created a parse XML using python application. In this tutorial we are going to make a python password generator application. Following steps are performed in this tutorial. Create a project folder Create a project …
Read More »Upload files using Python and Flask
Last updated:15th May, 2022How to upload files using Python and Flask In this tutorial we are going to learn, how to upload files using Python and flask framework. We will also upload multiple files. In a previous tutorial we explored How to join wav audio files using python – a beginner tutorial. Following steps are performed in this tutorial. …
Read More »Autocomplete in jQuery using PHP and MySQL – a beginner tutorial
Last updated:6th November, 2021Autocomplete in jQuery Modern web applications often use auto suggest feature in forms. In this tutorial, you will learn autocomplete in jquery using php and MySQL. In this tutorial, following steps will be done. 1. Setup the application You should have PHP, MySQL and phpMyAdmin installed on your system. Install XAMPP or WAMP. After installation, start Apache, …
Read More »Latest Web Development Courses To Make You Pro Developer
Last updated:4th September, 2021Latest Web Development Courses To Make You Pro Developer Ever thought about web development as a career. I think you know the science of web development already. Maybe you are a beginner or have some experience but you need to level up your knowledge and skills. The more you learn, the better you produce. In this article, …
Read More »What is Front-End Development? Become A Front-End Developer
Last updated:18th March, 2021What is Front-End Development? Everything that users touch, use, click, and see, including UX/UI, visual layout, user interface, and interaction, comes in front-end development. It is also sometimes known as client-side development. In front-end development, HTML, CSS, and JavaScript are used for web applications or websites for the user to directly see and use them. The challenging …
Read More »RESTful API with sails js using MongoDB and MySQL
Last updated:10th November, 2021RESTful API with sails js using MongoDB and MySQL Sails.js is a MVC (Model-View-Controller) framework built on top of Express framework. It is used to develop RESTful APIs and modern web applications. There are other Node js frameworks, like hapi, loopback but sails js is becoming very popular now a days. In a previous tutorial we created …
Read More »