1
vote
1answer
27 views
How do I use namespaces with Zend Framework?
Namespaces are really useful and PHP had no support for them until the recent few releases, AFAIK.
When I'm using Zend Framework, I have to remember long names with underscores - l …
7
votes
8answers
421 views
Why does everybody use unanchored namespace declarations (i.e. std:: not ::std::)?
It seems to me that using unanchored namespaces is just asking for trouble later when someone puts in a new namespace that happens to have the same name as a root level namespace a …
0
votes
3answers
47 views
Namespace constant thingy for forward slash
What’s the .net namespace constant thingy for the forward slash "/"
So instead of:
somePath + "/" + someFile
I can do:
somePath + .net.namespace.forwardslash + someFile
Not …
1
vote
3answers
121 views
Basic OO with PHP
without telling me to buy a book, would anyone be interested in answering the following question?
if i am in a namespace with a class named foo. and i wanted to build another cla …
1
vote
4answers
84 views
Shorten nested namespace names
If you use nested namespaces, declarations in header files can get very long and unreadable.
//header1
namespace test { namespace test1 {
class Test {};
} } //namespace
In heade …
1
vote
3answers
37 views
Rails - Namespacing models
Usually there are a lot of models in a Ruby on Rails project, so:
Is it a good practice to namespace them (in modules/folders)? What are the downsides?
EG:
Shop
category.rb
de …
1
vote
5answers
121 views
How to write cleaner code while instantiating an object with enumerations without using keyword?
Hi all,
I recently created a class which has a constructor taking 3 enumerations as arguments. These enumerations are defined in the object itself as ObjectEnum and AnotherObjectE …
1
vote
3answers
30 views
How do I import a COM object namespace/enumeration in Python?
I'm relatively new to programming/python, so I'd appreciate any help I can get. I want to save an excel file as a specific format using Excel through COM. Here is the code:
imp …
0
votes
3answers
43 views
Do I need to namespace my JavaScript code if it’s in an <iframe>?
If I write some JavaScript that runs in an <iframe> (which is dynamically created and added to the DOM with JavaScript, if that matters), is it isolated from the global names …
1
vote
2answers
47 views
Type/Namespace alias conventions in C#
Are there are any established naming or coding conventions for defining namespace or type aliases in C#?
For those who are unaware, the C# language has a feature where aliases can …
1
vote
3answers
72 views
Javascript: namespacing
I'm currently using the following pattern to create namespaces and singleton objects in Javascript:
var Namespace = function () {
var priv = {
privateVar1: '',
…
2
votes
1answer
28 views
global Javascript files and naming conventions (unobtrusive javascript)?
Hi there,
I am trying to reorganize my javascript into JS files and clear out my js from my html... The way i see if is the following.... I would really like some input or any do …
0
votes
2answers
77 views
using namespace issue
When I use the following
#include <map>
using namespace LCDControl;
Any reference to the std namespace ends up being associated with the LCDControl name space.
For insta …
14
votes
13answers
982 views
Why is ‘using namespace std;’ considered a bad practice in C++?
Okay, sorry for the simplistic question, but this has been bugging me ever since I finished high school C++ last year. I've been told by others on numerous occasions that my teache …
2
votes
2answers
75 views
Is attaching functions to the jQuery object bad practice?
Currently I have a jQuery plugin which not only sets up its function in $.fn but also $ itself, checking if (typeof(this) == 'function') to see if it has been called through $.plug …
