|
I am a programmer with an application that needs to be integrated into the new company wide Active Directory login scheme. This means changing all the usernames in our system to use the new scheme. The new scheme is "first initial, last name", so Joe ...
Started by Peter on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at serverfault):
IMO, good practice.
Try searching those for things like "user to guid", "user to id", etc .
Sites.
|
|
I need your suggestions and common practices.
Started by TomMex on
, 4 posts
by 2 people.
Answer Snippets (Read the full thread at ni):
practice and most common? Isolated, available on the network?
Thanks Hi TomMex,
The concept of "best.
|
|
Which is the better practice and why?
bool IsTodayMonday { get { return DateTime.Now.DayOfWeek == DayOfWeek.Monday; } }
Or
bool IsTodayMonday() { return DateTime.Now.DayOfWeek == DayOfWeek.Monday; }
Started by maxp on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
To me this question is more like a company policy (coding guidelines) question and if any company wants to choose.
As a consultant for a number of different companies and have also been working at OEM company.
|
Ask your Facebook Friends
|
Normally is it good practice to set all database columns as NOT NULL or not ? Justify your answer.
Started by Rachel on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
I know.
So, to the extent that you want your practices to the client or to a vendor in a data feed and your company looks really really stupid.
However, your question kind of referred to practice.
|
|
What is considered best practice for sharing or allowing users from the internet that are not company related to have access to trac and svn?
Should it be on a DMZ, should it be internal with some form of SSH connection or using an https?
If you were ...
Started by dasko on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
User of people from outside of company....
Trac and svn would only be accessible from your private network and from VPN .
If limiting access to #1 outside of company.
Disallow outgoing connections.
From inside your company and from the proxy.
|
|
What is the Best Practice for manipulating and storing Dates e.g. using GregorianCalendar in an enterprise java application?
Looking for feedback and I will consolidate any great answers into a Best Practice that others can use. Thanks!
Started by BestPractices on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The best practice is usually precisely NOT to think in term of heavy date objects but to store a point displaying it to the....
As -- such as localizing it to EST if you are an east-coast US company and you want your time information shown.
|
|
Does anyone know of some good resources for practice coding questions typically asked in interviews. I know of topcoder.com which is kind of fun to use to exercise your algorithms. And I have seen the occasional test set on company websites. Any others...
Started by Vagnerr on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
It might....
Steve Yegge's Five Essential Phone-Screen Questions practice, and it can be difficult, especially if you're used to relying intellisense or other features of your editor or IDE.
Spolsky's company) Tech Interview site very good.
|
|
Title says it all... we've debated this without any progress.
Closest related questions I could find:
How many parameters are too many? Worst Java practice found in your experience? What “bad practice” do you do, and why?
Started by Mark Renouf on
, 21 posts
by 21 people.
Answer Snippets (Read the full thread at stackoverflow):
Maybe try to read some literature on the subject together, at my company we.
Listen to his points is really being passed.
You have him explain why it's NOT bad practice.
You don't...
Trees for a reason.
|
|
In my current job the supervisor's practice is to only check in production ready code. Most recently the project I was on involved work by 3 different developers with some file overlap. This meant manually integrating changes despite the fact that some...
Started by osp70 on
, 14 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
See How to convince a company to switch.
Seperate) functional components on the top from VSS to something more reliable & feature-rich .
practice is that you should only be merging distinct (i.e.
|
|
Is it a bad practice to mix GET and POST? (note this is in PHP)
e.g.
<form action="delete.php?l=en&r=homepage" method="post"> <!-- post fields here --> </form>
Started by thephpdeveloper on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I do exactly this on my company's web site, for example.
Nope, this is fine.
It's still a POST, you're just for POST requests.
Of something you wanted to delete, then it would be bad practice.
|