Mitali sahuwhat-is-oops.hashnode.dev·Dec 10, 2024Why multiple inheritance is not supported in java?What is multiple inheritance ? So whenever the child class inherits the properties from the multiple parent class then it is called as multiple inheritance. Why it is not supported? Let suppose java supports multiple inheritance, so the subclass inhe...DiscussJava
Darshan Kdarshank7.hashnode.dev·Nov 30, 2024Practice SQL Without Installing MySQL: Use Docker on cloud.MySQL is one of the most widely used relational databases. However installing and setting up MySQL locally on your system can be time-consuming and resource-intensive. But what if you could practice SQL queries and explore MySQL without needing to in...Discuss·6 likesMySQL
Abdullah Alabdabdullahalabd.com·Nov 21, 2024[Practices] Taking NotesTrivial as it seems, This practice is one of the most powerful actions one can do. Why do I need notes? Our minds are not the most reliable source of truth: Thoughts tend to mutate over time. Human brains are not great at dealing with many thoughts...Discuss·38 readsnote-taking
Yasir Yurdusevenpracticingwebpages.hashnode.dev·Oct 24, 2024FormBasics<html> <head> <title>Form Uygulamaları Deneme</title> <!-- Since I am Turkish, the entire form is in Turkish; I hope you don't mind. --> </head> <body> <form name="giris" action="giris.html" method="post"> ...DiscussHTML5
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Sep 8, 2024☑️Day 7: Linux Hands-On PracticeHello DevOps Enthusiasts, As I continue on Day 7 of my DevOps journey, I’ve come to realize that mastering the basics of Linux is an essential step toward becoming a proficient DevOps engineer. Whether you're handling servers, automating tasks, or tr...DiscussLinux
Rajeshhashnodehub.hashnode.dev·Aug 17, 2024The _Consistent_CodeFocus on getting your ideas down without worrying about perfection......↗️↗️🎯🎯 Welcome to The Consistent Code, your definitive guide to mastering the discipline and consistency needed for coding excellence. Here, we turn your potential into perform...Discuss·11 likes·28 readsDeveloper
Berker Senberkersen.dev·Aug 16, 2024Practice Suite 2.1.0Hi everyone! After a long break, I finally manage to release an update for Practice Suite with much needed bug fixes and requested features. Here’s what’s new: 🚀 New Features Play Progress in Recording Tiles: You can now see your play progress dire...DiscussFlutterFlutter
Dnyaneshwar Argadednargade95.hashnode.dev·Aug 11, 2024SQL Practice Challenge Day 2🚀 Day 2: 100 Days of SQL Learning Challenge Begins! 🚀 Hello I’m excited to kick off my 100-day SQL learning challenge today! 🎉 For the next 100 days, I'll be solving and sharing 10 SQL questions daily, aiming to deepen my skills and knowledge. Her...DiscussSQL
Dnyaneshwar Argadednargade95.hashnode.dev·Aug 10, 2024SQL Practice Challenge Day 1🚀 Day 1: 100 Days of SQL Learning Challenge Begins! 🚀Hello LinkedIn community!I’m excited to kick off my 100-day SQL learning challenge today! 🎉 For the next 100 days, I'll be solving and sharing 10 SQL questions daily, aiming to deepen my skills ...DiscussSQL
GaramYoongaramyoon.hashnode.dev·Jul 15, 2024Determining Return Values (Using the Console)const number = Number(prompt('How many people?')); if(number){ } When the user clicks "Cancel" in prompt(), it returns null. Since Number(null) results in 0, number is set to 0. This behaviour can be observed directly in the console. Before understa...DiscussJavaScript