Articles Related To Computer Engineering

August 26, 2018
Best way to clear static resources cache in WordPress

Have you ever come across the situation when you need to hard refresh the browser or open in the private mode of browser, even to verify the small changes in styles or scripts? I bet you have. How to clear static resources cache? After implementing the code snippets shown below, you will be able to […]

August 26, 2018
Installation of multisite with sub-domains on localhost in Wodrpress

Step 1: Setting up virtual host for main network domain WordPress doesn’t allow to install the sub-domain multisite for local WordPress installation. So, first thing we need to is to set up the virtual host for main network site. For the demonstration purpose, i am assuming “http://localhost/your-site” as the main local WordPress installation where you […]

August 26, 2018
How to remove cross sell / up sells products along with main product from cart in woocommerce

Step 1: Finding the right action hook fired by WooCommerce First thing, we need to find the action hook fired by WooCommerce when removing the product from cart. Woocommerce provides “woocommerce_cart_item_removed” action hook with two arguments; $cart_item_key and $cart_object. Important thing here to note is that, WooCommerce doesn’t provide the product ID of removed cart […]

August 24, 2018
Efficient Human Identification Through Face Detection Using Raspberry Pi Based On Python-Opencv

Abstract: – Human Identification can be performed through various technique like as fingerprint, palm detection, iris detection as well as face detection. This paper focus on implementation of face detection system for human identification based on open source computer vision library (OpenCV) with python. The model of face recognition has been performed on both laptop […]