29
votes
12answers
2k 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 …
9
votes
4answers
3k views
In a django form, How to make a field readonly (or disabled) so that it cannot be edited?
In a django form, How to make a field readonly (or disabled) so that it cannot be edited?
When the form is being used for a new record entry, all fields are enabled, but when the record is in update …
8
votes
10answers
565 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?
8
votes
2answers
991 views
What is the best way to do Bit Field manipulation in Python?
I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, but is there a simple …
7
votes
9answers
559 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 …
6
votes
27answers
723 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
37answers
972 views
What field of software engineering do you work in? [closed]
I'm curious what fields StackOverflow users work in. I personally work in real-time embedded software -- specifically robotic controls.
What field of software engineering do you work in?
(If you …
5
votes
5answers
334 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
1answer
210 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
5answers
165 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 …
4
votes
7answers
2k 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 …
4
votes
2answers
2k 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 …
3
votes
4answers
96 views
C# - String within a string issue?
I am not sure what exactly the issue is here. I am working with 2 strings and I keeping getting the error "A field initializer cannot reference the non-static field, method, or property …
3
votes
3answers
88 views
How to avoid sending input fields which are hidden by display:none to a server?
Hi!
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?
3
votes
5answers
587 views
Storing SQL field names and general SQL usage with Delphi
I'm starting to write my first Delphi application that connects to an SQL database (MySQL) using the ADO database components. I wondered whether there was any best way of storing the names of the …
