List of Online Ecommerce Store Providers

Sharing list of sites, apps which provide online store opening and selling online option of various types. While browsing internet, blogs, videos online I sometimes come across sites which provide such sites and apps. Would try to add them here and keep the list updated. Some services might not be available anymore or may have … Read more

MySQL Code for adding days, time to date column

Use following code to update a date column in MySQL table. One can add days, hours and more depending on the requirement. A fix date can be provided (like 2023-06-20) to which days can be added, current date can be used to add days, existing date_column value can also be used to add days, based on other column value like serial number or some number can be added.

using fix date

UPDATE table_name SET date_column= ‘2023-06-20’ + INTERVAL 2 DAY + INTERVAL 19 HOUR;

using current date

UPDATE table_name SET date_column=CURDATE() + INTERVAL 2 DAY + INTERVAL 19 HOUR;

using column date

UPDATE table_name SET date_column= date_column + INTERVAL 2 DAY + INTERVAL 19 HOUR;

using column value

UPDATE table_name SET date_column= ‘2023-06-20’ + INTERVAL column_name DAY + INTERVAL 19 HOUR;

Digital Door Bell Product Ideas

In this digital world of smartphone we are bit lazy and don’t want to go outside to reply for a door bell. some times they are wrong knocks on the door. a product idea to somewhat handle the issue. We do have some digital gadgets to answer door bells/door knocks like door camera and mic/speaker. … Read more

List of online Bookmark websites

Sharing list of sites which provide bookmarking of various types. While browsing internet, blogs, videos online I sometimes come across sites which provide such tools. Would try to add them here and keep the list updated. Some tools might not be available anymore or may have been removed from their site or the link might … Read more

List of online Unicode Converter websites

Sharing list of sites which provide unicode converter tools of various types. While browsing internet, blogs, videos online I sometimes come across sites which provide such tools. Would try to add them here and keep the list updated. Some tools might not be available anymore or may have been removed from their site or the … Read more

List of online AI Tools websites

Sharing list of sites which provide AI tools of various types. While browsing internet, blogs, videos online I sometimes come across sites which provide AI tools. Would try to add them here and keep the list updated. Some tools might not be available anymore or may have been removed from their site or the link … Read more

List of online SEO Tools websites

Sharing list of sites which provide SEO tools of various types. While browsing internet, blogs, videos online I sometimes come across sites which provide SEO tools. Would try to add them here and keep the list updated. Some tools might not be available anymore or may have been removed from their site or the link … Read more

Where to Open Online Webstore

Selling online is increasing day by day. More offline and home stores are going digital. They have the options to sell on marketplace, their own website or a webstore. A webstore is also called webpany (web company). After searching on web for various options available, this article focuses on hosted webstore. Marketplace When a seller … Read more