Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

55
votes
2answers
13k views

Maximum length of the textual representation of an IPv6 address? [closed]

I want to store the data returned by $_SERVER["REMOTE_ADDR"] in PHP into a DB field, pretty simple task, really. The problem is that I can't find any proper information about the maximum length of the ...
53
votes
10answers
24k views

In a django form, How to make a field readonly (or disabled) so that it cannot be edited?

In a django form, how do I make a field read-only (or disabled)? When the form is being used to create a new entry, all fields should be enabled - but when the record is in update mode some fields ...
48
votes
13answers
3k views

The Halting Problem in the Field

When have you ever personally come upon the halting problem in the field? This can be when a co-worker / boss suggested a solution which would violate the fundamental limits of computation, or when ...
19
votes
8answers
29k views

Structure Constructor in C++?

Can a struct have a constructor in C++? I have been trying to solve this problem but not getting any syntax.
15
votes
7answers
19k views

c# - How to iterate through classes fields and set properties

I am not sure if this is possible but I want to iterate through a class and set a field member property without referring to the field object explicitly: public class Employee { public Person ...
14
votes
2answers
6k views

Change the width of form elements created with ModelForm in Django

How can i change the width of a textarea form element if i used ModelForm to create it? Here is my product class: class ProductForm(ModelForm): long_desc = forms.CharField(widget=forms.Textarea) ...
13
votes
9answers
1k views

Why won't anyone accept public fields in C#?

Seems like every C# static analyzer wants to complain when it sees a public field. But why? Surely there are cases where a public (or internal) field is enough, and there is no point in having a ...
12
votes
3answers
256 views

How to loop on field names of a class

I have got a class which contains more then 150 fields. i need the name of fields (not value) in an array. because its very hard and not a good approach to write 150 fields name (which can be ...
10
votes
1answer
324 views

Java: Static transient fields

I just found out in Java you can declare a field 'static transient' - the compiler doesn't complain. This doesn't seem to be useful in any way since static fields are not serialized, as we all know. ...
10
votes
5answers
2k views

Why not abstract fields?

Why can't Java classes have abstract fields like they can have abstract methods? For example: I have two classes that extend the same abstract base class. These two classes each have a method that ...
10
votes
8answers
7k views

Best way to handle multiple constructors in Java

I've been wondering what the best (i.e. cleanest/safest/most efficient) way of handling multiple constructors in Java is? Especially when in one or more constructors not all fields are specified: ...
9
votes
2answers
150 views

Why would the Java compiler create a serialVersionUID synthetic field?

As part of debugging an application, I noticed that Field.getDeclaredFields() returns some synthetic fields, including a serialVersionUID field in a class extending an interface, although none extend ...
8
votes
3answers
73 views

Tool to look for incompatabilities in method signatures / fields

I would like to be able to compare two versions of a class / library to determine whether there have been any changes that might break code that calls it. For example consider some class Foo that has ...
7
votes
3answers
2k views

How do I assign by “reference” to a class field in c#?

I am trying to understand how to assign by "reference" to a class field in c#. I have the following example to consider: public class X { public X() { string example = "X"; new Y( ref ...
7
votes
5answers
257 views

What is @namespace field in C# class?

I'm browsing the source code of StyleCop, and I found a curious thing: /// <summary> /// The namespace that the rule is contained within. /// </summary> private string @namespace; // ...
7
votes
10answers
623 views

Programming for and by yourself

If you're writing something by yourself, whether to practice, solve a personal problem, or just for entertainment, is it ok, once in a while, to have a public field? Maybe?
7
votes
28answers
862 views

In Java, is it ever a bad idea to make an object's members publicly available?

I have a data class in my application. My application will never be used as a public API and I will be the only person developing code within my project. I am trying to save every ounce of ...
6
votes
1answer
138 views

Differences when overriding inherited constructor fields?

Consider this simple Scala class: class A(val d: Int) Is there a difference in Scala (either in behaviour or generated bytecode) between class B(d: Int) extends A(d) and class B(override val d: ...
6
votes
8answers
365 views

Using array fields instead of massive number of objects

In light of this article, I am wondering what people's experiences are with storing massive datasets (say, >10,000,000 objects) in-memory using arrays to store data fields instead of instantiating ...
6
votes
6answers
372 views

Idiomatic Scala way to deal with base vs derived class field names?

Consider the following base and derived classes in Scala: abstract class Base( val x : String ) final class Derived( x : String ) extends Base( "Base's " + x ) { override def ...
6
votes
5answers
292 views

Ms-Access: any need to have a low size for variable-length text fields

In an Ms-Access MDB, will it save disk space to limit the size of variable-length text fields? eg. If I have a variable-length Text field of size 20 and all the actual values of the field are under ...
6
votes
3answers
991 views

How to render form field with information that it is required

Is there any clever way to make django forms render field with asterisks after fields that are required? Or to provide some other clever for to mark required fields? I wouldn't like to have to do it ...
6
votes
5answers
852 views

Default size for database fields

What the size that you use for common database fields, like firstName, lastName, Email, password, etc? I see these common fields in a lot of databases of blogs, forums, e-commerces, etc. But I don't ...
5
votes
3answers
144 views

Modules and record fields

I have stumbled across a rather simple OCaml problem, but I can't seem to find an elegant solution. I'm working with functors that are applied to relatively simple modules (they usually define a type ...
5
votes
4answers
250 views

What is the most efficient way to parse a text file using Perl?

Although this is pretty basic, I can't find a similar question, so please link to one if you know of an existing question/solution on SO. I have a .txt file that is about 2MB and about 16,000 lines ...
5
votes
2answers
124 views

Factor Clojure code setting many different fields in a Java object

How do I factor code setting many different fields in a Java object? I would like to factor (set! (. employee name) "Chris") (set! (. employee age) 100) (set! (. employee salary) 5000) to (doseq ...
5
votes
3answers
143 views

Conceptual reason of the 'A field initializer cannot reference the non-static field, method, or property' CS0236 Error

C# does not allow an instance field initializer to reference another field. For instance this code is not valid : class A { string s1 = ""; string s2 = s1; } because "s2" references "s1". But ...
5
votes
3answers
693 views

Django: field's default value from self model's instances

How can I make default value for a field to be taken from existing objects of a model? I tried these and it didn't worked: 1) class ModelA(models.Model): fieldA = ...
5
votes
3answers
176 views

An “elegant” way of identifying a field?

I'm writing a system that underlies programmer applications and that needs to detect their access to certain data. I can mostly do so with properties, like this: public class NiceClass { public ...
5
votes
4answers
233 views

How to ensure that a field will never be null in a Java class

I am looking for a clean and safe way to ensure tha a field of a class will never be set to null. I would like the field value to be set once in the class constructor and never modified later. I think ...
5
votes
1answer
284 views

When have you used dynamic programming in the field?

When have you ever directly applied the concepts of dynamic programming to solve a problem in the field? It's sometimes not evident how it can be applied when using it to solve a made-up instance of ...
4
votes
1answer
50 views

How could I find the fields of a SharePoint list from database in SharePoint 2010?

In SharePoint 2003 and 2007, there was a table called AllLists which had a column called tp_Fields which contained an xml containing all fields for a specific list. an example of the xml stored in ...
4
votes
1answer
109 views

Why doesn't with…do statement and rectangle work together flawlessly?

Lately, I have been noticing that anytime I use Rectangle variable with With...do statement, it doesn't work at all for some reason. For instance: var bounds:=new Rectangle(0,0,0,0); with bounds do ...
4
votes
3answers
124 views

Extracting SUM of data from XML in Sql

I have an XML field in SQL table like this <Root> <Name>Apollo</Name> <Code>1000</Code> <Code>2000</Code> <Code>3000</Code> </Root> I ...
4
votes
2answers
1k views

Readonly property on Field SenchaTouch

Hi i've been looking for the readOnly property for field in secnhatouch but haven't found it... can some one assist me on this matter { xtype: 'textfield', name: ...
4
votes
2answers
452 views

Count non-empty input field[]?

With jQuery how do I count how many fields of my array field[] are not empty ? Sample of the input field <input type="file" name="arquivo[]" id="arquivo"> I was trying to make something up ...
4
votes
2answers
2k views

disable all form elements inside div

is there a way to disable all fields (textarea/textfield/option/input/checkbox/submit etc) in a form by telling only the parent div name in jquery/javascript?
4
votes
3answers
220 views

Javascript/HTML Form field naming issue

Consider the following simple form: <form method="GET" action="handle.php"> <input type="hidden" name="action" value="search"> </form> Form submission is performed by Javascript ...
4
votes
1answer
1k views

Doctrine 2 join table + extra fields

I've got two tables and a join table: 'staff', 'classification' and 'staff_classification'. In the join table I've got an extra boolean field: 'showclassification'. My annotation is as follows: /** ...
4
votes
5answers
181 views

Where's the Encapsulation?

I'm a new programmer, so please excuse any dumbness of this question, how the following code is encapsulating private data? - public class SomeClass { private int age; public int Age { ...
4
votes
2answers
256 views

Find all Lucene documents having a certain field

I want to find all documents in the index that have a certain field, regardless of the field's value. If at all possible using the query language, not the API. Is there a way?
4
votes
2answers
3k views

Field's value of native query in JPA

How to get value of some fields in a native query (JPA)? For example I want to get name and age of customer table: Query q = em.createNativeQuery("SELECT name,age FROM customer WHERE id=..."); ...
4
votes
3answers
1k views

C# abstract class static field inheritance

I feel like I skipped a C# class or two, but here's my dilemma: I have an abstract class from which I derive multiple child classes. I know for sure that for each of the child classes I will have a ...
4
votes
1answer
849 views

Get distinct values of Queryset by field

I've got this model: class Visit(models.Model): timestamp = models.DateTimeField(editable=False) ip_address = models.IPAddressField(editable=False) If a user visits multiple times in one ...
4
votes
2answers
161 views

Public Property Definition

What are the benefits of defining a property for a object instead of giving direct access to the private variable? Instead of : public class A private _x as integer = 0 Public property ...
4
votes
4answers
2k views

HTML text input field with currency symbol

I would like to have a text input field containing the "$" sign in the very beginning, and no matter what editing occurs to the field, for the sign to be persistent. I would be good if only numbers ...
4
votes
2answers
840 views

Delete field using curl in couchdb

I searched and didn't found, can I delete a field of a couchdb's document using curl ? The most I can do is delete a document :( curl -X DELETE ...
4
votes
1answer
896 views

Why do I have to do ldarg.0 before calling a field in MSIL?

I want to call a function, with as parameters a string and an Int32. The string is just a literal, the Int32 should be a field. So I thought it should be something like: .method public hidebysig ...
4
votes
3answers
1k views

How to avoid sending input fields which are hidden by display:none to a server?

Imagine you have a form where you switch visibility of several fields. And if the field is not displayed you don't want its value to be in request. How do you handle this situation?
4
votes
6answers
1k views

Overriding fields or properties in subclasses

I have an abstract base class and I want to declare a field or a property that will have a different value in each class that inherits from this parent class. I want to define it in the baseclass so ...

1 2 3 4 5 15