Posted: 2021-10-14 16:30:04 Source: https://www.youtube.com/watch?v=LM8w8BZP09A
Posted: 2021-10-14 16:19:00 Source: https://linuxhint.com/what-is-connection-string-mysql/
In back-end development, a scripting language is used with the help of which we can interact with the database and can access the data from it. A PHP language is one of the popular scripting languages which is used to retrieve the data from the database in back-end development. Connection string is a string that specifies the information related to database login. This article explains what connection string is and how to use it in PHP.
Posted: 2021-10-14 15:09:47 Source: http://distrowatch.com/11367
OpenBSD is a member of the UNIX family of operating systems which places a focus on portability, code correctness, security, and accurate documentation. The project's latest release, version 7.0, introduces RISC64 architecture support, drivers for Apple M1 systems, adds several driver improvements, and the timeout utility from NetBSD....
Posted: 2021-10-14 14:58:37 Source: https://www.youtube.com/watch?v=8jPVkZpARYE
Posted: 2021-10-14 14:45:08 Source: https://www.youtube.com/watch?v=lEg_O2XGDsc
Posted: 2021-10-14 14:30:15 Source: https://www.youtube.com/watch?v=rGIyYDC8XoA
Posted: 2021-10-14 13:50:18 Source: http://distrowatch.com/11366
KaOS is a rolling release distribution which features cutting edge versions of the KDE Plasma desktop and the Qt toolkit. The project's latest snapshot is KaOS 2021.10 which includes updates to Plasma's Kickoff and new Wayland features. "Today KDE is celebrating its 25th anniversary and, to commemorate that....
Posted: 2021-10-14 10:13:43 Source: https://linuxhint.com/disable-scrolling-javascript/
JavaScript is a web language used for creating dynamic web pages and making them interactive for users. Through JavaScript we can perform various functions, change CSS of HTML elements, perform actions on each click and many more.JavaScript makes the page of our website more interactive and adds dynamic behaviors to it, we can create various menus, drop down menus, scroll bars etc. We can even enable and disable the behaviour of each of these components using JavaScript. In this article we’ll see how to disable scrolling on a webpage using JavaScript.
Posted: 2021-10-14 10:08:01 Source: https://linuxhint.com/zip-folder-ubuntu/
Zip is the commonly used and popular archive file format for file compression that provides lossless data compression features. Zipped file format can be transferred more quickly as compared to uncompressed files. These compressed zip folders can easily be extracted in Linux. How to ZIP a folder in Ubuntu is explained in this article.
Posted: 2021-10-14 09:59:50 Source: https://linuxhint.com/get-powershell-version/
Microsoft PowerShell is designed to aid developers in building efficient scripts and tools to automate and speed up various processes. PowerShell combines the command-line shell that can run commands similar to a classic shell and a scripting language. How to Get PowerShell Version is explained in this article.
Posted: 2021-10-14 09:56:08 Source: https://linuxhint.com/fix-firewalld-not-running-error-centos/
FirewallD is a dynamically controlled firewall that offers support for the firewall and network zones. IPv6 and IPv64 firewall settings, ipsets, and ethernet bridges are configured with the help of the FirewallD utility. This article explains how to fix “FirewallD is not running error on centOS” using various methods.
Posted: 2021-10-14 09:39:32 Source: https://linuxhint.com/enable-disable-javascript-on-iphone/
if you feel JavaScript is of no use, you can block it for all the websites. This will prevent you from different corrupt injections. Users can disable JavaScript for numerous reasons. Disabling JavaScript also decreases the risk of downloading malware. In this brief step-by-step guide, we will discuss how to enable and disable JavaScript on iPhone (Safari).
Posted: 2021-10-14 03:08:36 Source: https://linuxhint.com/add-new-fonts-gimp/
Different creative projects require different fonts. GIMP can use TrueType Fonts (TTF), OpenType Fonts (OTF), and almost any other fonts installed on your system. There are also a ton of artisanal fonts out there, as many creatives have gotten into making and selling their own fonts. How to add new fonts to GIMP is explained in this article.
Posted: 2021-10-14 01:50:10 Source: https://linuxhint.com/function-overloading-c/
Function overloading is used in object-oriented languages having many functions with the same name and different parameters in a single code. As the C compiler doesn’t allow it to be used in the code, it isn’t easy to implement function overloading in C. How to use Function Overloading in C is explained in this article.
Posted: 2021-10-14 01:15:01 Source: https://linuxhint.com/check-string-containing-substring-python/
There are some pre-defined methods available in Python programming to find out whether a particular string is present in another string or not. The best method which is very easy to use is the 'in' operator method. Other methods are also easy to use that depend upon the requirements of the user. How to check if a string contains another substring in Python is explained in this article.
Posted: 2021-10-14 00:38:59 Source: https://linoxide.com/install-redis-on-rocky-linux-or-almalinux-8/
Posted: 2021-10-13 23:00:46 Source: https://www.youtube.com/watch?v=g77bEThFjwQ
Posted: 2021-10-13 16:32:32 Source: https://linuxhint.com/enable-debug-logs-nginx/
Nginx keeps track of its events in two logs: error logs and access logs. Any errors that Nginx encounters, such as unexpectedly stopping or facing problems related to the upstream connection or connection time, are recorded in the error logs. The error logs record information related to the server and application issues. This article explains how to enable debug logs in Nginx.
Posted: 2021-10-13 16:22:52 Source: https://linuxhint.com/network-configuration-debian/
Linux is an open source, widely used operating system and contains more than 600 distributions that follow the basic functionality of Linux. It also has extensive support available for network configuration, there are several distros of Linux that do the same. This article explains how to do network configuration on Debian 11 Bullseye.
Posted: 2021-10-13 16:00:00 Source: https://www.linuxjournal.com/content/7-important-linux-commands-every-linux-user
Linux might sound scary for first-time Linux users, but actually, it isn’t. Linux is a bunch of open-source Unix operating systems based on Linux Kernel. These operating systems are called Linux distributions, such as Fedora, Debian, Ubuntu, and Mint.
Since its inception in 1991, Linux has garnered popularity for being open-source. People can modify and redistribute Linux under their own brand. When using a Linux OS, you need a shell to access the services provided. Also, it’s recommended to run your Linux OS through a CLI or command-line interface. CLI makes time-consuming processes quicker.
This article presents a guide to 7 important Linux commands for every Linux user to know. So, let’s begin.
cat is the shortened form of “concatenate”. It’s a frequently used multi-purpose Linux command. This command is used to create, display, and copy a file content on the standard output.
cat [OPTION]... [FILE]..
To create a file, type:
cat > // Enter file content
To save the file created, press Ctrl+D. And to display the file content, execute:
cat
The cd command is used to navigate through the directories and files in Linux. It needs either the entire path or the directory name depending on the current directory.
cd [Options] [Directory]
Suppose you’re in /home/username/Documents. You want to navigate to a subdirectory of Documents which is Photos. To do that, execute:
cd Photos
To move to an entirely different directory, type cd and then the directory’s absolute path.
cd /home/username/Movies
The above command will switch to /home/username/Movies. Apart from this, the commands, cd.., cd, and cd- are used to move one directory up, to go to the home folder, and to go to the previous directory respectively.
Reminder: Linux’s shell is case-sensitive. So, make sure you type the name’s directory as it is.
The echo command displays a line of text or string passed as an argument. It’s used for the purpose of debugging shell programs in the Linux terminal.
echo [Option] [String]
Other examples of the echo command are:
echo "String"
: This displays the string within the quotes.
echo -e "Learn \nBy \nDoing"
: Here the ‘-e’ tag allows the echo command to understand the backslash escape sequences in the argument.