Powershell – Digitally signing a .ps1 script

A file is signed with a certificate. A digital certificate is usually issued by a Certification Authority (CA). These are important things to consider, so it better to focus these before going on with the Powershell code signing process for scripts. Read More …

What are Dot-Source scripts in Powershell?

Dot-sourcing is a concept in PowerShell that allows you to reference code defined in one script in a separate one. This is useful when you’re working on a project with multiple scripts and might have functions specified in one script(s) and the code to call those functions in another. Other than building a module, dot-sourcing is a good way to make that code in another script available to you.
Read More …

Clear Clipboard by using Command Prompt, Shortcut and Context Menu

On any computer system, in a layman language, when you copy or cut some content to paste somewhere, it is stored on RAM for a short period until you copy or cut another content. Now if we talk about clipboard, you will get some idea of what it is and how it works. In the following section we will see how this function works on a Windows platform and how to properly clearing it easily using multiple methods. Read More …

What are Data URLs?

A Data URL is a URI scheme that provides a way to inline data in a document, and it’s commonly used to embed images in HTML and CSS. Data URLs are a form of Uniform Resource Locators, although they do not in fact remotely locate anything. Instead, the resource data is contained within the URL string itself as a base64-encoded string. This saves the browser from having to make additional HTTP requests for the external resources, and can thus increase page loading speed. Read More …

413 Request Entity Too Large and PHP Execution Time

It can be found on standalone Apache/Nginx/IIS web server or while proxy-based solutions when Nginx acts as a front end server for Apache at back end server. In this guide, we will see how to fix this error “413 request entity is too large” in Apache as well as in Nginx, Microsoft IIS , and definitely in PHP as well. Read More …