Surbhi Paliwaldevops-and-surbhi.hashnode.dev·Dec 7, 2023Mini Project - 3Hosting a Web Server on Amazon Web Services (AWS) Elastic Compute Cloud (EC2) and creating own website. Tools Used: Apache, AWS EC2, Step1: Launch AWS EC2 My-Web-Servere - Instance Name T2 Micro - Instance Type Key pair - create - use putty for windo...DiscussDevops
Vishwajeet Sharmavishwajeetsharma.hashnode.dev·Dec 3, 2023Is Coding Easy? Things Beginners Should Consider and My ExperienceHey there! 🌟 Ever wondered if coding is easy-peasy or a bit of a brain teaser? Let’s unravel this coding adventure and see what beginners should think about before diving in! Is Coding a Piece of Cake? So, is coding like a stroll in the park? 🚶♂️ ...Discusscoding
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 19, 2023Dart: PracticeDartPad DartPad is an in-browser Dart code editor and compiler created by Google. It allows you to write and run Dart code directly in your web browser without needing to install any Dart tools. Some of the main features and use cases of DartPad are:...DiscussDart & FlutterDart
Ayush Srivastavaayush77.hashnode.dev·Nov 19, 2023Top CSS Questions for Interview PreparationWhat is CSS? CSS stands for Cascading Style Sheets. It's a language used for describing the look and formatting of a document written in HTML or XML. It provides the stylistic features such as colors, fonts, and layouts to HTML. CSS also provides...DiscussCSS3
Stepabinarypasta.hashnode.dev·Nov 1, 2023Master the Longest Unique Substring ProblemSolving the problem of finding the longest substring with unique characters can be a challenging task. The initial approach might lead you into loops of confusion and inefficiency. Even when seeking solutions online, deciphering the provided solution...Discussalgorithms
phú hoàngphuhoang.hashnode.dev·Oct 6, 2023Docker Day 1Docker for beginners 0.0 Setup Prerequisites There are no specific skills needed for this tutorial beyond a basic comfort with the command line and using a text editor. Prior experience in developing web applications will be helpful but is not requir...DiscussDocker
harsh sehrawatharsehrawat.hashnode.dev·Sep 9, 2023WorkingToday i solved another couple of Leetcode problems . Now i am done with solving array easy leetcode question . Tomorrow onwards gona learn new topic in dsa and gona try that topic’s easy leetcode problems parallel with array medium Leetcode problems....Discuss·1 likeDSA
Prabhu Rrprabhu.hashnode.dev·Sep 8, 2023Code-athon, Code marathon or Hackthon: Is it good?In the ever-evolving landscape of tech-driven workplaces, companies are increasingly adopting unique approaches to foster innovation, collaboration, and rapid problem-solving. One such approach gaining popularity is the code-athon, code marathon or h...DiscussProgramming Blogs
Ayush Srivastavaayush77.hashnode.dev·Sep 1, 2023Interview PracticeWhat is Closure in Javascript? Need Closures in JavaScript are necessary for data privacy and encapsulation. Without closures, it would be challenging to achieve data hiding and manipulation in a controlled manner. What is it? A closure in Ja...Discuss·28 readsJavaScript
Yatin Gambhiryatingambhirtech.hashnode.dev·Aug 17, 2023GitHub Basic Operations Pt. 1GitHub Basic Commands git config: This command sets the author name and email address respectively to be used with your commits. git config –global user.name “[name]” git config –global user.email “[email address]” git init: This command is used to ...Discuss·3 likes·47 readsGitHub