Category: Uncategorized

Batch File – “Press Any Button To Continue” command

To implement “Press Any Key To Continue” in a batch file, add below commands in your batch file. It simply pauses the batch file execution until the user presses any keyboard button. Note: You can change the “Press Any Key To Continue” as per your requirement. It is just a message. pause > nul command […]

How to backup/Restore blogger blog theme? 2019 [With Images]

Below article guides you on how to backup/restore theme/template on blogger blog with images. This is useful for new blogspot bloggers. Backup blogger blog theme Login to your blogger blog account Goto Theme On top-right, you will see Backup / Restore button. Click on it. 4. Click on Download Theme button. Your blogger template/theme will […]

Easy way to Call C++ function from python

This post teaches you how to call a C++ (cpp) code or function from python. Step 1: Develop a C wrapper for CPP as mentioned below Assume you have a C++ DLL project with CPP files and HPP files Create CLibrary.H and CLibrary.C files and add to C++ DLL project CLibrary.H should contain following code. […]