How to Create a Sudo User on Ubuntu and other Debian-based Linux distributions
The sudo command is intended to permit users to run programs with the security privileges of another user, by default the root user.
0
0
3926
Create Git aliases, And Git Commands You May Not Know
One of my favorite feature in Git is aliases. Git supports aliases, which implies you can provide your commands any name you need. I like to set aliases for long commands to avoid (...)
0
0
2564
30+ Github Repos for JavaScript Developers
As the biggest stage for open source collaboration, Github is the ideal place for developers to work on resources related to JavaScript. A speedy hunt will yield JavaScript cheatsheets, (...)
0
0
4956
Why Composition API in Vue 3, and Options API vs. Composition API?
Perhaps the greatest feature in Vue 3's release is Vue's new Composition API. As developers start creating more large-scale projects with Vue, the difficulties of code organization, (...)
0
0
4869
20+ cool CSS Animated Buttons
1.Creative Button Animation Effects | Only Using HTML & CSS
0
0
9484
How to connect a PostgreSQL database server using PHP PDO?
Before connecting with the PostgreSQL database using PHP PDO, make sure PHP PDO PostgreSQL driver enabled.
0
0
8207
How to create PHP Pagination using PDO with example?
In this example, I am going to show you how to create pagination in PHP using PDO.First, create a DatabaseConnection.php to create a database connection.
0
0
10144
PHP PDO tutorial with CRUD operation example
One of the most significant PHP extension is called PHP Data Objects or PDO, which was available since PHP 5.0. PDO gives an interface to working with different RDBMS, including (...)
0
0
3688
How to Write/Append Multiple Lines to a File from terminal?
Sometimes you might be needed to write or append some text to a file from the terminal. You can use different strategies to write multiple lines to a record file through the command (...)
0
0
6610
How to Run Command Using SSH On Remote Machine?
There are different ways to run multiple commands on a remote Unix server using SSH. This article shows the most straightforward and easy approach to SSH and runs multiple commands (...)
0
0
4744