Tagged Questions
Configuration is the process of specifying the settings used for a system or application
82
votes
13answers
35k views
.NET Configuration (app.config/web.config/settings.settings)
I have a .NET application which has different configuration files for Debug and Release builds. E.g. the debug app.config file points to a development SQL Server which has debugging enabled and the ...
73
votes
39answers
4k 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 ...
52
votes
9answers
15k views
How to define custom configuration variables in rails
I was wondering how to add custom configuration variables to a rails application and how to access them in the controller, for e.g I wanna be able to define an upload_directory in the configuration ...
51
votes
1answer
40k views
How do I prevent a Gateway Timeout with Nginx
I am running Django, FastCGI, and Nginx. I am creating an api of sorts that where someone can send some data via XML which I will process and then return some status codes for each node that was sent ...
50
votes
17answers
2k 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 ...
47
votes
8answers
72k views
How to set the java.library.path from Eclipse
How can I set the java.library.path for a whole Eclipse Project? I'm using a Java library that relies on OS specific files and need to find a .dll/.so/.jnilib. But the Application always exits with an ...
40
votes
14answers
10k 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 ...
39
votes
10answers
12k 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 ...
38
votes
12answers
2k 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 ...
32
votes
4answers
5k views
Is possible to change default diff tool in Mercurial?
Everytime that I do an 'hg diff file.ext' I end up using a console diff application. Is there a way to change that? I can't find a reference in Mercurial documentation (I'm not talking about merge!). ...
32
votes
11answers
14k views
How to import a module given the full path?
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.
31
votes
6answers
7k views
Best way to create custom config options for my Rails app?
I need to create one config option for my Rails application. It can be the same for all environments. I found that if I set it in environment.rb, it's available in my views, which is exactly what I ...
31
votes
5answers
43k views
Eclipse fonts and background color
I have been trying to change the background color of eclipses windows to black and customize the font colors. There doesn't seem to be a way to do this at least not an obvious way. I am using version ...
29
votes
23answers
7k 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?
27
votes
7answers
2k views
Performance differences between debug and release builds
i must admit, that usually I haven't bothered swithcing between the Debug and Release configurations in my program, and I have usually opted to go for the Debug configuration, even when the programs ...
27
votes
7answers
18k views
How to initialize log4j properly?
After adding log4j to my application I get the following output every time I execute my application:
log4j:WARN No appenders could be found for logger (slideselector.facedata.FaceDataParser).
...
27
votes
6answers
31k views
Getting Spring Application Context
Is there a way to statically/globally request a copy of the ApplicationContext in a Spring application?
Assuming the main class starts up and initializes the application context, does it need to pass ...
27
votes
9answers
19k views
WCF Configuration without a config file
Does anyone know of a good example of how to expose a WCF service programatically without the use of a configuration file? I know the service object model is much richer now with WCF, so I know it's ...
25
votes
5answers
16k views
How to setup VIM autoindentation properly for editing Python files - *.py
I've troubles setting VIM (7.1.xxx) for editing python files.
Indenting seems to be broken (optimal 4 spaces).
I've followed some tutorials I found via Google. Still no effect :/
Please help.
24
votes
3answers
5k views
How do I use Notepad++ (or other) with msysgit?
How do I use Notepad++ (or any other editor besides vim) with msysgit?
I tried all of the following to no avail:
git config --global core.editor C:\Program Files\Notepad++\notepad++.exe
git config ...
24
votes
13answers
10k 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 ...
23
votes
6answers
5k views
Are there any GOOD Chef, Chef-Server and Chef-Client tutorials out there?
Chef from Opscode seems to be really useful for configuring servers and such, but trying to follow their documentation is a little difficult. Some terms are defined after they are used, and ...
23
votes
9answers
4k views
Java Web Application Configuration Patterns
Are there any patterns or best practices that can be used to simplify changing configuration profiles for java web applications across multiple environments. e.g. JDBC URLs, SOAP end-points, etc.
...
23
votes
4answers
12k views
Using ConfigurationManager to load config from an arbitrary location
I'm developing a data access component that will be used in a website that contains a mix of classic ASP and ASP.NET pages, and need a good way to manage its configuration settings. I'd like to use a ...
21
votes
7answers
4k views
Real World Use of Zookeeper
I've been looking at Zookeeper recently and wondered whether anybody was using it currently and what they were specifically using it for storing.
The most common use case is for configuration ...
21
votes
7answers
720 views
Git - Committing Machine Specific Configuration Files
A common scenario when I develop is that the codebase will have several config files which require machine specific settings. These files will be checked into Git and other developers will always ...
20
votes
5answers
13k views
WCF WebService / IIS Hosting & Configuration Issue Behind a Firewall
I have a simple WCF Web service. It's hosted on IIS under the default website in our production domain. (local address: 10.10.20.100)
By default this default website was setup for "All Unassigned" ...
20
votes
4answers
7k views
ASP.NET MVC and httpRuntime executionTimeout
I would like to increase the httpruntime executionTimeout for a subsection of an ASP.NET MVC application.
In a regular Web App, you could use
<configuration>
<location ...
20
votes
13answers
110k views
ssl_error_rx_record_too_long and Apache SSL
I've got a customer trying to access one of my sites, and they keep getting this error > ssl_error_rx_record_too_long
They're getting this error on all browsers, all platforms. I can't reproduce the ...
20
votes
14answers
12k views
Are there any decent free Java data plotting libraries out there?
On a recent Java project, we needed a free Java based real-time data plotting utility. After much searching, we found this tool called the Scientific Graphics Toolkit or SGT from NOAA. It seemed ...
19
votes
9answers
2k 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 ...
19
votes
3answers
2k views
What is the difference between app.config file and XYZ.settings file?
I am actually in the learning phase of .NET related stuff and I was exploring how to save the application. I ended up writing my own class which saves the settings in an XML file and then I found that ...
19
votes
6answers
5k views
How to use p4merge as the merge/diff tool for Mercurial?
Does anyone know how to setup Mercurial to use p4merge as the merge/diff tool on OS X 10.5?
18
votes
6answers
7k views
Where to install Android SDK on Mac OS X?
This question was asked by Prembo back in February, but nobody answered. Maybe now someone has a recommendation? Thanks.
18
votes
8answers
440 views
Complex Combinatorial Algorithms
So Wendy's advertises their sandwich as having 256 combinations - meaning there are 8 ingredients you can either have to not have (although I wonder why they would count the combination where you ...
18
votes
5answers
6k views
How do you configure WCF known types programmatically?
My client/server application is using WCF for communication, which has been great. However one shortcoming of the current architecture is that I must use known type configuration for certain ...
18
votes
5answers
10k views
log4Net config in external file does not work
We are using log4net and want to specify it's configuration in an external config file (as we have done with other sections). To do this we have changed the log4net section in the App.config to:
...
...
18
votes
13answers
2k 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 ...
17
votes
8answers
11k views
Can SpringMVC be configured to process all requests, but exclude static content directories?
If I map my spring application to process all incoming requests ('/*'), then requests for static content return 404's. For example, a request for "myhost.com/css/global.css" would return a 404, even ...
17
votes
7answers
11k views
Encrypt Password in Configuration Files? (Java)
I have a program that reads server information from a configuration file and would like to encrypt the password in that configuration that can be read by my program and decrypted.
Requirments:
...
17
votes
4answers
43k views
Configuring Hibernate logging using Log4j XML config file?
I haven't been able to find any documentation on how to configure Hibernate's logging using the XML style configuration file for Log4j.
Is this even possible or do I have use a properties style ...
17
votes
18answers
757 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 ...
16
votes
1answer
8k views
How to define custom TraceListener in app.config
I have implemented a custom trace listener (derived from TextWriteTraceListener) and now I would like to set my application to use it instead of standard TextWriteTraceListener.
First I added default ...
16
votes
2answers
9k views
Spring difference in using bean id and bean name in configuration file
please tell me if is there any difference in using bean id and bean name in configuration files
16
votes
11answers
23k views
Simplest way to have a configuration file in a Windows Forms C# Application
I'm really new to .NET and I still didn't get the hang about how config files work.
Every time I search on google about it I get results about web.config, but I'm writing a windows forms application.
...
15
votes
1answer
4k views
Heroku error: “Permission denied (public key)”
I keep getting this error. I am using Mac. I generated a key and added it to heroku using
heroku config:add key="ssh-rsa blahblah=me@me.com"
But this doesn't work. I keep getting the same error. ...
15
votes
1answer
2k views
How to tell which colorscheme a Vim session currently uses
You can set the Vim color scheme by issuing
:colorscheme SCHEME_NAME
but, oddly enough, you can't get the currently used scheme by issuing
:colorscheme
as this results in "E471: Argument ...
15
votes
2answers
3k views
How to trigger XDebug for a command line PHP script?
XDebug offers the configuration directive "xdebug.profiler_enable_trigger" that allows to activate profiling by passing the GET or POST parameter "XDEBUG_PROFILE" when calling a script via HTTP. This ...
15
votes
7answers
11k views
Import Spring config file based on property in .properties file
In my Spring xml configuration I'm trying to get something like this to work:
<beans>
<import resource="${file.to.import}" />
<!-- Other bean definitions -->
</beans>
...
15
votes
8answers
3k 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 ...