Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
132 views

Const-Qualification of Main's Parameters in C++

The C++ standard mandates that all conforming implementations support the following two signatures for main: int main(); int main(int, char*[]); In case of the latter signature, would the addition ...
7
votes
3answers
442 views

How to examine list of defined functions from Common Lisp REPL prompt

I'm a newbie to lisp. I'm evaluating/testing a browser based application presumably written in common lisp. Apart from the browser based interface, the software provides a 'Listener' window with a ...
2
votes
3answers
343 views

What other OCaml top level programs exist? (Vista)

I'm using OCamlWinPlus v1.9RC4. It sucks pretty hardcore. It's constantly crashing, and lacks basic features. What other toplevel OCaml programs can be recommended for Windows Vista?
1
vote
1answer
30 views

Unable to style top level Category in magento

On this page: http://www.dancetimepublications.com/index.php/our-dance-dvd-store/production-style/dance-in-film.html I am unable to style just the top level categories (Dance by Era, Dance Interests, ...
1
vote
0answers
100 views

Handling Top-Level Domains in Multi-Tenancy Web Applications

So i'm in the middle of defining the architecture for an application I've been waiting to start and have hit a bit of a bump. I 'm having a bit of a hard time figuring out how to handle multi-tenancy ...
1
vote
1answer
30 views

list of 2ld.1ld (2nd level domain.1st(top)level domain) names?

I am looking for a list of (doesnt matter if its not all, just needs to be big as its for generating dummy data) Im looking for a list like .net.nz .co.nz .edu.nz .govt.nz .com.au .govt.au .com .net ...
0
votes
0answers
5 views

Max length allowed for a top level domain

Which is the max length allowed for a top level domain? There are the typical .com, .net .it etc. but there are also .info or even .museum.
0
votes
1answer
27 views

Is it possible to have one (single) character top level domain name?

I'm writing a Regex to validate email. The only one thing confuse me is: Is it possible to have single character for top level domain name? (e.g.: lockevn.c) Background: I knew top level domain name ...
0
votes
1answer
102 views

Redirecting both third level and second level domains to directories on localhost

With the help of Acrylic DNS proxy a set up my localhost in a way that any address with toplevel domain "l" (example.l) is redirected to localhost. But I would like to open specific folder based on ...
0
votes
2answers
75 views

Determine how much Top-Level Containers are opened

which Method can returs, how can I find number of opened Top-Level Containers import java.awt.*; import java.awt.event.*; import javax.swing.*; public class SuperConstructor extends JFrame { ...
0
votes
1answer
142 views

Output in makefile at top-level

I am setting a variable in a makefile like this: SOMEVAR = foo This makefile later includes some other makefile in which the actual building of programs takes place: include ...