Ahammed Basha Shaikday-1-of-100-days-challenge.hashnode.dev·Dec 9, 2024DevOps Fundamentals: Understanding Its Importance and Day-to-Day ActivitiesDevOps has become a crucial practice in modern software development, enabling teams to deliver applications faster and with higher quality. In this post, we’ll explore the definition of DevOps, why it has gained so much importance, and break down the...Discuss·1 likeDevops
Vadish Chhatwaldukex.hashnode.dev·Jul 19, 2024DSA Journey: From Newbie to AceHectic Days Life has become really hectic these days. My college is literally torturing all students. Last, I wrote about how my mentor motivated the class to stay focused on DSA. It's been 2 days since then. I think the time for my continuous sittin...DiscussDSA
Fatima Jannetmahia.hashnode.dev·Jun 25, 2024Guide to Doubly Linked Lists in Data Structure AlgorithmsIn doubly linked list, each node has to arrows where one points to the next node and the other one points to the previous node. As you can see from the model, first node's previous reference is None and next reference is pointing to the 2nd node. 2n...DiscussPython Data Structure and Algorithm - DSAlinkedlist, doubly linked list
Cloud Tunedcloudtuned.hashnode.dev·Apr 21, 2024Daily Hack #day18 - BuiltWith.comBuiltWith.com is a web service that provides insights into the technology stack used by websites across the internet. By simply entering a website URL into the search bar, BuiltWith.com generates a detailed report outlining the technologies employed...DiscussDaily Hacksbuiltwith
Muhammad Hassaan Shahembeddeddeepdive.com·Feb 21, 2024toupper() function in CUsing the toupper() function in C The toupper() function in C is used to convert a lowercase character to its uppercase counterpart. For example, the toupper() function would convert the character 'a' to 'A'. The toupper() function takes a character ...Discussc programming
Muhammad Hassaan Shahembeddeddeepdive.com·Feb 21, 2024isxdigit() function in CUsing the isxdigit() function in C The isxdigit() function in C is used to check whether a character is a hexadecimal digit (0-9,a-f,A-F). The function takes a character as input and returns a non-zero value if the character is a hexadecimal digit, o...Discussc programming
Muhammad Hassaan Shahembeddeddeepdive.com·Feb 21, 2024isspace() function in CUsing the isspace() function in C The isspace() function in C is used to check whether a character is a space. The function takes a character as input and returns a non-zero value if the character is a space, or zero if the character is not a space. ...Discussc programming
Mizanul Islammizanul.hashnode.dev·Aug 11, 2023Paradigm ShiftA paradigm shift refers to a fundamental change in the way people think, perceive, or understand a particular concept, theory, or idea. It often happens when new evidence, discoveries, or insights challenge the existing beliefs or frameworks. This te...DiscussDaily LearningsDailyLearning
Muhammad Hassaan Shahembeddeddeepdive.com·Jun 21, 2023iscntrl() function in CUsing the iscntrl() function in C The iscntrl() function in C is used to check whether a character is a control character. The function takes a character as input and returns a non-zero value if the character is a control character, or zero if the ch...Discussc programming
Muhammad Hassaan Shahembeddeddeepdive.com·Jun 21, 2023isdigit() function in CUsing the isdigit() function in C The isdigit() function in C is used to check whether a character is a digit (0 to 9). The function takes a character as input and returns a non-zero value if the character is a digit, or zero if the character is not ...Discuss#ctypeheader