Tagged Questions
The nested tag has no wiki summary.
25
votes
10answers
13k views
Can regular expressions be used to match nested patterns?
Is it possible to write a regular expression that matches a nested pattern that occurs an unknown number of times. For example, can a regular expression match an opening and closing brace when there ...
23
votes
2answers
7k views
Rails nested form with has_many :through, how to edit attributes of join model?
How do you edit the attributes of a join model when using accepts_nested_attributes_for?
I have 3 models: Topics and Articles joined by Linkers
class Topic < ActiveRecord::Base
has_many ...
17
votes
6answers
1k views
javascript test for existence of nested object key
If I a reference to an object -
var test = {};
that will potentially (but not immediately) have nested objects, something like -
{ level1:{level2:{level3:'level3'}} };
what is the best way to ...
15
votes
1answer
2k views
Ruby accessing outer variables in nested function
I'm sure there's a simple answer for this; I just can't seem to find it. I made a nested function in Ruby, and I was having trouble accessing variables from the outer function inside the inner ...
14
votes
5answers
4k views
Nested git repositories?
Can I nest git repositories? I have:
/project_root/
/project_root/my_project
/project_root/third_party_git_repository_used_by_my_project
Does it make sense to git init/add the /project_root to ...
12
votes
5answers
181 views
r: for loop operation with nested indices runs super slow
I have an operation I'd like to run for each row of a data frame, changing one column. I'm an apply/ddply/sqldf man, but I'll use loops when they make sense, and I think this is one of those times. ...
12
votes
2answers
15k views
Passing around command line $args in powershell , from function to function
This is a nasty issue I am facing. Wont be surprised if it has a simple solution, just that its eluding me.
I have 2 batch files which I have to convert to powershell scripts.
file1.bat
---------
...
12
votes
6answers
5k views
accepts_nested_attributes_for child association validation failing
I'm using accepts_nested_attributes_for in one of my Rails models, and I want to save the children after creating the parent.
The form works perfectly, but the validation is failing. For simplicity's ...
12
votes
6answers
3k views
Why/when should you use nested classes in .net? Or shouldn't you?
In Kathleen Dollard's recent blog post, she presents an interesting reason to use nested classes in .net. However, she also mentions that FxCop doesn't like nested classes. I'm assuming that the ...
11
votes
2answers
151 views
Is there an overhead when nesting functions in Python?
In Python, if I have a child function within a parent function, is the child function "initialised" (created) every time the parent function is called? Is there any overhead associated with nesting a ...
11
votes
5answers
2k views
Nested Try/Catch
Is having a nested Try/Catch a signal that you're not coding cleanly? I wonder because in my catch I'm calling another method and if that fails I get another runtime error so I'm tempted to wrap ...
10
votes
2answers
361 views
Nested preferences.xml
Is it somehow possible to include one preferences.xml into another, like it can be done for layouts with the <include /> tag?
Let's say:
<?xml version="1.0" encoding="utf-8"?>
...
10
votes
5answers
2k views
Nested function in C
Can we have a nested function in C? What is the use of nested functions? If they exist in C does there implementation differes from compiler to compiler.
Are nested functions allowed in any other ...
9
votes
6answers
839 views
How best to handle styles for nested h1's in html5?
I'm currently working on some HTML5 themes for a few of my websites, and I keep running into problems with the way <h1>'s can be used multiple times. I can't seem to predict in what elements the ...
9
votes
5answers
9k views
C++ Nested classes driving me crazy
i am trying to compile this very simple piece of code
class myList
{
public:
std::vector<std::string> vec;
class Items
{
public:
void Add(std::string str)
{
...
8
votes
3answers
90 views
How to test for “immutability-at-any-depth” in Python?
I'm defining a Python object as being "immutable at any depth" iff
it is (nominally) immutable; and
if it is a "container" object, then it contains only objects that are "immutable at any depth";
...
8
votes
2answers
111 views
in python, how do i iterate a nested dict with a dynamic number of nests?
OK by dynamic I mean unknown at runtime.
here is a dict:
aDict[1]=[1,2,3]
aDict[2]=[7,8,9,10]
aDict[n]=[x,y]
I don't know how many n will be but I want to loop as follows:
for l1 in aDict[1]:
...
8
votes
3answers
359 views
Which order of nested layouts is most efficient in Android
I don't think I have really ever nested more than about three levels worth of Layouts (RelativeLayout, LinearLayout, FrameLayout) in Android. I am not thinking about list items which also use a custom ...
8
votes
1answer
2k views
Updating nested arrays in mongodb
I have a document in mongodb with 2 level deep nested array of objects that I need to update, something like this:
{
id: 1,
items: [
{
id: 2,
blocks: [
...
8
votes
4answers
295 views
RESTfully Nesting Resource Routes with Single Identifiers
In my Rails app I have a fairly standard has_many relationship between two entities. A Foo has zero or more Bars; a Bar belongs to exactly one Foo. Both Foo and Bar are identified by a single integer ...
8
votes
3answers
2k views
Styling nested elements in WPF
Suppose you have a nested element structure, for example a ContextMenu with MenuItems:
<ContextMenu Style="{StaticResource FooMenuStyle}">
<MenuItem Style="{StaticResource ...
8
votes
7answers
6k views
Dealing with nested if then else/nested switch statements
Are there any design patterns/methods/ways to remove nested if then else conditions/switch statements?
I remember coming across some methods used by the Google folks listed in a Google code blog ...
8
votes
7answers
773 views
Need refactoring ideas for Arrow Anti-Pattern
I have inherited a monster.
It is masquerading as a .NET 1.1 application processes text files that conform to Healthcare Claim Payment (ANSI 835) standards, but it's a monster. The information being ...
7
votes
1answer
164 views
Python - Iteration over nested lists
I'm stuck on a small but tricky problem since yesterday.
What I have is a (possibly infinitely) nested list like this:
[1,[2,[3,4]]]
or [[1,2],[3,4]] and so on.
On each level the lists consist of ...
7
votes
1answer
133 views
Can you help me with a symbol-state table and nested switch? Exercise from Illustrating C- Donald Alcock
OK, first thank you for taking the time to read my post!! (^o^)/
And before I put the whole problem a little of context:
I am learning by myself 'C' and found the book "Illustrating C" which I´m ...
7
votes
4answers
2k views
Nested IF statements in Excel [Over the 7 allowed limit]
I am trying to create a spreadsheet which automagically gives a grade to a student based on their marks they got.
I've apparently hit Excel's nested IF statement limit which is 7.
Here's my if ...
7
votes
2answers
1k views
Ruby on Rails: Nested named scopes
Is there any way to nest named scopes inside of each other from different models?
Example:
class Company
has_many :employees
named_scope :with_employees, :include => :employees
end
class ...
7
votes
4answers
631 views
How to handle nested datacontext in the BL?
public class TestBL
{
public static void AddFolder(string folderName)
{
using (var ts = new TransactionScope())
{
using (var dc = new TestDataContext())
...
7
votes
3answers
4k views
How do I do nested transactions in NHibernate?
Can I do nested transactions in NHibernate, and how do I implement them? I'm using SQL Server 2008, so support is definitely in the DBMS.
I find that if I try something like this:
using (var outerTX ...
7
votes
5answers
323 views
assigning ViewData to nested masterpages
Is there a good way to assign ViewData to nested master pages? For example, in my top level masterpage I might have info on the logged in user. I also have a nested masterpage that is displayed when ...
6
votes
1answer
168 views
C++ Nested Template Class Method Issue
I'm having a problem with the method declaration for a nested class template.
I have something like this:
template <typename T>
class HashTrie
{
template <typename Y>
class Entry
...
6
votes
9answers
177 views
Dependent variables in C++?
I tried asking before but I wasn't very clear so I'm re-asking it.
I want to have a variable that depends on the value of another variable, like b in this example:
int main(){
int a;
...
6
votes
1answer
254 views
Understanding nested yield / return in python
I have a function in python whose output is a generator :
def main_function(x):
r = get_range()
for i in range(r):
yield x+i
I want to refactor the code (I've simplified the use ...
6
votes
1answer
501 views
How to implement a nested comment system?
What would be the ideal way to implement this sort of thing? The idea I have in my head right now is to have a comments table and have each comment have a thread identifier and parent comment ...
6
votes
2answers
199 views
How do you initialize a static templated container?
I'm trying to figure out the correct way of initializing a static container variable whose template value is a private inner class. Here's a toy example
#include <vector>
using namespace ...
6
votes
4answers
276 views
Add elements in a list of dictionaries
I have a very long list of dictionaries with string indices and integer values. Many of the keys are the same across the dictionaries, though not all. I want to generate one dictionary in which the ...
6
votes
3answers
2k views
android nested listview
is it possible/advisable to have a nested listview?
i.e. a listView that's contained within a row of another listview?
an example would be where my main list is displaying blog posts, and then in ...
6
votes
4answers
1k views
Python: Indexing list for element in nested list
I know what I'm looking for. I want python to tell me which list it's in.
Here's some pseudocode:
item = "a"
nested_list = [["a", "b"], ["c", "d"]]
list.index(item) #obviously this doesn't work
...
6
votes
1answer
352 views
DefaultModelBinder Problem with nested levels + other binders
I have what I would think is a somewhat normal situation where I need to bind form posts to an "order" model. This model has a few levels of information to it:
Order.Billing.FirstName
...
6
votes
6answers
613 views
How to reduce the number of if-else statements in PHP?
I found that there are many if-else statements, especially nested if else statements, these statements make my code less readable. How to reduce the number of if else statements in PHP?
My tips are ...
6
votes
3answers
2k views
Rails: How to modify tests for a nested resource?
While learning Rails I've created an application with a Domains controller nested below a Customers controller. I'm using Rails 2.3.4 and it's been a learning experience. I managed to get the below ...
6
votes
6answers
4k views
In Java, how do I access the outer class when I'm not in the inner class?
If I have an instance of an inner class, how can I access the outer class from code that is not in the inner class? I know that within the inner class, I can use Outer.this to get the outer class, ...
6
votes
5answers
1k views
Clojure Structure Nested Within Another Structure
Is it possible to have a structure nested within a structure in Clojure? Consider the following code:
(defstruct rect :height :width)
(defstruct color-rect :color (struct rect))
(defn
#^{:doc ...
6
votes
9answers
3k views
Replacing Nested if statements
This is related to a chapter from beautiful code.
And in that chapter I read about the nested ifs.
The author was talking about deeply nested ifs as orginator of bugs and less readable.
And he was ...
6
votes
4answers
12k views
C++ Nested classes forward declaration error
I am trying to declare and use a class B inside of a class A
and define B outside A.
I know for a fact that this is possible because Bjarne Stroustrup
uses this in his book "The C++ programming ...
5
votes
3answers
84 views
regex, php, and the evil nested (?R)
UPDATE
So I am still messing with this, and have gotten as far as finding all the instances of tags, though I'd rather JUST find the deepest stacked instance, as life would be easier that way.. ...
5
votes
1answer
96 views
Common Lisp: Appending a nested plist efficiently
I am using a nested plist in order to create a structure of objects (CLOS type), passing on the nested ones to its parts. I want to append the nested plist in an iterative way, but therefore I want to ...
5
votes
1answer
121 views
How to parallelize correctly a nested for loops
I'm working with OpenMP to parallelize a scalar nested for loop:
double P[N][N];
double x=0.0,y=0.0;
for (int i=0; i<N; i++)
{
for (int j=0; j<N; j++)
{
...
5
votes
3answers
145 views
Access to parent's private properties through nested types in C#
Nested types in C# have the ability to access the parent's private properties. Is there a specific reason for having this language feature ? In my opinion this breaks encapsulation. If I make the ...
5
votes
3answers
111 views
Help me understand this particular use of nested SELECT statements
From this site:
Tables:
CREATE TABLE PilotSkills
(pilot_name CHAR(15) NOT NULL,
plane_name CHAR(15) NOT NULL,
PRIMARY KEY (pilot_name, plane_name));
CREATE TABLE Hangar
(plane_name CHAR(15) NOT ...