Tagged Questions

0
votes
4answers
148 views

Underscore in php function

What does it mean when a PHP function name begins with an underscore? for example: __construct() I know what the construct means but I've seen other places where the function begins with an …
4
votes
3answers
155 views

_ as variable name in Python

At http://norvig.com/sudoku.html, there's an essay describing a Python program to solve sudoku puzzles, even the hardest ones, by combining deterministic logical operations and smart traversal of the …
0
votes
6answers
193 views

PHP Preg-Replace more than one underscore

How do I, using preg_replace, replace more than one underscore with just one underscore?
0
votes
2answers
27 views

How to remove cookie with underscore in name in VB6?

I have VB6 web application and I have to remove cookie. Unfortunately cookie has underscore character in name -- exemplary cookie name looks like that: XXXXXXAAASS_session_key. When I try to remove …
3
votes
8answers
355 views

What is the meaning of leading underscores in a C++ constructor?

OK I am not a very experienced C++ programmer, but I was wondering what is the significance of the underscores in the arguments of the following constructor? class floatCoords { public: …
2
votes
4answers
603 views

What does double underscore ( __const) mean in C?

extern int ether_hostton (__const char *__hostname, struct ether_addr *__addr) __THROW; I found the above function definition in /usr/include/netinet/ether.h on a Linux box. Can someone explain …
1
vote
6answers
330 views

CSS: camelCase vs under_score

There is much to read out there concerning this old question. Most languages seem to have their preferred style - and everythings ok with this. But what about this question of style in the CSS …
5
votes
6answers
548 views

The meaning of a single- and a double-underscore before an object name in Python

I want to clear this up once and for all. Can someone please explain the exact meaning of having leading underscores before an object's name in Python? Also explain the difference between a single and …
0
votes
0answers
18 views

Underscores in Company Name when using C# Settings & LocalFileSettingsProvider

I've noticed that when using the Settings object that's created by a Windows Forms application, any spaces in the "Company Name" field of the assembly info are replaced by underscores in the path of …
0
votes
1answer
90 views

How can I configure vim so that movement commands will include underscores and CamelCase, but completion will ignore them?

For example, I currently have this: set iskeyword-=_ This has the effect of making this work: foo_bar If cursor is on "f", pressing w moves cursor to the underscore. Pressing again moves to the …
1
vote
2answers
227 views

Escaping _ efficiently in Tabular environment, LaTeX

How can you escape underscores only in the tabular environment without the use of \_? This thread discusses about underscore in general. I cannot use the environment verbatim nor the package …
0
votes
3answers
218 views

Unix sort treatment of underscore character

Hi, I have two linux machines, on which unix sort seems to behave differently. I believe I've narrowed it down to the treatment of the underscore character. If I run sort tmp, where tmp contains …
6
votes
5answers
1k views

What’s the deal with a leading underscore in PHP class methods?

While looking over various PHP libraries I've noticed that a lot of people choose to prefix some class methods with a single underscore, such as public function _foo() ...instead of... public …
0
votes
4answers
145 views

What are underscored symbols in a VB DLL?

I have a C++ app in VS2005 and import a VB DLL. IntelliSense shows me all the symbols in the DLL as expected but it also shows all (or nearly all) of them again with an underscore prefix (no @s in …