Posts

Installing OpenCart Vesrion 3.0.2.0 - Opencart Development tutorials Video 2

Image
 Download OpenCart files from http://opencart.com  Create a database Upload files and folders Create config files one at root folder and another inside admin/ folder.  Steps to create custom URL to work locally https://webocreation.com/blog/steps-create-custom-url-work-locally-xampp-localhost-virtual-host Go to the URL If you see any other errors then you have to solve them. One could curl disabled which you have to enable from php.ini Delete the install folder, if you rename the folder then you are a by-passing error message but there will be security holes remained in that folder so the hacker can find it easily and exploit your database so strongly recommended to delete the install folder after installation is complete.

Opencart Development tutorials Video 1

Image
Introduction and Table of Contents What is OpenCart? Why OpenCart? Features of OpenCart Prerequisites Downloading example code Details: https://webocreation.com/blog/opencart-module-development-video-tutorial-introduction-and-table-of-contents Opencart Free modules : https://webocreation.com/blog/opencart/opencart-extensions-free-download PPT at: https://www.slideshare.net/rupaknpl/1-opencart-module-development-introduction-and-table-of-contents

FiredPie is launched in Arizona

Image
FiredPie Pizza : fast, casual, rich in flavor customizable pizza and salad made from scratch using fresh ingredients just the way you like it Why fired pie started? Every business has a story. In this instance, Doug Doyle and Fred Morgan worked together at California Pizza Kitchen for more than 15 years, then left corporate life to start their own venture. about fired pie Check out the fired pie menu : THE WAY THey WORK IS SIMPLE. You have two main choices to choose from: one – pizza or salad, and two – your way or ours. Order online fired pie pizza: https://firedpie.com/order-online/ They are located in multiple locations in Arizona: Fired Pie currently has twenty locations in Arizona: four in Phoenix, three in North Scottsdale, one in Gilbert, two in Mesa, two in Chandler, one in Ahwatukee, two in Glendale (Tanger Outlets Westgate & Aspera), two in Tucson (Plaza Centro & Speedway), one in Old Town Scottsdale, Fashion Square's food court, one in

"Dead Code" can rot a code base over time.

Image
"Dead Code" can rot a code base over time.   ☠️ "Dead Code" can rot a code base over time. Here are a few common types of dead code. Be diligent and thorough about removing them as the code evolves. Even dead code can still cause problems. pic.twitter.com/vPQ7njyhEv — Jason McCreary (@gonedark) November 22, 2017

Test the spammyness of your email

Image
Test the spamminess of your email mail-tester.com

IceSleeve.com Hot and Cold Wraps,

Image
IceSleeve Hot and Cold Wraps, launched successfully, where you can find the Heat therapy, Cold therapy, ergonomic and mobility, you can get details at  https://icesleeve.com/Benefits . They provide following category products: Shoulder Ice wrap Shin and Calf Ice wrap Knee ice wrap Hamstring Wrap Lower back wrap Ankle ice wrap Elbow wrap Cold packs Ice bags Special features to buy products from them can be: Customer satisfaction guaranteed  https://icesleeve.com/Warranty Ship products within 24h from California warehouse  https://icesleeve.com/delivery Eco-friendly, field usable, ease of use, adjustable, compression, mobility, multi-use  https://icesleeve.com/about_us You can get more details of terms and conditions at  https://icesleeve.com/terms You can contact them at https://icesleeve.com/contact IceSleeve 4720 Calle Carga Camarillo, CA 93012 Telephone 818-814-6025 EMAIL sales@icesleeve.com Enjoy your visit at icesleeve.com and please provide feedback so

Interesting Switch case Optimization

Image
Details at: https://derickrethans.nl/php7.2-switch.html <?php $cc = "no"; $_table = [ "de" => 1, "en" => 2, "nl" => 3, "no" => 4 ]; if (gettype($cc) == 'string') { if (array_key_exists($cc, $_table)) { goto "jmp_{$_table[$cc]}"; } else { goto jmp_default; } } else { /* do original if/else if/else sequence */ } jmp_1: echo "DEUTSCH"; goto end; jmp_2: echo "English"; goto end; jmp_3: echo "Nederlands"; goto end; jmp_4: echo "Norsk"; goto end; jmp_default: echo "unknown"; end: ?>