usergroups

Are there any online user group meetings?

I must admit that I am incredibly jealous of those developers who happen to live near active user groups (e.g. the ALT.NET guys in Austin). I often read blog posts and listen to podcasts that reference these in-person meetings and find myself wishing that I could sit in and participate as well. But it just isn't realistic to fly across...

What compels you to attend your local user group(s)?

So I'm in Des Moines, Iowa and we have a good number of user groups in our area considering our size. Ruby, .Net, Java, Agile, *nix, etc... Well, tonight a good number of us "leaders" of said user groups got together for a couple drinks and to talk about how we can work together to help make the "DeMo" (I keep seeing this on Twitter) use...

How & where can I setup servers for a learning development project?

Backgroud: I am a board member of the Fox Valley .Net User Group. We are starting a Special Interest Group to do a software project from start to finish. We want to focus on having senior .Net members help junior .Net members learn tools and technologies. We want to learn how to use or better use the following software: Team Foundation...

Sharepoint - Permissions?

Hello, Im trying to run a command on the AddUserToGroup method via webservices (UserGroup.asmx). I set up the code as follows. //set up the user group userGroup = new UserGroup.UserGroup(); userGroup.Url = vtiBin + "/UserGroup.asmx"; userGroup.Credentials = CredentialCache.DefaultCredentials; So I have my credentials being passed to...

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. ...

How do I detect what Domain User Group a Windows User is in with VB.NET?

How would I go about this? I know that using Dim currUser As String = Request.ServerVariables("LOGON_USER") retunrs the Domain\Username, but I want to know what Group that user is in say in Active Directory. Is this possible? Thanks in advance for any help. ...

Create a user-group in linux using python

I want to create a user group using python on CentOS system. When I say 'using python' I mean I don't want to do something like os.system and give the unix command to create a new group. I would like to know if there is any python module that deals with this. Searching on the net did not reveal much about what I want, except for python ...

Sharepoint Redirecting Users or Groups from a page to another.

Hello , What I am tring to do is, when people comes to that page: http://server:26521/MY%5FPortal/service/default.aspx I want them to be redirected to that page http://server:26521/default.aspx Depending on their User name Or User Group. Thanks for helps. ...

Is it acceptable for a server-based application installer to create a new group?

We're building an application designed to run on Windows-based servers. One of the considerations we're looking into at the moment is how to control access to the application's GUI, which allows configuration and controls the "back end" services. In order to secure the application properly, there are several objects which will need ACLs...

ASP.NET MVC check if user belongs to [x] group

Maybe I'm approaching this the wrong way and should be doing everything in action filters, in which case please point me in the right direction! I'm setting up my ASP.NET MVC application so that the one HomeController Index action delivers two different types of content, like so: if(Request.IsAuthenticated) return View("IndexRegister...

Has anyone attend or ran an OpenSpace (BOF) session? Any tips on making it successful?

I will be attending PyCon and am thinking about attending and/or running some OpenSpace session (http://www.mindviewinc.com/Conferences/OpenSpaces.html). Does anyone have any tips on making them successful? ...

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 events as there does not seem to be one place where they are listed. Does anyone know of such a place? I also want to setup a Google Technology...

Practices for Group Management - in Application or Directory Service

Hi: I am trying to grapple with group management policies in a number of application and directory services (both AD and LDAP). Can anyone refer me to online or book resource that has examples or best practices for group management? Thanks. ...

SVN user groups and permissions

Hi, I have setup an SVN server on my hosting account. Users can check in and out, but they have access to my entire repository. To give people access, I issue users a public key to my account and then I add a line into my "authorized_keys" file inside my ~/.ssh that looks like this: command="/home/user/packages/bin/svnserve -t -r /home...

Merge two (or more) arrays and keep values that are highest?

I've got a permissions/group based setup that I'm trying to merge results on. For example, a user might be associated with four groups: | username | passwd | email | groups | | test_user | 9agb9 | [email protected] | g1, g2, g3, g4 | grouping table: | group | perm1 | perm2 | perm3 | perm4 | perm5 | perm5 | perm7 | | g1 ...

user groups and their permissions to manage site

Hi! What would be the best way to grant certain actions/permissions to users based on their group? Let's say there are 3 groups - user, admin and accountant. User can do action1, admin - action1,2,3 ,accountant - action1 and 2. Could it be like this: if(group == user){ action1(); //function } if(group == admin){ action1(); action2(); a...

Linux user group folder permissions

I have a basic linux file permissions question: I have a folder named test: $ ls -la drwxr-xr-x 5 root root 4096 2010-10-25 17:11 . drwxr-xr-x 17 root root 4096 2010-10-25 16:53 .. drw-rwS--- 3 root codedev 4096 2010-10-25 17:11 test In this folder (test) I want all users that are members of the group codedev to have read and...