52
votes
38answers
3k views
As a developer, what changes do you make to a vanilla Windows install ?
When I get a vanilla Windows system, there's a bunch of stuff I change to make it more developer-friendly.
Some of it I remember every time, other stuff I only do as and when.
Examples:
Show …
36
votes
17answers
1k views
At what point does a config file become a programming language?
I have been mulling over config files and their relationship to code for a while now and depending on the day and direction of the wind my opinions seem to change. More and more though I keep coming …
19
votes
7answers
340 views
What are your suggestions for an ideal Vim configuration for Perl development?
There are a lot of threads pertaining to how to configure Vim/GVim for Perl development on PerlMonks.org. My purpose in posting this question is to try to create, as much as possible, an ideal …
16
votes
20answers
2k views
what’s in your .bashrc ?
.bashrc modifications are like nesting for developers. All I have right now is a few aliases and some PATH modifications. What's in yours?
15
votes
13answers
1k views
Which configuration method do you prefer in .net? Why?
You can use App.config; but it only supports key/value pairs.
You can use .Net configuration, configuration sections; but it can be really complex.
You can use Xml Serialization/Deserialization by …
14
votes
11answers
4k views
Connection string hell in .NET / LINQ-SQL / ASP.NET
I have a web application that comprises the following:
A web project (with a web.config file containing a connection string - but no data access code in the web project)
A data access project that …
13
votes
10answers
1k views
Java configuration framework
I'm in the process of weeding out all hardcoded values in a java library and was wondering what framework would be the best (in terms of zero- or close-to-zero configuration) to handle run-time …
12
votes
15answers
403 views
How do you structure config data in a database?
What is people's prefered method of storing application configuration data in a database. From having done this in the past myself, I've utilised two ways of doing it.
You can create a table where …
11
votes
9answers
469 views
Managing user configuration files across multiple computers
I commonly work on multiple computers. I have various configuration files, eg, .bashrc, .gitconfig, .irbrc, .vimrc and configuration folders, eg, .vim/ that contain valuable customizations.
Sometimes …
11
votes
10answers
2k views
Using different Web.config in development and production environment
I need to use different database connection string and SMTP server address in my ASP.NET application depending on it is run in development or production environment.
The application reads settings …
11
votes
6answers
718 views
Visual Studio 2008 — Can I change which “add reference” tab is selected by default?
Every time you start Visual Studio, the first time you click "Add Reference" to add a DLL reference to a project, by default, the .NET tab on that dialog box is selected. As most people reading this …
11
votes
9answers
1k views
How to import module from file name
How can I load a python module given its full path? Note that the file can be anywhere in the filesystem, as it is a configuration option.
10
votes
3answers
1k views
Making WCF easier to configure
I have a set of WCF web services connected to dynamically by a desktop application.
My problem is the really detailed config settings that WCF requires to work. Getting SSL to work involves custom …
9
votes
5answers
227 views
Differentiating web.config between dev, staging and production environments
Anyone have any good tips on handling differences in web.config settings between environments? I've considered creating a 'config' folder in our source control system but outside of the web hierarchy, …
9
votes
8answers
1k views
Why use app.config to store config data?
I am currently completing an application that was started by someone else. He is using the app.config for some settings, and a custom xml file for other parts. This drives me nuts, and I want to …
