Darsh Pateldarsh-patel.hashnode.dev·Sep 27, 2024The Essentials of Namespaces in C++ ExplainedIntroduction In modern programming, codebases have grown in size and complexity, often involving thousands of lines of code and multiple modules. As a result, naming conflicts can become a serious issue. When multiple developers work on the same proj...2 likes·36 readsC++
Brett Rowberrybrettrowberry.com·Jul 12, 2024Alias for the clojure.string NamespaceIn Clojure, it's possible to alias a namespace in so many ways. You can read more at [clojure.org](https://www.clojure.org/guides/learn/namespaces). I'm used to seeing the alias for the namespace clojure.string as str. I haven't been coding much late...Clojure
Alexander Septian Arfeprakosaalexandersap.com·May 1, 2024Beginner Guide to PHP NamespaceBackground When I started using PHP (back when when I use it, it was PHP 7), there was a peculiar feature called namespace. Usually it's used this way <?php namespace App\Http\Controller; use Carbon\Carbon; class PostController { // some code.....PHP
Yashraj Singh Sisodiyatheyashsisodiya.hashnode.dev·Mar 11, 2024Day 37: Kubernetes Important interview Questions.Breaking Down Kubernetes: Must-Know Interview Questions Welcome to a comprehensive guide on Kubernetes interview questions! Whether you're a DevOps intern gearing up for interviews or a seasoned professional brushing up on your knowledge, these quest...continer
Rudraprasad Mohapatrarudraprasadmohapatra.hashnode.dev·Apr 7, 2023what is global namespace in javascriptIn JavaScript, the global namespace refers to the global scope or the highest level of scope in a program. It is the space in which variables, functions, and objects are defined outside of any function, class, or block. Any variable or function defin...namespace