Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

146
votes
21answers
20k views

Prefer composition over inheritance?

Why prefer composition over inheritance? What trade-offs are there for each approach? When should you choose inheritance over composition?
22
votes
13answers
8k views

How legal is screen scraping?

I'm trying to build an iPhone application that gathers content from real estate websites to display it in a mashed-up and structured manner (mapping, price averages...etc) I've stumbled upon many ...
17
votes
6answers
1k views

How to aggregate analytics from Google, Twitter, YouTube, Facebook, etc

I have a video blog for which I would like to track certain statistics, including stats from Google Analytics, Twitter, YouTube, Facebook, etc. The problem is that the various stats are on different ...
11
votes
3answers
268 views

Complex time-series statistical aggregation involving polymorphic associations

Ok. Bear with me, as I need to provide a lot of contextual detail before I can solicit a reasonable answer to my question. I have a site that allows you to make daily stock picks. The way it works ...
9
votes
6answers
453 views

Aggregate bitwise-OR in a subquery

Given the following table: CREATE TABLE BitValues ( n int ) Is it possible to compute the bitwise-OR of n for all rows within a subquery? For example, if BitValues contains these 4 rows: +---+ | ...
7
votes
2answers
108 views

Timeline Action Layout - No Attachment displayed

I am trying to post a Action to the Facebook Timeline using the JS API FB.api('/me/application:action_type' + '?opject_type='+document.location.href,'post', function(response) { if ...
7
votes
1answer
708 views

Maven: Aggregation vs. Dependency

I'm very new to Maven and am just now trying to set up my first project tree. I'm struggling to understand the difference between two alternatives: I have jar and war projects (two each) that i want ...
7
votes
2answers
6k views

SQL Server PIVOT - Multiple Aggregates

Given the following result set: --------------------------------------------------------- CustomerID  Service  TransType  SubTotal   Tax   NetTotal ...
7
votes
4answers
386 views

Best way to prevent fraud in marketplace app?

I'm developing a marketplace website where tutors and students can find each other. I'm building an online payment system (much like elance or guru.com) where the tutor can get paid and we take a ...
6
votes
4answers
126 views

Elegant way of implementing call multiplexing in a C++ aggregate class?

When multiplexing calls to many sub-objects, what is an elegant way of preventing looping-boilerplate code? Problem description by example: struct Foo { void Boo(); void Hoo(); bool ...
6
votes
3answers
1k views

Custom aggregate function (concat) in SQL Server

Question: I want to write a custom aggregate function that concatenates string on group by. So that I can do a SELECT SUM(FIELD1) as f1, MYCONCAT(FIELD2) as f2 FROM TABLE_XY GROUP BY FIELD1, ...
6
votes
5answers
448 views

Are there any existing batch log file aggregation solutions?

I wish to export from multiple nodes log files (in my case apache access and error logs) and aggregate that data in batch, as a scheduled job. I have seen multiple solutions that work with streaming ...
6
votes
11answers
3k views

Application log aggregation, management and notifications

I'm wondering what everyone is using for logging, log management and log aggregation on their systems. I am working in a company which uses .NET for all it's applications and all systems are Windows ...
5
votes
3answers
237 views

Mend reshape-based habits with plyr: melt/cast vs. ddply

I'm kind-of used to do melt and cast all the time, and this time I'm looking for neat one-liner. require(reshape) # first I melt some data: m <- melt(mtcars, id.vars = c("cyl", "am"), measure.vars ...
5
votes
4answers
2k views

Data aggregation mongodb vs mysql

I am currently researching on a backend to use for a project with demanding data aggregation requirements. The main project requirements are the following. Store millions of records for each user. ...
5
votes
3answers
270 views

To aggregate or not to aggregate, that is the database schema design question

If you're doing min/max/avg queries, do you prefer to use aggregation tables or simply query across a range of rows in the raw table? This is obviously a very open-ended question and there's no one ...
5
votes
3answers
12k views

distinguishing between delegation, composition and aggregation (java OO design)

I am facing a continuing problem distinguishing delegation, composition and aggregation from each other, and identifying the cases where its best to use one over the other. I have consulted an java ...
4
votes
4answers
181 views

SQL - Query Multiple Aggregations based on DateTime - MySQL

This is a complex one. But I have a table which has a DATETIME field, and a few other int and float fields which need to be summed and averaged. We want to do the summing and averaging on this table ...
4
votes
1answer
85 views

Complex grouping - design / performance problem

WARNING : This is one BIG Question I have a design problem that started simple, but in one step of growth has stumped me completely. The simple version of reality has a nice flat fact table... All ...
4
votes
1answer
87 views

Is there a better way to identify time interval boundaries of a series pattern?

I have a table of payments, with positive and negative values (i.e., captures and credits). I need to identify the points where we've received a net positive amount, since the last net positive ...
4
votes
2answers
995 views

How to count in coredata (aggregation)?

I am learning core data and particularly working on aggregation. Current what I want to do : count the number of records from the table which is in to-many relationship with inverse relationship on ...
4
votes
2answers
537 views

How do you get average of sums in SQL (multi-level aggregation)?

I have a simplified table xx as follows: rdate date rtime time rid integer rsub integer rval integer primary key on (rdate,rtime,rid,rsub) and I want to get the average (across all times) ...
4
votes
1answer
236 views

Managed COM aggregation

It is my understanding building a COM object aggregating an existing COM object implies implementing redirection logic in the IUnknown.QueryInterface method of the outer object. The question I have ...
4
votes
3answers
674 views

UML Notation - Aggregations/Compositions vs “Vanilla” Associations

I've recently spent a good deal of time performing detailed UML designs of various SW components that I have since written. Looking back on what I have recently finished and comparing that to when I ...
3
votes
2answers
228 views

How to use Private Inheritence aka C++ in C# and Why not it is present in C#

I know that private inheritance is supported in C++ and only public inheritance is supported in C#. I also came across an article which says that private inheritance usually defines a HAS-A ...
3
votes
1answer
107 views

Django aggregation does excessive GROUP BY clauses

I am doing a very simple aggregation using the Django ORM on MySQL, and it is producing a GROUP BY clause that includes the data field, which is very large, and is slowing down the query by over ...
3
votes
2answers
62 views

Git diff on topic branch, excluding merge commits that happened in the meantime?

Let's say I have the following situation: B---D---F---G topic / / --A---C---E master For code review purposes, I would like to pull out a diff from commit A to commit G, but not ...
3
votes
1answer
71 views

What is generic name of this technique CouchDB uses to index aggregated data

CouchDB employs a cool pattern that can be used in a multitude of other scenarios. I'm talking about the persisted B-tree index of map/reduce results. The idea is to precalculate the aggregated data ...
3
votes
1answer
396 views

How do I aggregate results from an Adjacency list using PHP's SPL

I've tried using nested sets, and they become very difficult to maintain when dealing with multiple trees and lots of other complications.. I'd like to give PHP's SPL library a stab at this (btw, we ...
3
votes
1answer
143 views

Summarizing two conditions on the same SQL table

Given a SQL table Transactions ID INT COMPANY_ID INT STATUS INT where STATUS IN (0,1) indicates a free transaction and STATUS IN (2,3) indicates a billable transaction, ...
3
votes
2answers
409 views

Understanding UML of DoFactory Design Pattern - Decorator

I am trying to understand UML diagram describing Decorator Pattern at link below http://www.dofactory.com/Patterns/PatternDecorator.aspx I don't understand why there is a "Aggregation" relation ...
3
votes
1answer
495 views

Aggregates and Repository. How to determine aggregates?

I have recently been looking at the Repository Pattern as a way of brushing all the details of persistence under the carpet where the client code is concerned. While reading around it appears that a ...
3
votes
5answers
7k views

Is there an Oracle SQL query that aggregates multiple rows into one row?

I have a table that looks like this: A 1 A 2 B 1 B 2 And I want to produce a result set that looks like this: A 1 2 B 1 2 Is there a SQL statement that will do this? I am using Oracle. ...
3
votes
2answers
489 views

Django models: how to return a default value in case of a non-existing foreign-key relationship?

I am developing a vocabulary training program with Django (German-Swedish). The app's vocabulary data consists of a large number of "vocabulary cards", each of which contains one or more German ...
3
votes
5answers
1k views

How is an aggregator built?

Let's say I want to aggregate information related to a specific niche from many sources (could be travel, technology, or whatever). How would I do that? Have a spider/crawler who will crawl the web ...
2
votes
3answers
73 views

Column aggregation in linux

I have huge text file of such format: aaa bbb 1 aaa ccc 2 aaa ddd 3 bbb ww 1 bbb kio 3 I want to aggregate it and the result should be: aaa bbb 1/6 aaa ccc 2/6 ...
2
votes
2answers
78 views

SQL select whole table but unique value in a specific column

Please help me with an issue that I have come across during work. I'm working with SQL Server, and I'm aware that using cursors I could achieve this, but I'm pretty sure that there is a way of doing ...
2
votes
1answer
113 views

Discovering a valid aggregation from two collections, one of which is an aggregation of the other

Suppose I have two types: case class X(i: Int) case class Y(j: Int) And the Xs represent some aggregation of Ys (but I have lost the information as to exactly which Ys composed a given X). I wish ...
2
votes
2answers
37 views

Get documents with tags in list, ordered by total number of matches

Given the following MongoDB collection of documents : { title : 'shirt one' tags : [ 'shirt', 'cotton', 't-shirt', 'black' ] }, { title : 'shirt two' tags : [ 'shirt', 'white', ...
2
votes
2answers
40 views

Counting the number of rows with a value greater than or equal to a value from another column in SQL

I have a table with two columns: a couple id and a number of "marks" for that couple. I'd like a result which lists the number of couples which have x marks or more for each of the values of x. So my ...
2
votes
5answers
85 views

Passing this to a constructor

In most of my java applications, I have a Controller (Logic) class and a GUI class. I usually need the Logic class to call methods on the GUI class, and vice versa. Now, when the Logic constructs the ...
2
votes
4answers
52 views

Optimization of multiple aggregations in SELECT

I read in a Microsoft T-SQL Performance Tuning whitepaper that correlated sub-queries can be costly in terms of performance on a large table: ...Compare this to the first solution that would ...
2
votes
1answer
62 views

MySQL aggregation function to sum the differences from row to row

i've got this lil' mysql table: +----+-------+ | id | value | +----+-------+ | 1 | 1240 | | 2 | 1022 | | 3 | 802 | | .. | .. | +------+-----+ i'm searching for a sql-query summing up the ...
2
votes
2answers
101 views

How do I take subsets of a data frame according to a grouping in R? (tricky aggregation problem)

I have an aggregation problem which I cannot figure out how to perform efficiently in R. Say I have the following data: group1 <- c("a","b","a","a","b","c","c","c","c", ...
2
votes
3answers
171 views

ASP.NET MVC 3 - Web Application - Efficiently Aggregate Data

I am running an ASP.NET MVC 3 web application and would like to gather statistics such as: How often is a specific product viewed Which search phrases typically return specific products in their ...
2
votes
1answer
133 views

Django - How to annotate QuerySet using multiple field values?

I have a model called "Story" that has two integer fields called "views" and "votes". When I retrieve all the Story objects I would like to annotate the returned QuerySet with a "ranking" field that ...
2
votes
3answers
61 views

Does storing aggregated data go against database normalization?

On sites like SO, I'm sure it's absolutely necessary to store as much aggregated data as possible to avoid performing all those complex queries/calculations on every page load. For instance, storing a ...
2
votes
1answer
396 views

Add RawContact so it aggregates to an existing contact

I am trying to add a new RawContact to an existing Contact so my custom data field shows up inside the original Contact. I tried Adding a StructuredName Data row to my new RawContact with a ...
2
votes
1answer
62 views

Best Practice for Skipping Duplicate Entries in MySQL

I have written a feed aggregator before but am trying to optimize it a bit. In the past, using simplepie (php class) to parse the feeds, I have used the get_id() function for each feed item to return ...
2
votes
1answer
77 views

sql server aggregate float values

HI I am getting different results while aggregating float values . The query is given below declare @cy datetime set @d = '12/01/2010' select SUM(total) from ( select sum(amt1) as total from table1 ...

1 2 3 4 5