Programming – POFTUT

Unicode (UTF-8) Charset

Unicode (UTF-8) Charset

Unicode character set which is also known as UTF-8 is developed by the Unicode Consortium. The standard for the Unicode charset and its subsets is named Unicode standard. Over the years a lot of different character sets are developed by different entities. This has created a mess where compatibility and portability are very low. So … Read more

jQuery toggleClass() Tutorial

jQuery toggleClass() Tutorial

jQuery javascript framework provides the toggleClass() method in order to toggle between different classes for the specified elements. The toggle will simply remove the old class and add a new class to the specified elements like button, label, div, etc. jQuery toggleClass() Method Syntax toggleClass() method is provided by the jQuery and in order to … Read more

What Is GCC (GNU Compiler Collection)?

What Is GCC (GNU Compiler Collection)?

The GNU Compiler Collection or GCC is a compiler and related auxiliary tools which are used to compile different programming languages into binary and related formats. GCC has been created and currently developed by the GNU Project. Also, the GCC name comes from the GNU as you have noticed. GCC is very popular in the … Read more

How To Substring In Python?

How To Substring In Python?

Python is a feature-rich programming language that provides a lot of string or text-related functions. String manipulation provides different operations where Substring operation is one of the most important. What Is Substring? Substring is an operation that will get some part of the specified string. Substring operations can be done in different ways and methods. … Read more

about:config Configuration Editor For Mozilla Firefox

about: config Configuration Editor For Mozilla Firefox

Today browsers provide a lot of features and configurations. Mozilla Firefox provides a lot of configurations that can be edited via the Advanced Preferences screen. Advanced Preferences also called about:config which is used to access Mozilla Firefox configuration screen. By using the about:config address or shortcut we can list, read, change, add, delete different Firefox … Read more

How To Git Reset Hard?

How To Git Reset Hard?

git reset or git-reset commands are used to reset changes to the previous version in Git software. Git reset is popularly used because of its function where we can go back to whatever version we want. Reverting changes to the back can be done in different ways. “Git reset hard” is a way by deleting … Read more

HTML Underline Tag Tutorial with Examples

HTML Underline Tag Tutorial with Examples

HTML provides different styling options for the text. Underlining the HTML text is one of them. Simply underlining will draw a straight line under the text without occupying the line below. In this tutorial, we will learn the how-to underline the HTML text with <u> tag, CSS code, CSS class, and set the underlining properties … Read more

What Is LLVM? Getting Started with LLVM

What Is LLVM? Getting Started with LLVM

LLVM is a project which provides a collection of a modular compiler and toolchain software and technologies. The name “LLVM” is not an acronym that is different from other IT and Opensource projects. LLVM has started a research project at the University of Illinois in order to create a compiler and tool-chain which supports both … Read more

What Is Wildcard Character(s)?

What Is Wildcard Character(s)?

The wildcard character generally acts like an asterisk character. The wildcard is generally used in programming, scripting, IT in order to express special meanings for different cases. Wild Character or Wildcard Character or Wildcard Well, the character is actually not important but the function is more important for the wildcard. So different sayings are not … Read more

How To Change HTML Text Color?

How To Change HTML Text Color?

Most of the HTML web pages contain text in order to provide information. HTML Text may contains instructions, explanation etc. But in order to make the reading experience better, the HTML text is generally formatted with different styling techniques, and coloring or changing text color is one of them. In this tutorial, we will explain … Read more