Mohammed Shakeelmaster-java.hashnode.dev·Nov 15, 2024Basics of JavaJava is a widely-used programming language known for its simplicity, robustness, and platform independence. Understanding its basics is crucial for diving into software development, from web applications to mobile apps. Let’s walk through the foundat...DiscussJava
Jatin Shastrijatinshastri.hashnode.dev·Nov 7, 2024Introduction to AWS Monitoring and LoggingIn this blog I will tell you how you can host a static web application on AWS S3. Here’s a step-by-step guide to help you set it up: Step 1: Create an S3 Bucket 1. Log in to the AWS Management Console.2. Navigate to the S3 service.3. Click on "Create...Discuss·10 likesAWS
Keerthi Ravilla Subramanyamkeerthiravillasubramanyam.hashnode.dev·Nov 2, 2024Heap Sort Explained: A Simple and Detailed OverviewIn our exploration of sorting algorithms, we've covered basic methods like Bubble Sort, Selection Sort, Insertion Sort, Merge Sort, and Quick Sort. Each of these algorithms has its own strengths, from simplicity to handling large datasets efficiently...DiscussData structures courseHeap sort
Nysa Guptanysaa.hashnode.dev·Nov 1, 2024Cryptography: The Secret Code Behind Your ScreensEver wonder how your data stays private when you’re shopping online, sending a message, or logging into a bank account? Cryptography is the art (and science) that makes sure all that sensitive information remains hidden from prying eyes. Imagine it l...Discuss·1 likecybersecurity
VISHNU VEMULAdevbsuters.hashnode.dev·Oct 29, 2024Var V/s Let and ConstHave you every wondered Where to use Var or Where to Use Let , Const ususally speaks for itself unlinke other two. There is a Major Difference between Var and Let : Var Has A Function Scope and Let has a Braces Scope. Didn’t get it? no problems , h...DiscussJavaScript
Muffinmuffinn.hashnode.dev·Oct 29, 2024Linux Shells - replicate Bash Script Practical ExerciseHôm nay mình học Linux Shells - có một phần khá hay gọi là Bash Script. Mình sẽ mô phỏng bài thực hành để học viết một Bash Script hỗ trợ việc recon trên Linux cho nhớ bài. (Và để trông ngầu hơn. Tại viết script trên CLI trông giống hắc cơ lỏ vl :)))...Discussbash script
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 28, 2024Python Functions: A Comprehensive GuideIntroduction In Python, a function is a reusable block of code that performs a specific task. Functions help break our program into smaller and modular chunks, making it more organized, manageable, and reusable. Python functions can accept inputs (pa...DiscusspythonPython
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 28, 2024Object-Oriented Programming (OOP): An In-Depth GuideIntroduction Object-Oriented Programming (OOP) is a programming paradigm centered around objects rather than actions. It allows developers to model real-world entities using classes and objects, promoting code reusability, modularity, and maintainabi...Discuss·1 likepythoncode
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 28, 2024Python Classes: A Comprehensive GuideIntroduction In Python, a class is a blueprint for creating objects (instances) that encapsulate data and functionality together. Classes define the structure and behavior of the objects, allowing you to model real-world entities in your code. Unders...DiscusspythonPython
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 28, 2024SQL: An IntroductionWhat is SQL? SQL (Structured Query Language) is a standardized programming language used for managing and manipulating relational databases. It allows you to create, read, update, and delete data stored in tables, which are organized into rows and co...DiscussSQLSQL