Questions tagged [namespaces]
For many programming languages, namespace is a context for their identifiers. Use this tag to indicate concerns about appropriate usage of namespaces.
28 questions
1
vote
0
answers
107
views
Conflict-less Bash library function and variable naming
Marvelous Bash does not support built-in sufficient namespace features for functions or variables to specific file/module you would find in PHP or JavaScript.
Conflicts in global scopes, which are ...
3
votes
2
answers
160
views
Defining hardware components structure
I'm writing firmware for my Arduino project, and I'm struggling with a clean, scalable hardware mapping structure. Initially, I had the following namespace:
...
3
votes
2
answers
363
views
"Sudo Mode" in VBA to Let UDFs Modify Workbook
Background
I am working on a VBA paradigm for modifying the Excel environment from a UDF. I call this "sudo mode", and I leverage Application.Run() to ...
-1
votes
1
answer
129
views
Compute pairwise Pearson's R in parallel with tasks separated by pairs of columns of an array [closed]
This code was an answer to my own question on SO, however I am looking at the line global X and wondering if there is a better way to do this. I try to minimize the ...
5
votes
3
answers
870
views
Stack Interview Code methods made from class Node and Smart Pointers
Mainly looking for feedback on my use of smart pointers to implement a standard stack. For interview level production code I have also include a namespace and asserts to test my class, let me know if ...
2
votes
0
answers
268
views
C++ matrix operations
Not much formal education in programming. One year in school. We did C++ classes for most user defined objects. I've written a few different class variations for matrices but wonder about how useful ...
2
votes
0
answers
62
views
Find target in sorted array pivoted at some unknown point in O(log n)
You are given an array sorted in ascending order which is rotated at
some pivot unknown to you beforehand. Find your target in \$O(log n)\$
which means it should be a binary search. If the value ...
5
votes
1
answer
395
views
Frame hack to get variable names as strings
I don't claim this is useful nor that it adheres to best practices. There's also no good reason the hack is a context manager, and it won't work on the interactive shell.
...
9
votes
2
answers
2k
views
Python Export Decorator
In Python, we use __all__ to explicitly denote the public API of a module or package. That looks like this:
...
3
votes
2
answers
278
views
C++ Data-Oriented Modules using namespaces and extern
I have been coding in a certain style for some time now, where I try to avoid classes and stick to pure data structures whenever possible. Basically every module of my program has its own namespace in ...
3
votes
2
answers
248
views
Computing dates and counts
I have a big SQL request where I compute dates or counts (from other tables), and I have to compute new dates based on conditions on those pre-computed dates and counts.
In the following example, I ...
3
votes
6
answers
3k
views
Reading strings into a vector, without using namespace std
I have been told that using namespace std is a bad practice (especially in header files). But wouldn't this make the program less readable?
...
9
votes
2
answers
3k
views
C++ Linked list with smart pointers
This seems to work fine, but I'm very new to C++ and would like any suggestions for improvements. Areas I have the most trouble with are:
Namespacing (honestly, it's still half looking stuff up and ...
10
votes
2
answers
360
views
mini-(Docker)-shell
I was given an assignment to write a mini-shell:
To write your own shell, you will need to start with a C program that
will prompt the user for input and accept in a number of arguments
from a ...
1
vote
2
answers
52
views
JS namespacing code
I have written a wrapper for my code that allows basic namespacing and I'd like some feedback on how it can be improved.
It is designed so that a module can define it's namespace and get access to ...