Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
8answers
2k views

Why are many ports of languages to .net prefixed with 'Iron'?

Was discussing over lunch why several ports of languages to the .net framework are prefixed with 'Iron'. e.g. IronPython IronRuby IronLisp IronScheme IronPHP Anyone out there know? (language ...
22
votes
11answers
4k views

MySql: MyISAM vs. Inno DB!

What are the differences between MyISAM and Inno DB types in MySql?
8
votes
1answer
138 views

.NET: What is the object header used for?

In .NET there are 8 bytes of overhead for each object. 4 bytes are a pointer to the object's type. What are the other 4 bytes, known as the object header, used for?
8
votes
6answers
3k views

Why does COBOL have both `SECTION` and `PARAGRAPH`?

Why does COBOL have both SECTION and PARAGRAPH? Can anybody explain why the designers of COBOL created both SECTIONs and PARAGRAPHs? These have been around since the initial release of COBOL so I ...
6
votes
5answers
731 views

Why is the default terminal width 80 characters?

80 seems to be the default in many different environments and I'm looking for a technical or historical reason. It is common knowledge that lines of code shouldn't exceed 80 characters, but I'm hard ...
6
votes
4answers
198 views

Why does python -V write to the error stream?

I was writing a script to inspect python's version on my system and I've noticed that python -V writes to the error stream, while python -h, for instance, uses the standard output. Is there a good ...
6
votes
10answers
3k views

Stacks - why PUSH and POP?

I was wondering why we use the terms "push" and "pop" for adding/removing items from stacks? Is there some physical metaphor that caused those terms to be common? The only suggestion I have is ...
5
votes
3answers
141 views

Is there an HTML tag that can be used anywhere in the DOM?

This sounds a bit like a trivia question, but it would help me figure out my options solving an actual problem. Is there an HTML tag that can be used anywhere in the DOM? (something to be used as a ...
5
votes
8answers
477 views

Is “else if” one whole or two separate keywords in Java?

I happen to read the practicing material for SCJP certification, and I just tripped over a chapter of flow control et al, where they give the impression that "else if" is a keyword on its own. I have ...
4
votes
2answers
193 views

Why does the Scala library only defines tuples up to Tuple22?

I'm curious if anyone knows why the Scala library stops at 22 with its tuple types (Tuple22) ? Does the mysterious number '22' have a special hidden meaning? Is this an internal joke of some kind? ...
4
votes
3answers
223 views

Maximum number of fields for a C++ object

This answer states that in Java the maximum number of fields an object may have is 65536. Is there any such limit imposed on an object in C++?
2
votes
6answers
428 views

Hello World In C# without semicolon

Is it possible to write Hello World like in C without semicolon;? In C: if(printf("Hello World!")) //prints Hello World { } In C#: //do stuff
2
votes
1answer
62 views

PowerShell extension and profile folder

Wikipedia says that PowerShell 2.0 was distributed with Windows 7; so as I use Windows 7, I'm obviously using that version. But that raises two questions: Why is PowerShell's folder ...
2
votes
5answers
212 views

What was the first Hello World Application written in? [closed]

Possible Duplicate: Where does ‘Hello world’ come from? What was the first Hello World application written in?
1
vote
2answers
82 views

Debugging Trivia game in Python

Creating function to print question, add choices to a list. def print_et_list (): answer_list = [] function = open ("modStory.txt","r") #Question question = function.readline() ...
1
vote
4answers
131 views

.net AppSettings historical trivia

One of the previous developers where I work habitually, consistently used: ConfigurationSettings.AppSettings["Foo"].ToString() It twigs me a bit since AppSettings collection items are already ...
1
vote
5answers
168 views

What are the valid values of the expression (uninitialized_bool ? 1 : 2)?

What is the set of valid outputs for the following, according to the standard? bool x; cout << (x ? 1 : 2); edit: unknown(google) has got it. In gcc my code was crashing because of ...
0
votes
2answers
40 views

Creating a Ruby on Rails application initialization trivia

I am preparing a trivia for my teammates, to have some fun and refresh knowledge about Rails application initialization process :) I need to plant a "pig" somewhere, along the way in a Rails ...
0
votes
1answer
117 views

What programming language would James Bond have programmed in? [closed]

Until the recent Bond movies James preferred British made gadgets. The classic for me is from "You Only Live Twice", as there is real British gyro-copter nicknamed Little Nellie which (in the movie) ...
0
votes
3answers
293 views

Detect ASP.NET version from output HTML?

Ok, this is probably a trivial thing to know - hence the trivia tag! - but does anyone know of any difference in final output that would give away the version of the runtime that was used? In other ...
0
votes
12answers
1k views

Which is your favorite programming trivia? [closed]

... and that has helped a lot to remember some programming concept.