Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
147 views

Can I include sub-config files in my mercurial .hgrc?

I want to keep my main .hgrc in revision control, because I have a fair amount of customization it in, but I want to have different author names depending on which machine I'm using (work, home, ...
5
votes
3answers
455 views

Putting .vimrc in vimfiles directory

I want to keep my Vim and Emacs configurations under version control, but I don't want my entire home folder there (or rather, I do, but there should be 3 separate repositories). With Emacs it's easy; ...
4
votes
3answers
112 views

Is there a guideline for Unix config files

Most config files are ini files (format: name=value\n). Is there any documentation or an article/guideline on this matter. Or is anyone supposed to keep close to this format on good will?
4
votes
2answers
265 views

Using bash to automate dotfiles

I want to create my own automated dotfiles folder. (I'll be using git to use version control on my dotfiles, but that's irrelevant for the question) What i simply want is to symbolically link all the ...
4
votes
2answers
171 views

Getting ack to search through .htaccess or other dotfiles

Is there any way to get ack to search through a file whose filename starts with a . (e.g. .htaccess), without resorting to the --all or --unrestricted options? I've tried adding the following to my ...
3
votes
1answer
695 views

free visual editor for graph (dot) files

Is there a free (as in "cheers"), linux-compatible, interactive visual editor for graphviz or other graphs? aptitude seems to be drawing a blank. edit: "cheers" means both "beer" and "speech". ...
2
votes
2answers
91 views

Manage dotfiles inhibiting hardcoded paths?

Today I decided to manage and push my dotfiles in the repository. The motivation is to reuse the same dotfiles on multiple mac machines and ubuntu server machines. I currently have thought of this ...
2
votes
2answers
212 views

Building a graph of the structure of an XML document

I'd like to build a graph showing which tags are used as children of which other tags in a given XML document. I've written this function to get the unique set of child tags for a given tag in an ...
2
votes
1answer
199 views

What is a proper way to pass a parameter to Set-Alias in powershell?

A little background: I use PowerShell on windows xp at work and I set a bunch of useful shortcuts in Microsoft.PowerShell_profile.ps1 in My Documents, trying to emulate Mac environment inspired by ...
1
vote
4answers
71 views

Custom 404 error page

I am trying to create a custom 404 error page. The instructions that I found say to create a .htaccess empty text document when I do that Windows tells me to put a file name on it. Can someone tell ...
1
vote
1answer
66 views

Is there an rc file for msbuild?

Is there a user config file for msbuild, like a ~/.msbuildrc? (Some of the options, like CPU count and verbosity, it seems silly to set per-project -- they're things that vary by user or computer, ...
0
votes
1answer
106 views

How to make Java JFileChooser display all files including ones starting with a dot

By default JFileChooser does not display files with names starting with at dot. How to make it display all files? Here is what I have tried (did not help): JFileChooser chooser = new ...
0
votes
2answers
244 views

How to Load Emacs Configuration File in LISPBOX

I am currently using Lisp in a Box which comes pre-configured to not load the ".emacs" configuration file. I would like to change the shortcut so that Emacs does load this file by default but I ...
0
votes
3answers
162 views

How do I filter dotfiles out recursively using find in bash?

I've searched far and wide but can't seem to find the answer to this seemingly simple question! I have a directory that contains some dotfiles (they happen to be .git but the could easily be .svn and ...