Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
9k views

See if user is part of Active Directory group in C# + Asp.net

I need a way to see if a user is part of an active directory group from my .Net 3.5 asp.net c# application. I am using the standard ldap authentication example off of msdn but I don't really see how ...
10
votes
4answers
4k views

MySQL Group By ordering

I have the following table: id time text otheridentifier ------------------------------------------- 1 6 apple 4 2 7 orange 4 ...
7
votes
1answer
1k views

how to compute the average with mongodb and NumberLong

I am trying to compute an average value from a collection using the mongodb java driver, like this: DBObject condition = new BasicDBObject("pluginIdentifier", plugin.getIdentifier()); DBObject ...
6
votes
2answers
121 views

Why many servers change its uid and gid,what's the benefit?

I see such logic in many open source projects: if (setuid() == 0) { if (setgid(ccf->group) == -1) { ... if (initgroups(ccf->username, ccf->group) == -1) { I have 2 questions on ...
5
votes
2answers
120 views

How can I group my applications in start menu deployed by clickOnce?

I have created a set of applications which are deployed using clickonce. is it possible to group them in a common start menu item? Background : I have created a series of quantitative finance related ...
5
votes
2answers
481 views

SQL Server: Select Max Limit 1 from Group

Using SQL Server. Ok, I'm making an in webpage cache system. I wanted to make a simple page rank system along with output. The problem is, I want to display the recordset with the highest relevance ...
5
votes
4answers
1k views

SQL - how to count groups of rows and display the top/bottom 3

I realise this is likey to be an easy one, but my SQL is basic at best. Lets say I have a table containing a list of orders, with 'item_id' being one of the columns. I need to display the 3 least (or ...
5
votes
3answers
4k views

jQuery Table Plugin with Group By

I need a jQuery Plugin that makes a Sortable and Groupable List of my Data. My Data is a Tasklist with a duedate, and i would like to have them grouped by date, and sortable. Is there a plugin that ...
5
votes
4answers
5k views

Use LINQ to concatenate multiple rows into single row (CSV property)

I'm looking for the LINQ equivalent to the Sybase's LIST() or MySQL's group_concat() It'll convert: User Hobby -------------- Bob Football Bob Golf Bob Tennis Sue Sleeping Sue ...
4
votes
2answers
155 views

How to get total day count in a month

I want to find a total days per month group by days. For Example Month is '01/2011' (mm/yyyy) Expected Output Sunday - 5 Monday - 5 Tuesday - 5 Wednesday - 4 Thursday - 4 Friday - 4 Saturday - 4 ...
4
votes
1answer
40 views

Select with grouping in range

From Table A B _______________ 1 A 3 B 6 C 7 C 8 X 9 Y 15 Z 16 R 17 t 23 T 43 e How to bring this result: Range A Count B _________________ 1-10 6 11-20 3 21-30 1 ...
4
votes
2answers
73 views

How to find all groups in a list in python?

I have a list like this [0,0,1,1,1,0,0,0,1,1,0,0,1,1,1,1] and I want to group them and then find the length of each group.So the result will be like that :[[2,0],[3,1].....[4,1]].Any help is ...
4
votes
1answer
91 views

Regex Captures in Java like in C#

Hej folks, I have a to rewrite a part of an existing C#/.NET program using Java. I'm not that fluent in Java and am missing something handling regular expressions and just wanted to know if I'm ...
4
votes
1answer
819 views

MySQL: What user should own /usr/local/mysql on Mac?

What should the file owner & group be of /usr/local/mysql and all contained files & directories? MySQL was working fine, but after I did sudo chown -R $USER:staff /usr/local to install ...
4
votes
2answers
1k views

Getting members of an AD domain group using Sharepoint API

In my Sharepoint code I display a list of all defined users via: foreach (SPUser user in SPContext.Current.Web.AllUsers) { ... } The great part is, I can add a domain security group to a ...
4
votes
2answers
404 views

Vbscript - Creating a script that mirrors several sets of folders

Ok, this is my problem. I'm doing a logonscript that basically copies Microsoft Word templates from a serverpath on to a local path of each computer. This is done using a check for group membership. ...
4
votes
4answers
1k views

How do I write a regular expression that excludes rather than matches, e.g., not (this|string)?

I am stumped trying to create an Emacs regular-expression that excludes groups. [^] excludes individual characters in a set, but I want to exclude specific sequences of characters: something like ...
4
votes
2answers
4k views

php how to group a multidimensional array by a particular value?

Hopefully, I can explain this correctly... I have a multidimensional array and am trying to group them according to the value of one the keys. So, I'm trying to group them by level, but I won't ...
4
votes
6answers
369 views

What ASP.NET MVC project files should be kept in a repository?

background:Me and my coworkers are working on asp.net mvc project ... we have a computer that works as a server which is where the project will be stored on... each of us has a copy of the project and ...
4
votes
1answer
2k views

Android Get Group of Contact by ID

I have a contact ID, how do I get the group the contact is assigned to? I am sure it is something to do with the Contacts.Groups class but I cannot figure it out. Thanks, Isaac
4
votes
3answers
3k views

Getting a user's group name in Windows XP - using any way possible

I've posted a similar question about how to do this in JNDI, but in THIS post I am wondering how to do it using ANY INTERFACE. I'd like to be able to retrieve a user's group name. When I say ...
3
votes
5answers
94 views

LINQ C# Group by

I would like to group my LINQ query by ItemNumber and return the whole table with the total for Quantity. Example: ItemNumber - ItemName - Quantity 100 Item1 1 150 Item2 ...
3
votes
1answer
76 views

Sticky Group Headers in ListBox

I am binding a WPF ListBox to a ICollectionView which is grouped. The ListBox displays correctly with the group headers, but I want to add additional behavior to this. I want group headers to stick ...
3
votes
1answer
36 views

Can you group jQuery selectors with (slightly more) advanced logic?

We're working on a filter system, where you get groups of options, for instance: Colour Red, Blue, Green Price Range £0-£5, £6-£10, £11+ Make Adidas, Nike, Converse Each option is a single ...
3
votes
1answer
64 views

How to Apply Disclosure only to Certain Group(s)?

I currently have grouping like this: Code: Ext.regModel('Contact', { fields: ['firstName', 'lastName'] }); var store = new Ext.data.JsonStore({ model : 'Contact', getGroupString : ...
3
votes
2answers
122 views

Rails 3: .group() ordered by created_at

What is the Rails 3 way to order .group() results in Activerecord (here by "created_at")? @messages = Message.group(:foo) only results in displaying the oldest message. I'd need the latest to be ...
3
votes
4answers
74 views

Working with Regular Expressions - Repeating Patterns

I am trying to use regular expressions to match some text. The following pattern is what I am trying to gather. @Identifier('VariableA', 'VariableB', 'VariableX', ..., 'VariableZ') I would like to ...
3
votes
2answers
249 views

MySQL select top N rows out of M groups

I have this table: CREATE TABLE IF NOT EXISTS `catalog_sites` ( `id` int(10) unsigned NOT NULL auto_increment, `cat_id` int(10) unsigned NOT NULL, `date` datetime NOT NULL, `url` varchar(255) ...
3
votes
4answers
151 views

Regex Python / group quantifiers

I want to match a list of variables which look like directories, e.g.: Same/Same2/Foot/Ankle/Joint/Actuator/Sensor/Temperature/Value=4.123 Same/Same2/Battery/Name=SomeString ...
3
votes
2answers
57 views

groupnum over partition

I've got a Oracle 11g table as follows: id name department 1 John Accounting 2 Frederick BackOffice 3 Erick Accounting 4 Marc BackOffice 5 William BackOffice 6 Pincton ...
3
votes
1answer
100 views

XML Serialization Question - Order of elementsC#

i need to serialize an Object to XML and back. The XML is fix and I can't change it. I fail to generate this structure after bookingList. How can I "group" these <booking> elements to appear ...
3
votes
1answer
98 views

Handling duplicate filenames in Xcode

I'm writing an iOS project in Xcode 4 that uses several third-party libraries. One of those libraries contains a file with the same name as a file in my project. I'd like to put both files in separate ...
3
votes
1answer
85 views

Grouping integers by set membership in Python

Working in Python, given a list of N sets of integers from the range range(s,n), how can I build a list that groups all these integers according to their set memberships? An example is really going to ...
3
votes
2answers
136 views

Get last record of each record group

I don't know how to write the SQL syntax of getting the last record (according to recent post and is not replied to). My table ...
3
votes
3answers
101 views

MySQL Group by x where y = A and B and C

I have a table that stores product price information. It has a column for the product ID, a quantity and a discount. (Users buys 2 gets £1 off, buys 3 gets £2 off etc). I'd like to pull all products ...
3
votes
2answers
424 views

How can ExpandableListView's default list item press behavior be preserved when supplying a group view that contains more than just a TextView?

Is it possible to preserve ExpandableListView's default list item press behavior when supplying a group view that contains more than just a TextView. The behavior I'm referring to is where the item ...
3
votes
3answers
128 views

Grouping a 2D array according to its values

I've been trying to get some display logic to behave and stay where it belongs and the code has turned into an interesting little problem that'd be nice to make a general solution for. Bear with ...
3
votes
2answers
3k views

C#, AD: get members of a group recursively, i.e. including subgroups

Given a group like this in Active Directory: MainGroup GroupA User1 User2 GroupB User3 User4 I can easily determine if User3 is member of MainGroup or any of its subgroups with ...
3
votes
3answers
124 views

Can I use an OR in regex without capturing what's enclosed?

I have used RegExp before but am far from an expert... I'm reading up right now for a project, but am running into an issue. I'm using rubular.com to build my regex, and their documentation ...
3
votes
1answer
389 views

How to configure an existing git repo to be shared by a UNIX group

I have an existing git repo (a bare one) which has up to this point only been writable by me. I want to open it up to some UNIX user group, foo, so that all members of foo can push to it. I'm aware ...
3
votes
3answers
4k views

Android: mass enable/disable buttons

I have Activity where bunch of buttons are placed inside TableLayout not unlike a dial pad. During some operations I need temporarily disable the buttons. To my unpleasant surprise doing ...
3
votes
1answer
306 views

Searching for Windows User SIDs in C#

Context Context first - issues I'm trying to resolve are below. [EDIT] The application in questions is built against .NET 3.5 SP1. One of our clients has asked as to quote how long it would take ...
3
votes
1answer
99 views

MySQL SELECT statement that groups results by id?

I am trying to create a MySQL SELECT statement that will select a bunch of rows from a table and will group the results by the id of the row (multiple rows will have the same id). Here's an example ...
3
votes
2answers
391 views

MPI difference between Communicator and Group

I have read the definitions of these terms and my interpretation is that there is a one to one relation between a group and a communicator. A group is a set of processes which wish to communicate with ...
3
votes
1answer
705 views

Count and group non-empty values in MySQL

I need to count the non-empty (by which I mean a string containing at least 1 character) rows grouped by a particular ID. Eg. my data might look like this: form_id mapping 1 'value_1' 1 ...
3
votes
1answer
603 views

XAML WPF Vertical Scroll bar line by line instead of group by group when grouping

What I want to do is scrolling line by line instead of group by group when my items in listview are grouped and I press down/up arrow button of vertical scroll bar.
3
votes
2answers
831 views

All Addtional Attributes for Grouped Products in Magento

Similar to the question asked at: http://stackoverflow.com/questions/1005394/magento-show-custom-attributes-in-grouped-product-table I'd like to display attributes of simple products in the grouped ...
3
votes
3answers
4k views

How to count group by rows in rails?

When i use User.count(:all, :group => "name"), i got multi rows, but it's not i want, what i want is the count of the rows, how can I do it?
3
votes
2answers
1k views

ASP.NET like ValidationGroup using JQuery validate plugin?

We're trying to get the JQuery validate plugin working on our site but we've stumbled across a problem here. On our site we have a login form available for the user on every page where we'd like to ...
3
votes
1answer
946 views

jQuery - adding rules to validate() with grouping

oi! another question. The form is at: http://fuzzysiberians.com/app4.cfm?a=1 I am using: $('#sec_ssn3').rules("add", { groups: { ssn:"sec_ssn1 sec_ssn2 sec_ssn3" }, ...

1 2 3 4 5 13