How to Install AWS CLI On Arch Linux

Posted: 2021-11-08 12:40:19
Source: https://linuxhint.com/install-aws-cli-arch-linux/

AWS CLI allows users to control different AWS services via the command line. It's a great tool for managing everything in AWS. The utility only requires Python to execute, so that's the only requirement. How to Install AWS CLI On Arch Linux is explained in this article.

How to Install and Configure OneDrive on Debian 11

Posted: 2021-11-08 11:47:18
Source: https://linuxhint.com/install-configure-onedrive-debian-11/

Microsoft OneDrive is a cloud storage service just like Google Drive. It helps you manage your data more efficiently and gives you more access to the platform. Microsoft provides a OneDrive app for all devices/OSs. How to Install and Configure OneDrive on Debian 11 is explained in this article.

How to Install Debian 11 in Virtual Box

Posted: 2021-11-08 10:32:09
Source: https://linuxhint.com/install-debian-11-virtual-box/

Debian is a Unix-like operating system that comes in handy in devices that handle heavy tasks. Installing an Operating System is similar to accessing a virtual machine over the cloud, except that this operating system will take space in your physical disk. How to Install Debian 11 in Virtual Box is explained in this article.

How to Add a User to Sudoers in AlmaLinux or Rocky Linux

Posted: 2021-11-08 10:27:50
Source: https://linoxide.com/how-to-add-user-to-sudoers-in-almalinux/

How To Start With WordPress CMS?

Posted: 2021-11-08 09:50:20
Source: https://linuxhint.com/wordpress-cms-beginner-guide/

WordPress is entirely free and open-source and based on PHP and SQL. WordPress is undoubtedly the most used and trusted content management system across the world. Using a content management system for your website allows you to edit and publish the content with zero coding knowledge.

How to setup Visual Studio Code for JavaScript

Posted: 2021-11-08 07:30:37
Source: https://linuxhint.com/set-up-visual-studio-code-for-javascript/

Visual Studio Code supports over 40 programming languages and is a free cross-platform code editor used for web and computer app development. Visual Studio Code is widely used for JavaScript development as it is lightweight yet has powerful inbuilt features like IntelliSense, formatting, refactorings, code navigation, debugging, and much more. In this article, we set up Visual Studio Code for JavaScript by first downloading and installing it and then installing in the Visual Studio Code IDE.

How to send an email using JavaScript?

Posted: 2021-11-08 07:28:51
Source: https://linuxhint.com/send-email-using-javascript/

Simple Mail Transfer Protocol or SMTP.JS is a JavaScript library that helps in sending email to a specific server. However, it should be kept in mind that it will only be used to send emails so it will only work with outgoing emails. In this article, we answered the question of how to send email using JavaScript by first defining our web application structure using HTML, and then we went on to JavaScript to implement the proper functionality.

How to search a string using the match() method in JavaScript?

Posted: 2021-11-08 07:27:17
Source: https://linuxhint.com/search-string-using-match-method-javascript/

String operations are the basis of many major and famous applications and web frameworks. From comparing passwords to checking the correct username, from accepting a captcha code to confirming a correct email address. In JavaScript, there are many string comparison operations available, but out of all of them, the most intriguing one is the .match() method. In this article, we discussed how to search a string using the match() and matchAll() method.

How to run JavaScript in PHP?

Posted: 2021-11-08 07:24:55
Source: https://linuxhint.com/run-javascript-in-php/

JavaScript is a client-side web programming language that gives our web applications and web pages the ability to think and act. Within the echo command, PHP treats every HTML element as a string. To develop the most dynamic web application or webpage, PHP and JavaScript functions are combined. In this post, we'll look at how to run JavaScript in PHP with examples.

How to resolve the “node is not recognized as an internal or external command ” error?

Posted: 2021-11-08 07:22:53
Source: https://linuxhint.com/resolve-node-not-recognized-as-internal-external-command-error/

Node.js is a powerful run-time environment based on Google’s v8 engine that is responsible for making fast and scalable web applications like streaming, chat apps, browser games, command-line applications, and much more. However, as a programmer, you cannot escape from errors. In this article, we provided two methods by which you can resolve the “node is not recognized as an internal or external” error that is properly installing Node.js and the second method was to set the environment variable path.

How to remove an event Listener in JavaScript? | Explained with examples

Posted: 2021-11-08 07:19:11
Source: https://linuxhint.com/remove-event-listener-javascript/

JavaScript is highly used in web page development. Being a dynamic language, it’s easy to change the behaviors of the page on runtime. Removing the event listener from a specific HTML element can be so important in some cases as you don’t want the event to get triggered multiple times without any reason. JavaScript can be very helpful to achieve this functionality. This article explains how we can simply remove an event attached to an HTML element.

How to remove a character from a string using replace() method in JavaScript?

Posted: 2021-11-08 07:08:12
Source: https://linuxhint.com/remove-character-from-string-using-replace-method-javascript/

JavaScript offers us primitive data types which are predefined used to store data temporarily. One such datatype is a string that is textual content enclosed in double or single quotation marks. The replace() is an inbuilt method of JavaScript that replaces a character or string with another character or string in a specified string. First, it searches the character/string and then replaces it with the string/character we set. In this article, we first defined what replace() method is and then we went on to see how to remove a character from a string using the replace() method of JavaScript.

How to practice JavaScript

Posted: 2021-11-08 06:31:07
Source: https://linuxhint.com/how-to-practice-javascript/

Everyone interested in learning programming, or even expert programmers, want to stay up-to-date with modern-day technologies. Javascript is the well known programming language that has been in the market of technology for almost two decades. It is now a globally used programming language that has almost everything; numerous libraries and tons of frameworks. In this article, we discussed what to do if you are new to JavaScript or how to keep improving as a programmer, and how to adopt practices that are used in major programming firms.

How to handle time zones in JavaScript code

Posted: 2021-11-08 05:41:58
Source: https://linuxhint.com/handle-time-zone-in-javascript-code/

JavaScript has become the most popular and massively used scripting language because of the tons of features it provides. One of the crucial features is handling the time zones. A time zone represents uniform standard time for different purposes in a country. In this article, we explained how to get a date and time and then use it in effective and efficient ways which are easy to learn for beginners. We have also elaborated on how we can handle time zones in JavaScript.

How to get the URL of the webpage using JavaScript

Posted: 2021-11-08 05:23:46
Source: https://linuxhint.com/get-url-of-webpage-using-javascript/

URL is a path that allows you to access a particular web page instance. In JavaScript, the location object holds information about the document's current URL. You can retrieve the location object for the current document with window.location method. JavaScript has its own methods to get the URL of the page which returns a lot of useful information like the hostname, pathname, and the query inside the URL. This article explains what URL is and how to access the URL of a webpage using different approaches in JavaScript.

How to create the “Scroll Back to Top” button in JavaScript

Posted: 2021-11-08 05:00:03
Source: https://linuxhint.com/create-scroll-back-to-top-button-in-javascript/

JavaScript is the evolving programming language and is used widely by software developers to build intuitive websites. A back-to-top button on a web page assists to shift quickly to the start of the page in seconds. As the name of the button implies, whenever clicked then takes the end users back to the start of the page immediately. Through this article, you easily learn how to create a scroll back to the top button in JavaScript. We also enlisted a detailed example.

How to create the “Copy to Clipboard” button in JavaScript

Posted: 2021-11-08 04:43:28
Source: https://linuxhint.com/create-copy-to-clipboard-button-javascript/

Copy to clipboard button is a necessity in many websites for instance if you have developed a website that paraphrases your sentences, or your website is a plagiarism remover, or it is a simple text field that lets the user write a message. To improve user experience, websites that provide some information and that information is required in other sections of the website,copy to clipboard function is used. This article explains procedure to create a copy to clipboard button using JavaScript.

next-20211108: linux-next

Posted: 2021-11-08 03:48:02
Source: http://www.kernel.org/

Version:next-20211108 (linux-next)
Released:2021-11-08

How to create a simple comment box on a web page using HTML, CSS, and JavaScript

Posted: 2021-11-08 03:17:00
Source: https://linuxhint.com/create-comment-box-using-html-css-javascript/

To get feedback or any message from a website visitor you need a comment box on your web page. A comment box can be created using any web technology whether it is simple HTML, CSS or even JavaScript. In this post, we provided you with the code and explanation of the code on how to create a comment box using HTML, CSS, and JavaScript.

How to create a dictionary in JavaScript with key-value pairs?

Posted: 2021-11-08 02:52:57
Source: https://linuxhint.com/create-dictionary-javascript-key-value-pairs/

Dictionary is not the traditional data type of the JavaScript programming language, but the objects can be treated as dictionaries in some cases. You can create an object through two different ways, one is to declare it and initialize it using the new Object() method and the second one is the shorthand way by simply declaring and assigning some key-value pairs to it. In this article, we went through both methods in detail and we have discussed how we can assign and retrieve values using direct assignment and indexer methods.

1 ... 576 577 578 579 580 ... 726