© 2023 Hashnode
#2articles1week
Problem How to log in automatically to /bin/bash as the default shell in Deepin OS Solution Check your OS In the terminal, you can check your operating system by running the following command lsb_rel…
There are some important array methods in JavaScript some of them are as follows: toString() - Converts an array to a string of comma-separated values join() - joins all the array elements using a s…
Sometimes our script can have errors. Execution of the program halts when an error occurs. We can use the try-catch method to catch errors and maintain the flow of execution. As we can see only the …
Going further in this article, the basic knowledge of the syntaxes of HTML and CSS is important but not necessary. In this article, I will be demystifying: The Meaning of a Preprocessor The CSS prep…
Problem How to install react 18 in a Ruby on Rails 6 application Current Env This is my current environment Rails 6.0.6.1 ruby 2.7.2p137 Deepin OS 20.7.1 webpacker: ^5.4.4 In case you want to double…
What is ECS? ECS stands for Elastic Container Service is a fully managed container orchestration service provided by AWS. It allows you to run, manage, and scale Docker containers in a highly scalabl…
Introduction In the last two articles, we were concerned with how the DBMS looks on disk. In this article, we are going to see how DBMS manages its memory and moves data back and forth from the disk a…
A database is a structured collection of data that is organized, stored, and managed in a way that allows for efficient retrieval, updating, and analysis of the data. It is designed to facilitate the …
"If debugging is the process of removing software bugs, then programming must be the process of putting them in."~ Edsger Dijkstra What is Debugging? Debugging is the process of identifying and elimin…
Arrays are variables which can hold more than one value const fruit = ["banana", "apple", "grapes"] const a, = [7, "Arpan", true] - Can be different types Accessing values let numbers = [1,2,7,9] …