Make Sub-Category List | WordPress Plugin Tutorial

Make Sub-Category List | WordPress Plugin Tutorial

What is Plugin ?Plugin is a piece of software containing a group of functions that can be added to a WordPress website. They can extend functionality or add new features to your WordPress websites.WordPress plugins are written in the PHP programming language and integrate seamlessly with WordPress. In the WordPress community, there is a saying…

3 Easy Step to Create Signup form with Ant Design || ReactJS
| |

3 Easy Step to Create Signup form with Ant Design || ReactJS

Here’s an easy step by step on how to create a signup form with Ant Design. first, we have to install Ant Design package. Go to https://ant.design/docs/react/introduce and you can see how to install it. You can install it with npm or yarn. // with npm npm install antd // with yarn yarn add antd Then you…

Make WooCommerce’s Category List Plugins | WordPress Tutorial

Make WooCommerce’s Category List Plugins | WordPress Tutorial

What is Plugin ?Plugin is a piece of software containing a group of functions that can be added to a WordPress website. They can extend functionality or add new features to your WordPress websites.WordPress plugins are written in the PHP programming language and integrate seamlessly with WordPress. In the WordPress community, there is a saying…

Easy to Create, Signup form with Material UI || ReactJS
| |

Easy to Create, Signup form with Material UI || ReactJS

Here’s an easy step by step on how to create a signup form with material UI. first, we have to install Material-UI package. Go to https://material-ui.com/getting-started/installation/ and you can see how to install it. You can install it with npm or yarn. // with npm npm install @material-ui/core // with yarn yarn add @material-ui/core Then…

How to Create a Mutation Query of Create a user in Graphql || Nestjs + Typeorm + Mongodb
| | | |

How to Create a Mutation Query of Create a user in Graphql || Nestjs + Typeorm + Mongodb

In this blog, we will discuss how to make a Mutation on Graphql to Create and Modify a user. We only gonna modify 2 files, user.service and user.resolvers user.service user.resolver Mutation: Create User user.service We will create one function here to create a user, we’ll name it ‘createUser(userData)‘. We have one parameter here containing all…

How to Create Query for Getting User by ID in Graphql || Nestjs + Typeorm
| | | |

How to Create Query for Getting User by ID in Graphql || Nestjs + Typeorm

In this blog, we will discuss how to make a query to fetch one user by id. This’s very simple. We only gonna modify 2 files, user.service and user.resolvers user.service user.resolver user.service We’ll make one function with just one line of code. The code is simply finding our expected user in our database. With Typeform,…

Confidence in KTP-OCR using Pytesseract
| | |

Confidence in KTP-OCR using Pytesseract

In previous blog, we already learn how to crop an image https://about.lovia.id/getting-cordinate-and-cropping-an-image-with-opencv/. Then we will learn how to got confidence using pytesseract, After much searching, there was some some ways to got confidence in my KTP-OCR. Pytesseract give us a lot of syntax that can we use, such as : #this line of code will…

WordPress Setup and WooCommerce Setup as Locally

WordPress Setup and WooCommerce Setup as Locally

What is WordPress ? WordPress (WP, WordPress.org) is a free and open-source content management system (CMS) written in PHP and paired with a MySQL or MariaDB database. Why do we have to use WordPress ? We have 6 important reasons why you should use WordPress, there it is WordPress is FREE ! WordPress is easy…