Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
257 views

Program hangs with no output

I've been poring over this program for ages, and have no idea why it doesn't work. I'm reasonably sure it's doing everything right but instead of actually working it just hangs indefinitely after ...
5
votes
3answers
235 views

stackoverflow's “page not found” polyglot: what languages is it in?

At present, when a user of the popular Q&A website http://stackoverflow.com with under 10k rep tries to view a deleted question, she sees the following image: (Note that the filename of this ...
4
votes
3answers
913 views

How to strip unicode “punctuation” from Python string

Here's the problem, I have a unicode string as input to a python sqlite query. The query failed ('like'). It turns out the string, 'FRANCE' doesn't have 6 characters, it has seven. And the seventh is ...
4
votes
2answers
97 views

Is there any language that allows spaces in its variable names [closed]

Is there (or was there ever) any non-trivial language that allows spaces in its variable names? I am aware of the language Whitespace, but I'm interested in a language that was actually used for ...
4
votes
3answers
258 views

Do you have suggestions for these assembly mnemonics?

Last semester in college, my teacher in the Computer Languages class taught us the esoteric language named Whitespace. In the interest of learning the language better with a very busy schedule ...
4
votes
15answers
1k views

Is there any practical use for an esoteric language?

Do you know any example of an esoteric language used to write any practical-use, real-world program? Is there any, however obscure, domain of computer science where an esoteric language has actually ...
2
votes
2answers
120 views

javascript >>> operator?

does anyone knows what does the >>> operator in javascript does?
2
votes
11answers
494 views

Add two numbers without using + and - operators

Suppose you have two numbers, both signed integers, and you want to sum them but can't use your language's conventional + and - operators. How would you do that? Based on ...
2
votes
1answer
325 views

Right clicking with a Webkit view

I'm working on a project in Ruby right now that is essentially a web-app. We like the format of web-apps and some of the natural agile advantages we have building for the web. However, we want to be ...
0
votes
3answers
75 views

Compile a file function, on Windows [closed]

I'm working at a compiler for LOLCode esoteric language and I have a question. Is there any function/command to compile a .cpp file in Windows? I did this on Unix, how can I do this on Windows? I ...
0
votes
2answers
52 views

Android: different layouts which have elements with the same exact IDs - works but why?

I was working on an app tonight and I noticed that I have two similar activities which have different layouts (mylayout1.xml and mylayout2.xml)... but within those layouts I have some elements that ...
0
votes
1answer
27 views

http://ff.im mapping? redirect?

Hi does anyone know how does friendfeed do their http://ff.im mapping? like if you go into the browser and type ff.im it goes to friendfeed.com and some of their links mapping examples: ...
0
votes
1answer
1k views

Javascript comma operator

When combining assignment with comma (something that you shouldn't do, probably), how does javascript determine which value is assigned? Consider these two snippets: function nl(x) { document.write(x ...