Randomize Variable Names Each Time UglifyJS Runs
Why Randomize Variable Names? If you are using UglifyJS to uglify your JavaScript code, you are using it only to serve a single purpose – to make it hard for anyone to peek into your code. But if you have minor changes to the code, variable names still come out pretty much same. So it…
Basic tutorial to customize Bootstrap 4
Here is an extremely basic tutorial that will help you setup the environment to customize Bootstrap 4 for your needs on Windows machine using Node.js and npm Development Environment Windows 10Node.jsnpm This tutorial is created using Bootstrap 4.1.3 which can be downloaded from https://getbootstrap.com/docs/4.1/getting-started/download/. Customization Extract the zip file anywhere within your computer and you…
|
How to copy big file to hundrededs of computers and verify its integrity
If you have a big file that you want to send to hundreds of computers, you may use copy or xcopy commands but in certain scenario, it may not work. For example, on slow internet, when you start copying the file and for whatsoever reason the copy fails, the (corrupted) file with exact size still…
Commands for Using Standalone 7-zip to Split and Combine Zip File
What is Standalone 7-zip? It is a single executable that can be used to zip and unzip files without installing 7-zip on a machine. How to Get Standalone 7-zip? Visit the page https://www.7-zip.org/download.html and download “7-Zip Extra: standalone console version, 7z DLL, Plugin for Far Manager” Command to Create a Zip and Split it Based…
Difference between .NET Standard, .NET Core and .Net Full Framework
If you are an Object Oriented programmer, here is explanation that will help you visualize the difference between .NET Standard, .NET Core and .Net Full Framework. Even though technically not correct, it will help you understand various online articles.
|
Shopify – Free Vs Paid Theme
If you are new to Shopify, you would ponder about free vs paid theme. What is common for Free and Paid theme Shopify platform has a limitation of what you can and cannot do with the theme. Here are the limitations for Shopify free and paid theme. You can have a nice drag and drop…
Shopify Roadblocks You Will Likely Hit Within a Month
Shopify is a great platform for small business owners to quickly setup a store and start selling their product. It provides a simplified platform for anyone to sell without worrying about maintaining the Website. Alternatives are either too costly or hard to manage so small business owners are tempted to setup a store at Shopify.…
Dnn 7.4 Unhandled Error Adding Module to ContentPane
If your DNN Event Viewer is full of “Unhandled Error Adding Module to ContentPane” errors, here is a quick fix for it. Login as Site Admin > Go to Site Settings > Advanced Settings > Page Management > Registration Page > If it contains “User Profile”, change it to “<None Specified>” and save. That’s it.…
Simple Trick to Replace Multiple Spaces With Single Tab Character
If you have data with multiple space characters and you wish you could replace all the multiple spaces with tab characters (I bet you want to paste it into Excel), here is a quick trick – Use RegEx in Notepad++.