H A R S H H A Aharshhaa.hashnode.dev·a day agoHow DevOps Engineers Can Utilize ChatGPT To Become 5x More EfficientDevOps Engineers constantly seek innovative ways to streamline their workflows and enhance productivity. Artificial Intelligence (AI) models like ChatGPT, based on OpenAI’s GPT-3 architecture, have emerged as powerful tools to assist DevOps professio...Discuss·14 likes·222 readschatgpt
Slawomir Moriakslamcode.hashnode.dev·17 hours agoLearn any new Frontend frameworkSharing approach and keynotes from learning new frontend frameworks emerging in the web and mobile world. With example of React client app. Why learn? As a developer, we know, that the technological environment changes rapidly. Keeping up with new co...Discussfrontend
Pranav Katkarpranavk11.hashnode.dev·20 hours agoMongoDBMongoDB is a popular NoSQL database system that is known for its flexibility, scalability, and ease of use. It is classified as a document database, which means it stores data in a semi-structured format called BSON (Binary JSON) in the form of docum...DiscussMongoDB
Mark Parkermarkparker5.hashnode.dev·Sep 20, 2023S.T.A.R.K - The First Voice Assistant's FrameworkHello, tech enthusiasts! Today, I'm thrilled to introduce you to S.T.A.R.K, the Speech and Text Algorithmic Recognition Kit. If you've ever dreamt of creating a voice assistant that's modern, advanced, and incredibly intuitive, S.T.A.R.K is your answ...DiscussProgramming Blogs
Mariano Gonzálezblog.mariano.cloud·Sep 19, 2023The 3 Rs: Reduce, Recycle, RepeatWhy One of (Software) Development's best practices is to make code reusable - meaning we want to make sure to reutilise pieces and bits of code so as not to write repetitive lines in our program. What A module in Terraform is a grouping of resources,...DiscussTerraform
Sarthak Jainblog.sarthakjdev.com·Sep 19, 2023Continuous Integration (CI)Introduction As a seasoned software developer, I've come to appreciate the value of streamlining development processes, especially in the world of DevOps. One essential practice that has proven to be a game-changer is Continuous Integration (CI). In ...Discuss·2 likesCloud DevOps MasteryDevops
Hemanth Vishwakarmahemanthvk.hashnode.dev·Sep 18, 2023Simplifying Clean Code: Guide to Writing Better SoftwareBefore learning about clean code let's know something about bad code. Let's say you are the first one to release an application in the market. And the application is superb and well-written. Now as time passes by with ever-changing times the requirem...Discuss·10 likesclean code
Nishikanta Raynishikanta.hashnode.dev·Sep 18, 2023Modular UIs with Compound Components in React 🧩Introduction 🚀 When it comes to building user interfaces in React, creating reusable and maintainable components is crucial. One powerful design pattern that can greatly enhance the modularity of your UI is the Compound Component pattern. In this bl...DiscussJavaScript
Sarthak Jainblog.sarthakjdev.com·Sep 18, 2023Version Control with Git: A Developer's GuideIntroduction As a software developer, one of the essential skills you must possess is effective version control. Git, the most widely used version control system, has revolutionized the way developers collaborate on projects, track changes, and ensur...Discuss·2 likesGit
Ratish Jaindevcon.hashnode.dev·Sep 18, 2023JavaScript Prototypes and Prototypal InheritancePrototypes: Foundation of Javascript In Javascript, everything is an object and the prototype serves as a blueprint for every object containing its properties and methods. To understand it more easily let's first understand what are constructor funct...Discuss·26 readsJavaScript