Tagged Questions

The underscore, Unicode Character 'LOW LINE' (U+005F). For questions about Underscore.js, please use the `underscore.js` tag.

learn more… | top users | synonyms

47
votes
7answers
10k 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 ...
23
votes
3answers
11k views

Converting camel case to underscore case in ruby

Is there any ready function which converts camel case Strings into underscore separated string? I want something like this "CamelCaseString".to_undescore to return "camel_case_string"
15
votes
2answers
478 views

In Ruby on Rails Routing I Would Like to Use Dash `-` Instead of Underscore `_`

I would like all the URLs for my web applications to use dash - instead of underscore _ for word separators. I'm surprised about a couple of things really: Google et al. continue to distinguish ...
12
votes
2answers
613 views

Underscore in Python

What is the meaning of _ after for in this code? if tbh.bag: n = 0 for _ in tbh.bag.atom_set(): n += 1
10
votes
1answer
146 views

Scala underscore - ERROR: missing parameter type for expanded function

I know there have been quite a few questions on this, but I've created a simple example that I thought should work,but still does not and I'm not sure I understand why val myStrings = new ...
10
votes
3answers
488 views

_ as variable name in Python

Peter Norvig has an essay describing a program to solve sudoku puzzles, even the hardest ones, by combining deterministic logical operations and smart traversal of the possible solutions. The latter ...
9
votes
6answers
5k 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 ...
8
votes
2answers
473 views

How to get the sort order in Delphi as in Windows Explorer?

Summarization: The terminology that I have been looking for seems to be "natural sort". For behaviors in operating systems: For Windows (version >= XP), Windows Explorer utilizes natural sort. For ...
7
votes
1answer
304 views

Partial function application prematurely runs codeblock when used with underscore

Given: def save(f: => Any)(run:Boolean) { if (run) { println("running f"); f } else println("not running f") } I can call it with: save("test")(true) -> running f save("test")(false) -> ...
7
votes
7answers
2k views

Trailing underscores for member variables in C++

I've seen people use a trailing underscore for member variables in classes, for instance in the renowned C++ FAQ Lite. I think that it's purpose is not to mark variables as members, that's what "m_" ...
5
votes
2answers
215 views

C# Variable Name “_” only

I just hit with a minor issue in C#, it was just a copy-paste mistake but don't know how c# accept it. This code gets compiled successfully...HOW namespace DemoNS { class DemoClass { ...
5
votes
5answers
311 views

PHP - add underscores before capital letters

How can I replace a set of words that look like: SomeText to Some_Text ?
5
votes
3answers
282 views

Underscore function

I'm here watcing at some C source code and I've found this: fprintf(stderr, _("Try `%s --help' for more information.\n"), command); I already saw the underscore when I had a look at wxWidget, and I ...
5
votes
1answer
512 views

Django: Meaning of leading underscore in list of tuples used to define choice fields?

I've seen a few examples defining choice fields like so: COUNTRIES = ( ('fr', _('France')), ('de', _('Germany')), ... ) (source: http://code.djangoproject.com/ticket/5446 Also see: ...
4
votes
5answers
714 views

camelCase to underscore in vi(m)

If for some reason I want to selectively convert camelCase named things to being underscore separated in vim, how could I go about doing so? Currently I've found that I can do a search /s[a-z][A-Z] ...
4
votes
1answer
622 views

doctrine 2 Annotations and Zend Framework underscore convention

I am working through the doctrine 2 (Beta3) sandbox and trying to apply the Zend Framework coding convention of placing a leading underscore to private class members. When I query Address, while its ...
4
votes
2answers
1k views

Lucene search and underscores

When I use Luke to search my Lucene index using a standard analyzer, I can see the field I am searchng for contains values of the form MY_VALUE. When I search for field:"MY_VALUE" however, the query ...
4
votes
2answers
370 views

dashes vs underscores in URL

In URL rewriting, i am quite confused that should i use underscore (_) OR hyphen (-) to replace spaces. According to this and this, hyphen should be used. But wikipedia uses underscores like ...
4
votes
1answer
706 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 ...
3
votes
1answer
109 views

Is the proper Rails inflection of underscore 'underscoreize'?

It seems that with Rails/AR and the Inflector methods added to String by ActiveSupport, I would expect that by default, Nested::ClassDerived::FromAR.name.tableize == ...
3
votes
2answers
223 views

Emacs regex word boundary (specifically concerning underscores)

I am trying to replace all occurrences of a whole word on emacs (say foo) using M-x replace-regexp. The problem is that I don't want to replace occurrences of foo in underscored words such as ...
3
votes
5answers
272 views

Why does google suggest to use trailing underscores when naming iVars in Objective-C?

In Google's Objective-C Style guide which is follow by many people , Google says Class member variables have trailing underscores Why? Is there any good reason for doing this? I found apple ...
3
votes
1answer
183 views

Strange underscore param in remote links

I use Rails3, JQuery and will_paginate gem to make remote pagination links. Known solution for this is: $('.pagination a').live('click',function (){ $.getScript(this.href); return false; }); ...
3
votes
1answer
153 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 ...
3
votes
8answers
726 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: ...
3
votes
3answers
1k views

Unix sort treatment of underscore character

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 the ...
2
votes
3answers
29 views

PHP SOAP operations that start with an underscore

With PHPs SOAP implementation, I can't call methods from the WDSL, if they start with an underscore. I.e.: $result = $server->_-testing_-getPrices(array('Receiver'=>'John')); DOESN'T WORK! ...
2
votes
5answers
90 views

Why use camelCase in JavaScript?

I prefere using underscore instead of camelCase when I code in JavaScript. I know that standard it using camelCase. But are there any disadvantages using underscore when naming stuff in JavaScript? ...
2
votes
2answers
138 views

Is there a recommended common pattern to memoize ajax calls?

I'm working with some government data published via Socrata's SODA api. This API provides a way to retrieve rows via a REST call. The API allows limited parameterization of the query - basically you ...
2
votes
2answers
266 views

In Emacs org-mode, Latex export of literal string containing “\__” giving problem

I am trying to export a literal string from Emacs Org-mode to Latex for subsequent export to pdf. The literal string is: str1\__str2 I have tried the following input in the Org file: ...
2
votes
4answers
232 views

Python underscore as a function parameter

I have a python specific question. What does a single underscore _ as a parameter means? I have a function calling hexdump(_). The _ was never defined, so I guess it has some special value, I could ...
2
votes
1answer
407 views

Missing column that contains an underscore when trying to use Hibernate to map Date field

I have a JPA TableXXX class that contains the following field: @Column(name = "CreatedOn") @NotNull private Date createdOn; When I compile and deploy my app it throws an error: Caused by: ...
2
votes
1answer
237 views

Embedded video with an underscore in youtube ID won't work on iPhone

I can get all 5 videos working on my computer's browser, but the fourth video fails on my iPhone (via Safari). http://basenycapp.s3.amazonaws.com/stream.html I think it's because the youtube id has ...
2
votes
2answers
589 views

How to make MySQL treat underscore as a word separator for fulltext search?

I am using MySQL fulltext and PHP (codeigniter) to search a database containing RSS items. Problem is some of these items's titles use underscores instead of spaces. Since MySQL considers underscores ...
1
vote
4answers
69 views

user-friendly URLs reliable with the database

I have a database containing a table named songs with a field title. Now If my url is http://www.foo.com/songs/xxx (xxx = the title of the song), apache is silently redirecting to a page that looks ...
1
vote
1answer
89 views

Using hyphen or underscore as word separator for files under Linux

I get always confused when I have to give a new name for a new data or executable file under linux, to use underscore or the dash to separate words in the name. My question: Are there any standard or ...
1
vote
3answers
162 views

PHP regex, replace all trash symbols with underscores

I can't get my head around a solid regex for doing this, still very new at all this regex magic. I had some limited success, but I feel like there is a simpler, more efficient way. I would like to ...
1
vote
1answer
445 views

Python underscore variable

In interactive python, there is the 'continuation variable', the underscore. >>> import netlib >>> netdev = netlib.netface('eth1') >>> if netdev.getIP(): ... print _ ... ...
1
vote
1answer
204 views

Scala underscore use to simplify syntax of function literals

I have the following code: var x = Array(1,3,4,4,1,1,3) var m = Int.MaxValue x.foreach((x)=>(m = m min x)) I tryied to simplify last sentence to: x.foreach((m = _ min m)) But the interpreter ...
1
vote
3answers
944 views

PHP/MySQL naming conventions: camelCase vs under_score?

Quite often in PHP model code (at least in my own such code) there are direct references to MySQL table and field names, and since MySQL identifiers are for the most part case-insensitive I typically ...
1
vote
5answers
311 views

Regex that matches everything before an underscore

I have a fair bit of Regex knowledge, but I'm stumped by this one. I need a Regex that matches everything before the last underscore, but only if the text after the underscore is "self", "ally" or ...
1
vote
3answers
324 views

zend framework 2 underscore private

Will Zend Framework 2 continue to place underscores in front of private members and methods of classes? e.g: class blah { private $_name; private function _doSomethingToName() { } } ...
1
vote
2answers
1k views

Implicit vs explicit getters/setters in AS3, which to use and why?

Since the advent of AS3 I have been working like this: private var loggy:String; public function getLoggy ():String { return loggy; } public function setLoggy ( loggy:String ):void { // ...
1
vote
2answers
697 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
1answer
33 views

png images not loading in iOS simulator - underscore in filenames

I'm having trouble loading png images into my app. It seems to be an underscore in the filenames that is causing problems, but I don't understand why that would be the case. I thought that an ...
0
votes
4answers
34 views

Underscore between two image-links

I have the following HTML code inside a div: <a href="http://www.mysql.com"> <img src="images/php-power-micro2.png" alt="Image not available" title="PHP" border="0"/> </a> <a ...
0
votes
4answers
99 views

Should I use “camel case” or underscores in python? [closed]

So which is better and why? def my_function(): or def myFunction():
0
votes
0answers
16 views

Want to index underscores in Zend Search

I'm using the Zend Lucene Search, and have encountered an issue that I believe stems from tokenization. The app indexes a large set of html files, and returns wildcard search results. This works fine ...
0
votes
1answer
43 views

How to read a log from a SVN path with spaces with SharpSVN?

I have a path in a repo with spaces like this: https://mysvnserver.local/svn/branches/2.7 Feature XYZ Now I want to read the log from this path using SharpSvn. I have this code: var client = new ...
0
votes
0answers
25 views

How to turn off red underscore in comments in Netbeans?

There is a similar question : "Netbeans - Turn off - wavy red underlines - How?" But It's for earlier version, doesn't apply any more. I still want error to be underscored, just not in the comments, ...

1 2