| by Arround The Web | No comments

Break Statement in C

The Break statement is used when we don’t know what is the actual number iteration for the loop or we need to terminate the loop based on some conditions.

Read More
| by Arround The Web | No comments

How to Create a Semi Circle with CSS

To create a semi-circle, the “border-radius” property can be utilized. The semi-circle can be created from side to side such as to left, right, top and bottom.

Read More
| by Arround The Web | No comments

How to Declare Variables in C

A variable is simply a name that is assigned to a storage space so it will be easy for users to access or read in the program.

Read More
| by Arround The Web | No comments

How to Reset File to be Same as Master Branch in Git

To reset a file to be same as master branch in Git, create and add a file, create and switch branch, update file, run “$ git checkout master –filename”.

Read More
| by Arround The Web | No comments

Data Visualization Tools for SQL

A step-by-step guide on data visualization tools for SQL such as Metabase, Apache Superset, Draxler, Looker, Redash, Tableau, Power BI, and MODE.

Read More
| by Arround The Web | No comments

How to Underline a Text in LaTeX

Practical tutorial on the approaches to underlining a text in LaTeX using the \underline{} source code and highlight the different words in a single sentence.

Read More
| by Arround The Web | No comments

How to Use a Box Text in LaTeX

Tutorial on the ways to add and use a boxed text in LaTeX using the \makebox and \framebox and adding color \usepackage and \colorbox in the source code.

Read More
| by Arround The Web | No comments

How to Write and Use a Floor Symbol in LaTeX

Practical tutorial on how to write and use a floor ⌊x⌋ symbol in LaTeX using the $\floor$ as a source code and \rfloor and \lfloor for the right and left side.

Read More
| by Arround The Web | No comments

How to Show Commit History for One Branch Using Git Log With Range

To show commit history using Git log with range, move to Git repo, check content list, open file, update and commit it, run the “$ git log ” command.

Read More
| by Arround The Web | No comments

Install XFCE in Linux Mint 21

XFCE is one of the popularly available desktop environments for the Linux operating system. It is a lightweight and hence faster desktop environment.

Read More
| by Arround The Web | No comments

How to Make a Multiline Equation in LaTeX

Practical tutorial on how to write the multiline equations in LaTeX using the amsmath package and {split}, {equation}, and {multiline} codes in the source code.

Read More
| by Arround The Web | No comments

Understanding the Bash shuf Command

The shuf command takes input from files, randomizes the input, and gives output. It works like how you shuffle cards and pull a random output.

Read More
| by Arround The Web | No comments

LibreOffice Writer: Set Paper Size F4 or Folio

This tutorial will help you in setting up F4 or Folio paper size in LibreOffice Writer in step by step with examples and pictures. This includes making templates so you can quickly make F4 documents without repeating paper size setup and further make P…

Read More
| by Arround The Web | No comments

How to Execute Commands from Within a Shell Script

The shell works as a command-line interpreter, taking inputs and giving output. A shell script can contain loops, functions, variables, and commands.

Read More
| by Arround The Web | No comments

Malloc Function in C

The malloc() function in C not only allocates memory to a specific mutable but also returns an address pointer where that memory has been stored.

Read More
| by Arround The Web | No comments

Top 5 Open Source Plugins for ONLYOFFICE Docs

The post Top 5 Open Source Plugins for ONLYOFFICE Docs first appeared on Tecmint: Linux Howtos, Tutorials & Guides .If you think that office software is exclusively designed for writing texts, making calculations in spreadsheets, and creating informati…

Read More
| by Arround The Web | No comments

Check Disk for Errors Linux Mint 20.3

A step-by-step guide showing how to check the disk for errors in Linux Mint by choosing a disk partition, saving the errors, and passing the text file.

Read More
| by Arround The Web | No comments

Partitioning the Hard Disks Under Debian/Ubuntu and Resizing the Partitions

Practical tutorial on how to partition the hard disks and resize the partitions under Linux both from the command line and from the graphical environment.

Read More
| by Arround The Web | No comments

Live Forensics Tool

Guide introduction to the most popular live forensics operating systems and tools including installable alternatives because of their amazing functionalities.

Read More
| by Arround The Web | No comments

Extern in C

A guide on the “extern” keyword in the C programming language that enables us to implement two “C” language code examples to express the function of “extern”.

Read More