2
votes
6answers
656 views
Emulated ARM assembler environment?
I would like my son to learn ARM assembler, and I'm considering buying him an embedded system that he can program so he can make LEDs flash and other cool stuff that I got a kick o …
20
votes
16answers
349 views
What is a programming language?
No, really.
I've struggled to come up with a really great definition. Here's my take till now:
A programming language is a formal language, containing syntax. Syntactical rule …
0
votes
5answers
99 views
How can I write a byte array to a file in Java?
How to write a byte array to a file in Java?
0
votes
3answers
44 views
Tips for optimizing sql commands worrying about legacy
The concern with the legacy of the SQL statements is a constant in my head. Especially when SCRUM is used, where the code has no owner, that is, all must be able to repair and main …
15
votes
34answers
826 views
What are your biggest programmer vices?
Possible Duplicate:
What are some bad programming habits to look out for and avoid?
As a programmer, I have bad programming habits I am aware of. I'm interested in what ot …
0
votes
1answer
24 views
reading excel cell contents as Java InputStream
this code reads contents of cell of excel file into a string
String theCell_00=rs.getCell(j,i).getContents();
is there any method using which the contents of excel cell are read …
13
votes
22answers
868 views
Code-Golf: What is the shortest program that compiles and crashes?
This is a little bit of fun. Can you device the shortest program which compiles but does nothing but immediately crash when executed? Wherefore by "crash" we mean that the program …
-6
votes
2answers
104 views
how do you program? [closed]
how do you?
thanks
1
vote
2answers
399 views
resize uitableviewcell to the label’s height dynamically ?
i want to resize cell's height according to the label's height and label's height according to text...?? or is there any way i can resize the cell's height according to the text en …
176
votes
230answers
11k views
What is the one programming skill you have always wanted to master but haven’t had time?
For me, I've always wanted to finish the O'Reilly "Mastering Regular Expressions" book. When I need a Regexp, I manage to get the one I need eventually, but it takes more effort th …
1
vote
4answers
81 views
Forcing sub classes to implement a method
Hi
I am creating an object structure and I want all sub classes of the base to be forced to implement a function.
The only ways I could think of doing it were:
An abstract clas …
-1
votes
0answers
52 views
What do you know about your code? [closed]
This is very open ended question. I like to know what a programmer knows about his/her code for a given project. A programmer has wealth of knowledge about the code they have wri …
3
votes
5answers
113 views
Suggest me a book with java programming problems
Please suggest me a Java book that contains challenging programming problems.
6
votes
9answers
992 views
Do sealed classes really offer performance Benefits?
I have come across a lot of optimization tips which say that you should mark your classes as sealed to get extra performance benefits.
I ran some tests to check the performance …
5
votes
24answers
642 views
Why aren’t more applications written in multiple languages?
Even 2 decades ago, it was possible to call code written in one language to call code written in another; in school we called assembly graphics routines from within Ada code for on …
