Siddhesh Paratesiddhesh877.hashnode.dev·Sep 26, 2024Understanding Rust's Ownership, Borrowing, and ReferencesRust has gained significant popularity in recent years, largely due to its unique approach to memory management and concurrency. At the heart of Rust's safety guarantees lies its ownership system, along with the concepts of borrowing and references. ...DiscussRust
Siddhesh Paratesiddhesh877.hashnode.dev·Sep 21, 2024Rust Basics: A Beginner's Dive into Ownership, Syntax, and MoreI’m a student with some experience in C/C++ and JavaScript, and recently I decided to take on the challenge of learning Rust. Why Rust, you ask? Well, it’s known for its performance, memory safety, and growing popularity in system programming, and I ...Discuss#RustCommunity
Ankita Lunawatcloudhub2295.hashnode.dev·Sep 3, 2024How to install Prometheus on UbuntuUpdate Your System Ensure your system is up to date. sudo apt update Create a Prometheus User For security reasons, create a separate user to run Prometheus. sudo useradd --no-create-home --shell /bin/false prometheus Create Directories for Prometh...Discussprometheus installation
Tushar Panttusharpant.online·Aug 26, 2024Day 6 of 90 Days Of Devops Challenge: Exploring Linux File Permissions and OwnershipIn the world of Linux administration, mastering file permissions and ownership is crucial for maintaining system security and proper access control. This guide delves into the intricacies of Linux file permissions, ownership, and the advanced concept...Discuss·21 likes·27 reads90 Days of DevOpsDevops
Erioifpuderio.hashnode.dev·Aug 5, 2024遇到的 Rust 所有权转移问题let client = reqwest::Client::new(); let res = client .get(url) .send() .await; match res { Ok(v) => { let text = v.text().await.unwrap(); let headers = v.headers().clone(); println!("{}", text.clone()); ...DiscussRust
Khushal Malikkhushalmalik.hashnode.dev·Jul 21, 2024Craft Your Own Linux Commands: A Beginner's Guide to Customizing Your Terminal :B9:Linux is a powerful and versatile operating system, but sometimes remembering all the commands can be a bit overwhelming. What if you could create your own custom commands? In this guide, I will walk you through the process of creating your own Linux...Discuss·22 likes·26 readsLinuxKhushal_Malik
Ammarammarite.hashnode.dev·Jun 29, 2024Some Rust Learning Experience (pt. 1)Starting with Python as the first programming language is good. The language is easy to use, focus on the main fundamental of programming, abstracting certain part of computer science components as they handled it on background; which make the beginn...Discuss·51 readsRust
Raka Alfariziglizzy.hashnode.dev·May 15, 2024The Future of NFTs: A Critical ExaminationNon-Fungible Tokens (NFTs) have taken the digital world by storm, revolutionizing the way we perceive ownership and value in the digital age. For many 20-year-olds navigating this tech-savvy era, NFTs represent not just a fad, but a transformative sh...DiscussNFT
Ahnaf Tahmid Zamanahnaftahmidzaman.hashnode.dev·May 13, 2024Resolving Linux User Account Renaming Issues: A Troubleshooting GuideIntroduction Renaming a user account in a Linux system is a task that can sometimes lead to unexpected complications. While the process seems straightforward, a misstep can result in login issues, leaving users locked out of their accounts. In this b...DiscussUser Account
Diego Barrancodiagram.hashnode.dev·Apr 25, 2024Rust with diagrams: Ownership 6 - References & BorrowingBefore reading about References and Borrowing, you should know how variables and data interact with "move" and "clone" and understand the concept of the Heap. You can find a summary of these topics in the next articles. Rust's memory approach, Data i...DiscussRust