October 18, 2021

Python PyQt5 complete Setup Windows

PyQt5 is a very powerful python gui development framework. This post shows the complete installation and setup of PyQt5 with qt designer tool. First you need to install Python for this. ALso, make...
October 18, 2021

Qt Designer UI to python file export

.ui to .py file conversion Qt designer is a designer for GUI. We can designs in it and then save them as a .ui file. When you are working with PyQt5 for making...
October 17, 2021

PyQt5 draggable Custom window code

When you are working with PyQt5, you are using the default OS style of application. The design looks very simple for apps. So, if you are making a cutom app, you will cuystomise...
October 17, 2021

How to make my own web Browser

Make your own Web Browser in Python using PyQt5. PyQt5 is a very powerful Python framework to make modern GUIs. With help of Python PyQt5 QtWebWidgets, it is very easy to amke your...
October 17, 2021

React JS Custom Text Editor Modal Component

React JS custom text editor modal component. import React, { useState } from 'react' export default function Form() { const clear = () => { let newtext = text.substr(0, -1); setText(newtext); } const...
October 17, 2021

React JS Working Navbar Component in Bootstrap

Make a working Navbar component in react. First import the links React import React from 'react' import { Link } from 'react-router-dom' export default function Navbar() { return ( <> Social Home About...
October 17, 2021

JavaScript Text Typing Animation - How to make text typing animation in JavaScript

Make a text typing Animation in JavaScript. HTML Code JavaScript Code var TxtRotate = function (el, toRotate, period) { this.toRotate = toRotate; this.el = el; this.loopNum = 0; this.period = parseInt(period, 10) ||...
October 02, 2021

PHP complete blog with Live like and dislike system

So, some of you might be aware a language known as PHP. PHP is a hypertext processing language which is used to make the backend of a website. It is not so popular...
October 01, 2021

Logic Building in Python

Python is among the most popular programming languages at this time. It is a fact that if you want to learn programming, the most important thing is to build your logic. Some people...
October 01, 2021

First React Project - TextUtyls Website

So, as I meantioned in my last post, I started to learn React few months back. So, in this post I am going to show you the web app that I created in...
October 01, 2021

How to learn React JS - Step by Step

React JS is a very popular web framework. It is a free and open-source front-end JavaScript library for building user interfaces or UI components. React JS is maintained by Facebook. So, if you...