Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
15k views

“Most popular” GROUP BY in LINQ?

Assuming a table of tags like the stackoverflow question tags: TagID (bigint), QuestionID (bigint), Tag (varchar) What is the most efficient way to get the 25 most used tags using LINQ? In SQL, ...
12
votes
4answers
17k views

Get a list of members of a WinNT group

There are a couple of questions similar to this on stack overflow but not quite the same. I want to open, or create, a local group on a win xp computer and add members to it, domain, local and well ...
9
votes
2answers
364 views

Create Invisible Contacts Group in Android

What I want is to hide contacts from the contact list. So to achieve this I tried a lot and searched a lot. Finally I've come to know that we can generate an invisible group and we can assign ...
8
votes
3answers
2k views

Python script to list users and groups

I'm attempting to code a script that outputs each user and their group on their own line like so: user1 group1 user2 group1 user3 group2 ... user10 group6 etc. I'm writing up a script in ...
7
votes
5answers
2k views

How can I store captures from a Perl regular expression into separate variables?

I have a regex: /abc(def)ghi(jkl)mno(pqr)/igs How would I capture the results of each parentheses into 3 different variables, one for each parentheses? Right now I using one array to capture all ...
7
votes
4answers
9k views

How do I create my own custom group in mediawiki?

I have been reading carefully through the mediawiki documentation but I have not been able to find out how to create new groups. When I look at Special:Userrights, I see only 3 groups : Bots, ...
5
votes
7answers
2k views

Windows / Active Directory - User / Groups

I'm looking for a way to find a the windows login associated with a specific group. I'm trying to add permissions to a tool that only allows names formatted like: DOMAIN\USER DOMAIN\GROUP I have a ...
4
votes
2answers
341 views

Finding mongoDB records in batches (using mongoid ruby adapter)

Using rails 3 and mongoDB with the mongoid adapter, how can I batch finds to the mongo DB? I need to grab all the records in a particular mongo DB collection and index them in solr (initial index of ...
4
votes
2answers
329 views

Hashmap within a Hashmap

I have a hashmap Map<String, Object> grpFields = new HashMap<String, Object>(); which is contained within another hashmap: Map<Integer, Object> targetFields = new ...
4
votes
4answers
1k views

Java Matcher groups: Understanding The difference between “(?:X|Y)” and “(?:X)|(?:Y)”

Can anyone explain: Why the two patterns used below give different results? (answered below) Why the 2nd example gives a group count of 1 but says the start and end of group 1 is -1? public void ...
4
votes
3answers
1k views

Can I replace groups in Java rexex?

I have this code, and I want to know, if I can replace only groups (not all pattern) in Java regex. Code: //... Pattern p = Pattern.compile("(\\d).*(\\d)"); String input = "6 example input 4"; ...
4
votes
5answers
3k views

ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?

Very simple question actually: I currently have IIS anonymous access disabled, users are automatically logged on using their Windows login. However calling User.IsInRole("Role name") returns false. I ...
3
votes
1answer
66 views

Is there an add-on that allows me to create groups that are matched according to one or more criteria?

I want to compare two groups of subjects (0,1) but want to make sure that the differences I observe aren't due to a third variable, which is significantly different between the two groups. Group 1 is ...
3
votes
3answers
133 views

How to determine best combinations from 2 lists

I'm looking for a way to make the best possible combination of people in groups. Let me sketch the situation. Say we have persons A, B, C and D. Furthermore we have groups 1, 2, 3, 4 and 5. Both are ...
3
votes
2answers
433 views

OpenCL synchronization between work-groups

I have question, It's possible to synchronize OpenCL work-groups? For example, I have 100 work-groups every work-groups have only one item (don't ask my why, this is an example) and I need to put ...
3
votes
1answer
146 views

Can I run all the TestNG tests that do not belong to any group (in Maven)?

Or in alternative formulation: Are tests in TestNG assigned to a default group if no group is specified, and if yes, what is the name of that default group? (Yes, I have read this post). I want to ...
3
votes
2answers
164 views

Need some help with the idea of recursion

I'm practicing recursion using Java and I've hit a problem. I'm trying to make a method which I'm calling "groups" which takes a number of people and how many groups there are and returns the number ...
3
votes
1answer
318 views

django: displaying group users count in admin

I would like to change admin for a group, so it would display how many users are there in a certain group. I'd like to display this in the view showing all groups, the one before you enter admin for ...
3
votes
2answers
112 views

List of programming related conferences, unConference and meet-ups in the UK?

I really enjoy attending unconference/BarCamp type events and getting to meet developers, designers etc. from different backgrounds and sharing ideas in person. However, I have trouble finding ...
3
votes
5answers
10k views

Sharepoint: Check if a user is member of a group

how can I check if a user (not the one currently logged in) is member of a certain group? Trying to retrieve a user from a group of which he's not a member leads to an SPException, so checking for ...
3
votes
2answers
1k views

Protected Pages in MediaWiki

I am currently using MediaWiki as a documentation website, with login authenticated by LDAP. However, we have hit a snag. Certain pages contain sensitive information. For example links that say ...
2
votes
1answer
30 views

AWS - Configuring access to EC2 instance from Beanstalk App

So for reasons Id rather not go into, my DB is on an EC2 instance in eu-west-1 and I have created a beanstalk app on us-east-1. Id like my app to talk to that EC2 instance on a MySQL port (3306). ...
2
votes
2answers
78 views

Find out if a group in AD is in Distribution group?

I'm using ASP.net with C# and have a very little idea about Active Directory. I've been given a task to write a program in steps below: The ASP.net application is given the username of a user. The ...
2
votes
2answers
114 views

XCode, folders and #import statement

I'm writing an app for the iOS in XCode 4 and stumbled upon an issue with #import statement. All my source files are organized in folders, every folder is mapped to the group or subgroup in XCode. ...
2
votes
1answer
83 views

SQL Group by “Like”

I have a query where I generate our monthly customer contact activity. We have several categories (email out, email in, phone call in, phone call out, etc.) There are 8 distinct "type" results. I ...
2
votes
5answers
195 views

Referencing nested groups in JavaScript using string replace using regex

Because of the way that jQuery deals with script tags, I've found it necessary to do some HTML manipulation using regular expressions (yes, I know... not the ideal tool for the job). Unfortunately, ...
2
votes
2answers
218 views

How to have same component ID in different state (Flex Mobile Project)

For example, in my flex mobile application I have a portrait and a landscape state. Both with the same components, but they are being laid out using different HGroups and VGroups in each state. If i ...
2
votes
1answer
691 views

Get the primary group ID C#

Trying to get all the groups a user belongs to, INCLUDING the primary group: Doing something like this: DirectoryEntry entry = new DirectoryEntry(LDAP:/domainXYZ, userx, passwordx); ...
2
votes
3answers
786 views

Deleting/Removing Group in Xcode

I seem to be having a very odd problem with my iPhone project in XCode4. By accident, I seem to have dragged a new group I created out of my main project group: When I try to move the group back ...
2
votes
2answers
912 views

Display group with no data in Crystal Reports 12

I am trying to group my data based on age. I use the following database select: select * from ( select 0 range_start, 11 range_end, '0-10 days' date_description from dual union select 11, 21, '11-20 ...
2
votes
1answer
616 views

Jquery validation groups

I can't figure out how jquery validation groups work, nor how they should work. I assumed it would serve as to validate conditions that needed more than one element to be tested, is that it? ...
2
votes
3answers
336 views

How do I find Programming Clubs/User Groups in my Area?

Been programming for a while and would like to talk or chat with someone in my same programming language.
2
votes
4answers
5k views

box2d collision groups

does anyone know whether bodies only collide when (body1.categoryBits & body2.maskBits) && (body1.maskBits & body2.categoryBits) ? or do they already collide when (body1.categoryBits ...
2
votes
4answers
17k views

Calculating grand totals from group totals in Reporting Services

I have some data grouped in a table by a certain criteria, and for each group it is computed an average —well, the real case is a bit more tricky— of the values from each of the detail rows that ...
1
vote
2answers
64 views

Listing All Active Directory Groups

The following code lists some, but not all, Active Directory Groups. Why? I am trying to list all security groups, distribution groups, computer groups etc. Have I specified the wrong objectClass? ...
1
vote
0answers
49 views

PHP SDK Facebook, read private groups

I would like to read the group names where the user is member. $groups = $facebook->api('/me/groups'); Doesn't work for me, it just returns me an empty array. Other things like "/me/albums" ...
1
vote
1answer
40 views

Unable to access “Users and Groups” in Plone 4

Whenever I try to access "User and Groups" in Plone Site Setup, I'm getting the following error : Traceback (innermost last): Module ZPublisher.Publish, line 127, in publish Module ...
1
vote
0answers
42 views

How can I creat an event specifically for my facebook group? [closed]

I use facebook to make events for my clubs and activites. We commonly do this as a reminder and to see the amount of people coming. I understand that I am still able to creat an event on my own ...
1
vote
0answers
115 views

Zend Ldap allow only if user has a certain Group

what i want to achieve: there are two different group administration readonly i want to be able to authenticate a user and assign a role depending on which group he belongs to. what i've tried: ...
1
vote
3answers
77 views

Creating a group of users in PHP and MySQL

I'm wondering how I can use JOIN or LEFT JOIN to group users. users table: id (primary) user (varchar) pass (varchar) email (varchar) website (varchar) bio (text) avatar (varchar) code (varchar) ...
1
vote
1answer
121 views

Facebook API manage_groups permission to create a group

I want to create and manage a group through the Facebook API. There are some older messages here (more than a year old) that say it can't be done -- is that still the case? Has anyone manage to do it? ...
1
vote
1answer
106 views

I cannot retrieve my groups using Facebook SDK 5.1 using C#

I am using the Facebook SDK and I am trying with C# to get the groups the user is subscribed to. The code is as follows JsonObject Groups = (JsonObject)client.Get("me/groups"); After this code ...
1
vote
2answers
80 views

Xcode — move all classes in a group to the finder folder of that group?

Suppose that group A has its path set to folder A in the finder, and group B has its path set to folder B. I move one of my classes from group B to group A. Annoyingly, the default behavior is that ...
1
vote
1answer
144 views

What is the correct way to setup linux users & groups when multiple users rsync to the same remote location?

Hi knowledgeable Stack Overflow lot, I have multiple developers trying to rsync files (symfony php projects) to the same remote location. This has been setup as follows: Each user has their own ...
1
vote
0answers
74 views

What is the ExtendedImage property for in TListViews TListGroup?

If I specify any number in it like that: Tasks.Groups.Items[1].ExtendedImage := 0; then group header just disapears. I think I've searched everywhere and couldn't find anything helpful
1
vote
0answers
76 views

Active Directory Groups and CruiseControl.NET

I'm using CruiseControl.NET 1.6 and I want to restrict forceBuild access to some projects. I'd like to use existing Active Directory groups to do this rather than enumerating the users in each ...
1
vote
3answers
233 views

Algorithm to split set of objects into certain number of groups?

For example, say I have a 2D array of pixels (in other words, an image) and I want to arrange them into groups so that the number of groups will add up perfectly to a certain number (say, the total ...
1
vote
2answers
121 views

Grouping method to maintain nested elements XSLT 2.0 - separating the excess

I'm grouping bulleted items and embedding them as a second list of bulleted items inside some list elements. I can get the items to group, but my recursion template is selecting everything from my ...
1
vote
2answers
309 views

Get real time updates from Facebook Groups?

Is there a way to get updates in real time to your own server about posts to a Facebook group? I'm trying to build a service that lets users get SMS messages with any messages that were sent to the ...
1
vote
4answers
311 views

Database users and groups model

I have 2 entities: users and groups. Easiest model is user(id,name,etc...), group(id,name), user_group_rel(user_id,group_id). But I need to include groups into other groups. One user can be in many ...

1 2 3 4