Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Ayush Singh
Page 9 of 17
Can a website be solely built with HTML and CSS?
HTML (Hypertext Markup Language) and CSS (Cascading Style Sheets) are the foundational tools for web development. HTML builds the structure and content of a webpage, while CSS handles the visual styling and layout. Together, they can create complete static websites without requiring additional programming languages. Can You Build a Website with Just HTML and CSS? Yes, you can build a fully functional website using only HTML and CSS. This approach works perfectly for static websites that display information without requiring user interaction or dynamic content updates. Many successful websites, including portfolios, business landing pages, and documentation sites, are ...
Read MoreSetting Up Nginx with MariaDB and PHP/PHP-FPM on Fedora 24 Server and Workstation
Hosting websites and online applications requires setting up a web server infrastructure. In this article, we'll understand how to set up Nginx on Fedora 24 Server and Workstation using MariaDB and PHP/PHP-FPM. This combination creates a powerful LEMP stack for managing databases and serving dynamic content. Note: Fedora 24 is an older version that no longer receives security updates. For production environments, consider using a current Fedora version or other long-term support distributions. Installation Prerequisites Before starting, ensure your system is updated and you have root privileges. We'll install the LEMP stack components step by ...
Read MoreSetting Up LEMP Linux, Nginx, MySQL/MariaDB, PHP) and PhpMyAdmin on Ubuntu 15.04 Server
LEMP stack is a powerful combination of open source technologies used for web development and hosting. LEMP comprises Linux (the operating system), Nginx (pronounced "engine-x", a web server), MySQL/MariaDB (database management), and PHP (server-side scripting language). Note: Ubuntu 15.04 has reached end-of-life. This guide is for educational purposes. Consider using a current Ubuntu LTS version for production environments. Prerequisites Before starting the installation, ensure you have − Ubuntu 15.04 server with root or sudo access Internet connection for package downloads Basic command line knowledge Manual Installation Method Step 1: Update ...
Read MoreSetting Up LAMP (Linux, Apache, MariaDB and PHP) on Fedora 24 Server
Follow these instructions to install LAMP (Linux, Apache, MariaDB, and PHP) on a Fedora 24 server. LAMP stack provides a complete web development environment with Linux as the operating system, Apache as the web server, MariaDB as the database, and PHP for server-side scripting. Prerequisites: Ensure you have a fresh Fedora 24 server installation with root or sudo access and an active internet connection. Step 1: Update System First, update your system packages to ensure you have the latest versions ? sudo dnf update -y Step 2: Install Apache Web Server ...
Read MoreSetting Up LAMP (Linux, Apache, MySQL/MariaDB, PHP) and PhpMyAdmin on Ubuntu 15.04 Server
LAMP is one of the most widely used Open source technology stacks which is used in the development of web applications. In this combination, Linux acts as the operating system, while PHP is the server side programming language. MySQL or MariaDB acts as the database management system along with apache as web server. In this article, we’ll cover how to set up the LAMP stack with PhpMyAdmin on an Ubuntu 15.04 server. With the use of LAMP (Linux, Apache, MySQL/MariaDB, PHP) components, we can build interactive and engaging Web applications. Let's understand each component of the LAMP stack: Linux ...
Read MoreSetting Up High-Performance ëHHVM\' and Nginx/Apache with MariaDB on Debian/Ubuntu
Setting up high overall performance HHVM (HipHop Virtual Machine) with Nginx, Apache, and MariaDB on Debian or Ubuntu entails configuring an effective internet server stack to optimise the overall performance of internet programmes. HHVM is a just-in-time compiler designed for PHP, resulting in advanced execution speed. Nginx/Apache acts because the internet server software programme manages incoming requests efficiently. MariaDB serves as the database server to keep and manipulate statistics effectively. The system consists of putting in and configuring HHVM, Nginx/Apache, and MariaDB on the Debian/Ubuntu system. HHVM is incorporated with the internet server software programme, allowing the execution of PHP ...
Read MoreArrange the Array such that upon Performing given Operations an Increasing order is Obtained
You must use the proper sorting algorithms in order to organise an array in increasing order using the specified operations. Determine the most effective method first depending on the array size and data properties. Bubble Sort, Merge Sort, and Quick Sort are examples of popular sorting algorithms. Apply the chosen algorithm repeatedly, shifting the positions of elements based on comparisons between them until the array is organised in ascending order. The effectiveness of an algorithm is determined by how time−consuming it is, with the best ones producing quicker results. The array may be effectively organised in increasing order by carefully ...
Read MoreCount of Nodes with Maximum Connection in an Undirected Graph
In the field of network analysis, the number of nodes with the highest degree, signifying the greatest number of connections to other nodes in the network, is referred to as the "count of nodes with maximum connection" in an undirected graph. The number of edges that incident upon a node determines its degree. We may determine the critical or central points in the graph by identifying the nodes with the highest degree. This has important ramifications for a variety of applications, including network research, social network studies, and optimisation methods. Understanding these crucial nodes makes it easier to comprehend the ...
Read MoreFinding if a Node X is Present in Subtree of Another Node Y or Vice Versa for Q Queries
For Q queries, do the following to see if node X is in node Y's subtree or vice versa: Starting at node Y, navigate its subtree while keeping an eye out for node X. If discovered, X is in Y's subtree. Start at node X and navigate its subtree to find node Y in the reverse scenario. If Y is found, Y is a member of X's subtree. To efficiently carry out these tests, use tree traversal algorithms like Depth−First Search (DFS) or Breadth−First Search (BFS). The procedure guarantees accurate relationship determination between the nodes in each query. Methods Used ...
Read MoreCount of Connected Components in given Graph after Removal of given Q Vertices
The number of disconnected subgraphs created by the remaining vertices in a graph following the removal of Q specified vertices is represented by the count of connected components. There are no edges linking the various components; instead, each connected component is made up of a collection of vertices connected by edges. Some vertices may become isolated as a result of the removal of the Q vertices, causing connections to fall apart and new components to form. The approach seeks to ascertain how many disconnected subgraphs there will ultimately be. Numerous applications, including network analysis, social network studies, and optimisation methods, ...
Read More