Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
11answers
18k views

How do you overcome the html form nesting limitation

I know that xhtml doesn't support nested form tags and I have already read other answers here in stackoverflow regarding this subject, but I still haven't figured out an elegant solution to the ...
16
votes
2answers
235 views

Why is it forbidden to open multiple namespaces at a stretch?

It's possible to do using namespace foo::bar; (i.e., using the inner namespace without using the outer namespace first / at all), why does the standard forbid to do the following? namespace foo::bar ...
12
votes
4answers
65k views

Best way to do nested case statement logic in SQL Server

I'm currently writing an SQL Query, where a few of the columns returned need to be calculated depending on quite a lot of conditions. I'm currently using nested case statements, but its getting ...
11
votes
3answers
4k views

Margin on child element moves parent element

I have a div (parent) that contains another div (child). Parent is the first element in body with no particular CSS style. When I set .child { margin-top: 10px; } The end result is that top of ...
11
votes
14answers
719 views

Which is better coding style?

During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I think my code is more ...
11
votes
3answers
8k views

CSS: position:fixed inside of position: fixed

Okay, I've noticed something, but couldn't find it in the CSS spec. Styling an element with position: fixed will position it absolutely, with respect to the browser viewport. What happens if you place ...
10
votes
3answers
626 views

To Nest or Not to Nest?

Premise: Usually during preparation of a new Ruby on Rails App, I draw out models and relations regarding user navigations. Usually I hit a place where I need to ask myself, whether or not I should go ...
9
votes
3answers
443 views

A magic number 127 in my C book [closed]

Possible Duplicate: What limits the number of nested loops in c? Hello. When I read my C book, it says Nesting for-Loop in C can continue even further up to 127 levels! How does 127 ...
7
votes
9answers
206 views

Style of if: to nest or not to nest

A colleague of mine and me had a discussion about the following best-practice issue. Most functions/methods start with some parameter checking. I advocate the following style, which avoids nesting. ...
6
votes
9answers
382 views

When would you want to nest classes in C#?

Specifically, can anyone give me concrete examples of when or when not to use nested classes? I've known about this feature since forever, but never had a reason to use it. Thanks.
6
votes
1answer
492 views

When to include sub-items in RESTful resource representation?

RESTful design seems to advocate flat or shallow structured representations (at least when resources are represented as XML). A resource representation should contain just the resource, which the URI ...
5
votes
3answers
105 views

Enum within an enum

This isn't a matter of me being stuck, but rather I'm looking for a tidy way to write my code. Essentially, I'm writing an event driven application. The user triggers an event, the event gets sent to ...
5
votes
4answers
7k views

Css Style Nesting - Proper Form?

I am having a problem trying to find any specific details on how to properly write css rules in a stylesheet where the class or id is nested within many other ids and styles. ie) .mainbody #container ...
5
votes
3answers
503 views

Scheme Macro for nesting expressions

Can a macro be written in Scheme (with define-syntax, for example) which will take expressions like this: (op a b c d e f g h i j) And yield expressions like this as output? (op (op (op (op (op ...
5
votes
3answers
2k views

Preferred way to include relative reference to JavaScript in VS 2008 nested Masterpage

Our base Masterpage has something like the following <head runat="server"> <title></title> <script type="text/javascript" src="<%= ...
4
votes
7answers
187 views

<strong><a> or <a><strong>?

Which is the best practice when nesting inline and anchor tags? <strong><a href="">link</a></strong> or <a href=""><strong>link</strong></a> ...
4
votes
3answers
84 views

Ensure required install actions for a dll are executed without duplicating code

I have a c# solution with two regular projects and a setup project. One of the regular projects is an executable, while the other is a dll, that I also use in other solutions. The dll project relies ...
4
votes
1answer
122 views

Module.nesting within instance_eval/exec or module_eval/exec

I came up with this question when I was trying to answer this. The following is an expected behaviour: module A p Module.nesting end # => [A] But the following: A.instance_eval{p ...
4
votes
2answers
268 views

Nesting PHP-functions: to what purpose?

Why would PHP allow nesting functions? <?php function foo() { function bar() { return "bar"; } return "foo"; } print foo(); print bar(); .. is valid PHP. But: Why would ...
4
votes
2answers
300 views

Does nesting affect efficiency?

Consider languages like Python or JavaScript that allow functions to be nested like this: print(vector(a * b),(a * c),(b * c))) or flat like this: i = (a * b) j = (a * c) k = (b * c) V = ...
3
votes
1answer
119 views

google guava nesting joiner

The Joiner in Google Guava (a superset of Google collection) is really cool. My question is that is there a simple way to deal with nesting collections? For example, I have a matrix, which is a list ...
3
votes
4answers
331 views

Too much nesting in ruby?

Surely there must be a better way of doing this: File.open('Data/Networks/to_process.txt', 'w') do |out| Dir['Data/Networks/*'].each do |f| if File.directory?(f) ...
3
votes
1answer
237 views

N2 CMS: Are nested collections of ContentItems possible?

Can an arbitrary number of ContentItems of the same class to be added to a page in N2? And can they be nested? I.e. Is there a way to define a collection of ContentItems as a property in N2? I’d also ...
3
votes
3answers
184 views

Python: how to create a hash of nested containers

[Python 3.1] I am trying to create a hash for a container that may have nested containers in it, with unknown depth. At all levels of the hierarchy, there are only built-in types. What's a good way ...
3
votes
2answers
299 views

Don't understand JspTagException: "Illegal use of <when>-style tag without <choose> as its direct parent

I've been staring at the tag nesting below for about an hour now and I still can't figure out why I keep getting a JspTagException: "Illegal use of <when>-style tag without <choose> as ...
3
votes
1answer
279 views

Restrict the depth of nested elements in XSD

Is it possible with XML schema to restrict the depth of child elements nested in a parent? The context here is I collect alarms from a management system and I want to provide a XML document which ...
3
votes
1answer
641 views

Best Practice Mongoid:NestedResources

I'm starting off with a small Rails3:MongoDB:Mongoid project and came along some questions that's nature is more architectural. When to use nested resources, and how deep to nest? I'm not a friend ...
3
votes
3answers
331 views

Nesting maximum amount of shapes on a surface

In industry, there is often a problem where you need to calculate the most efficient use of material, be it fabric, wood, metal etc. So the starting point is X amount of shapes of given dimensions, ...
3
votes
2answers
101 views

Problem with nesting in Text.XHtml library with Haskell

I have the following code to generate a blank html page with a series of divs with id's and classes in Haskell using the Text.XHtml.Strict library: module Main where import Text.XHtml.Strict import ...
3
votes
1answer
381 views

Binding multiple related variables in Clojure without nested let

I want to use the value of a variable to compute the value of another variable in the same let statement. Is there a way to do this in Clojure without using nested lets? Nested let solution: (let [x ...
2
votes
5answers
35 views

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div ...
2
votes
2answers
35 views

Scope problems with nested java loops

I'm learning processing (for those who don't know its a java-based language geared towards visual arts), and I've come across a strange problem with nested for loops. This is a simple program that ...
2
votes
1answer
36 views

Javascript Templates - Deep nesting is it possible

I am constructing a task app ( For fun) & i just sat down thinking about this problem. I will put the question on my mind in words here. Model is extremely simple, it contains collection of ...
2
votes
1answer
49 views

CakePHP nesting select query

I have 3 db tables: books(id, title, author,...) and orders(id, book_id, user_id,...) and users(id, name, username,...) and I would like to get the titles of the books ordered by given user. I ...
2
votes
3answers
73 views

Converting a hash into a nested hash

Given a hash that has an array for each key like { [:a, :b, :c] => 1, [:a, :b, :d] => 2, [:a, :e] => 3, [:f] => 4, } what is the best way to convert it into a nested ...
2
votes
4answers
155 views

IOS/iPhone: Nested Localizable.strings Files?

I'm creating an app that will have a number of variants. These variants will be controlled by a few strings in multiple Localizable.strings files. However, 90% of the strings will remain the same. ...
2
votes
3answers
65 views

Singleton reference and recursion in PHP

I have a main bootstrap class (singleton1 in the example bellow) that instantiates some singleton classes. In those singleton classes, I need to keep a reference to the app main class for easy and ...
2
votes
1answer
58 views

Css class nesting and grouping

What is the difference between #id .A.B x { } #id .A .B y { } in CSS file? Both A and B are classes. x and y are some tags Does the spacing between .A and .B have any significance?
2
votes
3answers
36 views

css nesting problem

I want the links inside of the second, nested div to have red text. Dulled down CSS: #outerdiv{ padding:10px; background-color: #ddd;} #outerdiv a:link{ color:blue; } .innerdiv{ padding:10px; ...
2
votes
2answers
106 views

Putting a switch inside of do…while

So I have a do... while statement that is supposed to repeat unless the user enters one of four things. Those four things have a break and they set the variable that controls the while to true, where ...
2
votes
1answer
245 views

Nested django templates

This seems like a pretty basic thing to do but although I've been using Django for around a year, I've never run into this scenario yet. In a lot of templating/web frameworks, template inheritance ...
2
votes
2answers
138 views

Move an xml element into another element with xslt

I have an XML that looks like this <executionPlan name="Test" > <paramList> <param name="param1" default=""/> </paramList> <varList> <var name="bla" ...
2
votes
2answers
351 views

LESS css nesting classes

I'm using LESS to improve my css and am trying to nest a class within a class. There's a fairly complicated hierarchy but for some reason my nesting doesn't work. I have this: .g { float: left; ...
2
votes
6answers
270 views

Nesting <article> and <h1> tags?

Question: Which of these is the proper way to nest the <h1> and <article> tags, and what is your reasoning behind it? Choice A: <article> <h1>Some Title</h1> ...
2
votes
1answer
852 views

SQL “For XML Path” - nested results

I have this table structure. YearPart, MonthPart and DatePart contain what they describe... EX: 2011, 1, 19 (respectively) DECLARE @agenda AS TABLE ( PID INT IDENTITY(1,1) PRIMARY KEY, ...
2
votes
2answers
250 views

Visual Basic - Using Nested Mutex's in a threaded application - Risks and Suggestions

Good evening fellow stackers, I have a mutex and threaded related question about // ¦ = Run one or the other per call to routine |GROUP A| GROUP B | | A & B GROUP MUTEX | ...
2
votes
1answer
206 views

Multi-nested, multi-block mixins in lessphp

While transforming some code to lessphp from the classic less code; an incompatibility I discovered from the classic less css is that there is no support for multi-block mixins with nesting levels > ...
2
votes
1answer
575 views

Maximum stored procedure, function, trigger, or view nesting level exceeded in Visual Studio (ado.net) but not in SQL server

I have a problem with a recursive SQL function. The original problem is that I've got a list of employees, each of them has various trainings. Each of these trainings has some pre requirements. For ...
2
votes
2answers
238 views

T-SQL Nested Subquery

Not being a SQL expert, and also only being semi-competent in CTE, how can I code this statement use the resultset from the following subquery within the main query, as our SQL Server is 2000. ...
2
votes
3answers
3k views

Struts 2 nesting iterators

I can't believe how something this simple can seem so hard to do in Struts 2. This is approximately what I would like to do as it would be done in Java. for (Parent parent : parents){ for (Child ...

1 2 3 4