Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
9answers
561 views

To foo bar, or not to foo bar: that is the question

This was something originally discussed during a presentation given by Charles Brian Quinn of the Big Nerd Ranch at acts_as_conference. He was discussing what he had learned from instructing a Ruby ...
12
votes
2answers
633 views

Underscore in Python

What is the meaning of _ after for in this code? if tbh.bag: n = 0 for _ in tbh.bag.atom_set(): n += 1
12
votes
4answers
446 views

Who are Alice and Bob?

Is it just me, or are the names Alice and Bob used often in connection to programming, emailing, encoding...? Where did these names come from? What is their relation to computers and programming?
10
votes
3answers
494 views

_ as variable name in Python

Peter Norvig has an essay describing a program to solve sudoku puzzles, even the hardest ones, by combining deterministic logical operations and smart traversal of the possible solutions. The latter ...
10
votes
29answers
826 views

When foo and bar is not enough

When you are using placeholder names when programming (not necessary variable names, but labels, mockup names, etc) and foo and bar is not enough, what do you use? I guess baz is rather common as ...
2
votes
3answers
287 views

What is the origin of foo and bar?

Where did they come from and when were they first used?
2
votes
3answers
86 views

Javascript getVariableName

This is my first post. I'm trying to do some basic meta-programming with javascript, and I was wondering if there is a way of get the id of a particular object and with that id, access to the ...
2
votes
4answers
119 views

Metasyntactic variables: do you use something else than “foo”, “bar” according to your mother tongue

In english, the variables foo and bar are very often used for simple examples, or for anonymous variables (see these three posts for more on these metasyntactic variables (1), (2), (3)) Usually, I ...
1
vote
1answer
196 views

cocoaasyncsocket sending data >128bytes (google protocol buffers)

I'm using cocoaasyncsocket to send data Google Protocol Buffers (using http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers) to a Java server. This is all fine BUT for messages (protoToSend) ...
-1
votes
1answer
25 views