Tagged Questions
The user tag has no wiki summary.
38
votes
16answers
2k views
What's the funniest user request you've ever had? [closed]
Users sometimes come up with the most amusing, weird and wonderful requirements for programmers to design and implement.
Today I read a memo from my boss that we need the "ability to import any excel ...
21
votes
6answers
11k views
WPF/C#: Where should I be saving user preferences files?
What is the recommended location to save user preference files? Is there a recommended method for dealing with user preferences?
Currently I use the path returned from ...
21
votes
25answers
2k views
Have you ever faced an ethical issue when creating an application?
This question isn't about ethical behavior in the workplace, like leaking code or stealing. I'm wondering, have you ever been asked to add a feature to an app that you thought was harmful to users, ...
15
votes
2answers
93 views
Error reading text file in php
I have a file I need to import into a database. (My database is good, I can connect and I can add). Now my problem is for some reason nothing gets inserted.
I have a file schooldatabase.txt of ...
14
votes
2answers
177 views
Stop users committing to git as wrong user
I'm using git and Codebase for a project.
I just did a test and I'm able to commit to the git repository with a different email address and name set which causes it to tag the commit as being by a ...
14
votes
9answers
490 views
Build a Better Access Control System
I'm in the process of a building an access control system as part of a web framework I am developing. I want to make it super flexible and awesome. Can you help me by providing input and insight on my ...
14
votes
6answers
2k views
Authentication, Authorization, User and Role Managment and general Security in .NET
I need to know how to go about implementing general security for a C# application. What options do I have in this regard? I would prefer to use an existing framework if it meets my needs - I don't ...
13
votes
8answers
744 views
Why do GUIDs and UUIDs have hyphens in them?
A colleague of mine was wondering why he couldn't just strip the hyphens from the uuid/guid before storing it. We couldn't work out what the hyphens were for...
What is the reasoning behind them? ...
12
votes
2answers
115 views
Why and How to effectively test beta distributions of R as a normal user?
This question is inspired by the remark of Duncan Murdoch on the r-devel mailing list in response to a bug report about Sweave :
This is fixed in R-patched. (It would
have been fixed in 2.12.0 ...
11
votes
12answers
364 views
Account verification: Only 1 account per person
In my community, every user should only have one account.
So I need a solution to verify that the specific account is the only one the user owns. For the time being, I use email verification. But I ...
11
votes
1answer
471 views
How can I authenticate users using their Windows login credentials?
How can I let my Intraweb XI application authenticate users using their Windows login credentials? The application runs as a service on Windows servers.
We need to only allow network users to access ...
10
votes
5answers
2k views
Django: signal when user logs in?
In my Django app, I need to start running a few periodic background jobs when a user logs in and stop running them when the user logs out, so I am looking for an elegant way to
get notified of a ...
9
votes
6answers
7k views
Find Facebook user (url to profile page) by known email address
I have an email address and want to find out if there is a Facebook user linked to this address. If there is, then I want to retrieve the url to this users profile page and save it somewhere.
I do not ...
9
votes
4answers
812 views
gitosis: same user multiple machines
In git/gitosis a single ssh key is stored with the filename the same as user name.
i.e. myusername.pub
If I want to access a repository from many machines, must I make a new user from each location ...
9
votes
3answers
1k views
ASP.NET MVC - How to achieve reusable user controls and maintain DRY?
First post so please be gentle :)
When creating user controls in ASP.NET MVC, what is the best way to structure the code so that the controllers that invoke views that use the user controls do not ...
9
votes
2answers
8k views
mysql CREATE USER
I am logged into mysql...
mysql -u root -pmypass
And I have run the following command to remove the database user which worked succesfully
mysql> FLUSH PRIVILEGES; DROP USER 'myuser_shop';
I ...
9
votes
15answers
442 views
How to get users to pay attention to problems?
We occasionally need to notify users about warnings or problems. But often times, especially if it's a common problem, users will just dismiss the warning and continue. Often times users won't even ...
9
votes
16answers
1k views
When the Client asks for something ludicrous and insists [closed]
Ok, so the client is insisting that I make a control that is essential to the website I am doing (it's the nav) into something that, frankly, no one would know what it was much less would click on it. ...
9
votes
5answers
5k views
How to get a list of all users with a specific permission group in Django
I want to get a list of all Django auth user with a specific permission group, something like this:
user_dict = {
'queryset': User.objects.filter(permisson='blogger')
}
But I cant seem to find ...
9
votes
4answers
2k views
How to make subdomain user accounts in a webapp
I am looking to allow users to control of subdomain of an app I am toying with, much like Basecamp where it is 'customusername.seework.com'.
What is required on the DNS end to allow these to be ...
8
votes
5answers
1k views
Check if twitter username exists
Is there a way to check if a twitter username exists?
Without being authenticated with OAuth or the twitter basic authentication?
8
votes
9answers
1k views
If you had a “Wall Of Truth” to educate non-programmers, what would you post? [closed]
At one organization, we didn't have offices or cubicles. We had tables in a conference room.
All conversations were public. Some folks would notice the repeated themes in some of the conversations, ...
8
votes
3answers
12k views
HttpContext.Current.User.Identity.Name is always string.Empty
Hi I use a custom MembershipProvider.
I want to know the current username during an application scenario, but when I try accessing HttpContext.Current.User.Identity.Name it always returns ...
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 ...
8
votes
7answers
6k views
Django: Model limit_choices_to={'user': user}
I went to all the documentation, also I went to the IRC channel (BTW a great community) and they told me that is not possible to create a model and limit choices in a field where the 'current user' is ...
7
votes
1answer
220 views
Can DDD repositories be aware of user context?
Say you were to develop a system which availability of entities and domain logic is highly dependent on user context. Would it make sense to handle the user context sensitivity within repositories by ...
7
votes
1answer
514 views
How do I move Delphi XE packages and settings to another user?
We have set up a new (template) development machine with among other things Delphi XE including a large number of third-party and internal packages, and intend to make a number of clones of this ...
7
votes
7answers
307 views
Best way to Identify a user uniquely
I am building a Like/Dislike feature. For this purpose I need to identify the particular user liking or disliking the post. I have an idea that without user logins this cannot be done perfectly, but ...
7
votes
2answers
2k views
Cakephp Auth with multiple “Users” tables
I would like to know how to deal with only ONE authentification process and "users" in multiple tables. I have 4 Users table: users, admins, artists, teamadmins which all have specific fields, but I ...
7
votes
4answers
2k views
Django: How to get current user in admin forms
In Django's ModelAdmin I need to display forms customized according to the permissions an user has. Is there a way of getting the current user object into the form class, so that i can customize the ...
7
votes
5answers
646 views
Reasons to store users' data in LDAP instead of RDBMS
It is often said that using LDAP is a good way to store data about users. That's beacause users' "directory" is hierarchical and it changes rarely. But in my opinion that doesn't exclude using RDBMS. ...
7
votes
1answer
268 views
Is it possible to make user input invisible as a 'sudo' password input?
I'm using raw_input() to receive password from user in interactive mode, but I want to make input symbols invisible for security reasons, as it is when you're typing your password using sudo or ...
7
votes
2answers
7k views
Create Active Directory user in .NET (C#)
I need to create a new user in Active Directory. I have found several examples like the following:
using System;
using System.DirectoryServices;
namespace test {
class Program {
static void ...
7
votes
5answers
147 views
How do you get your users to report bugs using the appropriate channels?
We've got a nice (IMHO) setup where users can either use a web-based form or send e-mail to a particular e-mail address so that they can report a bug. If they do this, a record is created in the bug ...
7
votes
5answers
1k views
Do you know a service like uservoice.com for bug reports?
Is there a service, similar to uservoice.com for bug reports?
It should
very easy to use for normal, non-techie users
be free
be easily maintainable
7
votes
2answers
1k views
Multiple permission types (roles) stored in database as single decimal
I was going to ask a question here about whether or not my design for some users/roles database tables was acceptable, but after some research I came across this question:
What is the best way to ...
6
votes
3answers
327 views
SVN change username
I found a lot examples on how to change the username for specific revisions and so on.
But what I nee is this:
I did a checkout with the authentication credentials of a workmate and need to change it ...
6
votes
1answer
379 views
How to identify if a user is being impersonated in Symfony2?
In an application built with Symfony2 we want superadmins to be able to impersonate other users. This is easily done by giving the superadmin user the ROLE_ALLOWED_TO_SWITCH role. The switching is ...
6
votes
3answers
579 views
OOP PHP user class (usercake) not adding to database
I recently found this little user class script called usercake (http://usercake.com/), has all the basic functionality and seems to work very well.
My problem: The first user gets added to the ...
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 ...
6
votes
5answers
431 views
Maximum number of user for a web application
In my web application i need to restrict the maximum number of user accessing my web application.The no of users are configured in a separate properties file.I have created a HttpSessionListener ...
6
votes
1answer
575 views
How to get all userids of people who are using your facebook application
Is there a way to get all the user, who are using your application?
thx sven.
6
votes
5answers
635 views
Checking for Administrator user login in non-English installations of windows
I have some small questions...I have a program that stores a list of users in a database and compares on program startup if the user is in the list or is an administrator before letting them use it. ...
6
votes
3answers
2k views
How do I get the current user in Perl in a portable way?
How does one get the current user in a portable way? This seems like an FAQ but perlport doesn't speak about it, maybe because some odd systems don't have the concept of "user" to being with? However, ...
6
votes
2answers
167 views
Using Web User Controls instead of Web Forms
I've been using ASP.NET (C#) for the past two years. I have learned so much but there is still much more to learn :)
I've used MasterPages, 'Web User Controls' for things like headers, navigation, ...
6
votes
3answers
263 views
Reason for .Net UI Element Thread-restriction
We know that it is not possible to execute code that manipulates the properties of any UI element from any thread other than the thread the element was instantiated on... My question is why?
I ...
6
votes
4answers
115 views
How to elicit debugging information from end-users?
During beta testing, sometimes our end-users unfortunately encounter a bug. This inevitably leads to a bug report, where the Joel on Software article Painless Bug Tracking suggests:
Every good bug ...
6
votes
2answers
1k views
good idea to integrate CodeIgniter with phpBB3 User System?
Is there a way to integrate CodeIgniter with phpBB3? The reason I ask is because I would like to use the user system as a base for my future CodeIgniter Application.
Is it a good idea to use phpBB as ...
6
votes
2answers
2k views
Django users and authentication from external source
I have a Django app that gets it's data completely from an external source (queried via HTTP). That is, I don't have the option for a local database. Session data is stored in the cache (on my ...
6
votes
2answers
726 views
django auth User truncating email field
I am having an issue with the django.contrib.auth User model where the email max_length is 75.
I am receiving email addresses that are longer than 75 characters from the facebook api, and I need to ...