0
votes
2answers
28 views
Is there a svn:keyword for “modification count” of a versioned file in subversion
The $Revision$ in CVS shows the version of a file, which based on modification count.
This is very convienient, as the modification count can be used as "Build Number", and for e …
3
votes
8answers
241 views
When NOT to use the static keyword in Java?
When is it considered poor practice to use the static keyword in Java on method signatures? If a method performs a function based upon some arguments, and does not require access t …
0
votes
2answers
30 views
this, current context-when should I use in jQuery?
Hi All,
I am not very sure with the use of "this" [current context] in jquery.What I know is- it prevents the dom from searching all the elements, it just work on that current elem …
3
votes
5answers
59 views
Is there a difference between using “this” and “prototype” in Javascript here?
Hi,
Is there a difference between the two codes below, I presume not.
function Agent(bIsSecret)
{
if(bIsSecret)
this.isSecret=true;
this.isActive = true;
this.i …
-6
votes
2answers
169 views
Can a java class member variable decleared as `native`?
For instance, is the following legal
public class Foo {
private native int bar;
}
0
votes
3answers
47 views
Add a Keyword Cloud in ASP.NET Page
Hi! I need to add a keyword cloud in my asp net web pages! Can anyone suggest me the best way to do it? I got a few working samples implemented using C# but I want to know if there …
-1
votes
0answers
15 views
Error while using Keyword Query object in asp.net application for search in sharepoint.
I am trying to use Keyword Query object in asp.net application.
I wrote this code :
Namespace : using System.Data.SqlClient;
using Microsoft.SharePoint;
…
3
votes
3answers
54 views
How do I find the revision that changed a line in my code using TortoiseSvn?
I have one line of code which seems commented. Basically the thing I want to find is the revision that changed this line in the code.
So, is it possible to see changes in code re …
4
votes
2answers
245 views
Is ‘@’ used in C++?
Is '@' used in C++? In this yacc file it is listed as a token. And i am sure i cant use @ as part of a variable name. Is @ used in C++? and how might i use it?
0
votes
8answers
159 views
Other usage of the this keyword in Java
(For those who read my previous question, this is the same teacher and the same project.)
My teacher 'inspected' my code for a web application project and provided some suggestion …
4
votes
6answers
246 views
What can human beings make out of the restrict qualifier?
If I got the C99 restrict keyword right, qualifying a pointer with it is a promise made that the data it references won't be modified behind the compiler's back through aliasing.
…
0
votes
3answers
32 views
Deduplicating an array of keywords (but not based on EXACT match)
Hi folks! I have a list of a few thousand terms. There is significant overlap in those terms, but in different forms. For example (ruby, a_ruby), (triathlon, triathlete, triathlete …
3
votes
1answer
111 views
Is there a better way to self reference a type?
I'm finding lately a lot of code smells related to referencing generic classes in C#. My gripes especially apply to those classes which inherit from DependencyObject and contain De …
0
votes
5answers
202 views
C: Behaviour of the `const` keyword
I've been told that if I'm coding in ANSI-C to declare in the order that the variables will be used, assert that pointers are not null and that indices are within bounds, and to in …
6
votes
7answers
144 views
Getting the the keyword arguments actually passed to a Python method
I'm dreaming of a Python method with explicit keyword args:
def func(a=None, b=None, c=None):
for arg, val in magic_arg_dict.items(): # Where do I get the magic?
pri …
