Cloud Deployment Strategies for Scalable Web Applications In today’s digital landscape, the ability for web applications to scale seamlessly is…
Flask lightweight WSGI web application framework
Flask Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with…
Create a Woocommerce product sold in units of kilogram and gram
// Add a product custom field "grams_quantity" that will update the displayed price add_action('woocommerce_before_add_to_cart_button', 'special_product_by_grams', 25); function special_product_by_grams(){ global $product;…
How to reset root user password MYSQL on Ubuntu
After the MySQL setup, I have lost my user name and password now I don’t want to reinstall. Then I…
How to create plugin in wordpress
How to create plugin in wordpress this very easy if you have some knowledge og php language. Now in this…
How to take a screenshot of the current screen of web page and save it as a png image through php
// an example html page<!DOCTYPE html><html><head> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script> <script type="text/javascript" src="./javascripts/html2canvas.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('#screenshot').on('click', function(e){ e.preventDefault(); html2canvas($('body'), {…

Recent Comments