The tag has no wiki summary.

learn more… | top users | synonyms

55
votes
19answers
7k views

Expert R users, what's in your .Rprofile?

This question is maybe a little too cute, but I have always found startup profile files of other people both useful and instructive about the language. Moreover, while I have some customization for ...
31
votes
1answer
294 views

How can I customize the DUnit test case classes generated by the Test Case wizard?

After poking around in the files installed by Delphi, I have found a file "C:\Program Files\Embarcadero\RAD Studio\7.0\ObjRepos\en\UnitTestFrameworks.xml" This file has a number of sections for ...
29
votes
15answers
14k views

Which Visual Studio Color Theme? [closed]

Which Visual Studio Color Theme do you use? Do you find that the darker themes work best for you? Do they help ease your eye strain? What is your favorite color theme & where can I get it?
27
votes
8answers
8k views

Where can I find my .emacs file for Emacs running on Windows?

I tried looking for the .emacs file for my Windows install for Emacs but could not find it. Does it have the same filename under Windows as in Unix? Do I have to create it myself? If so, under what ...
25
votes
11answers
3k views

Which are the GNU Emacs modes/extensions you can't live without? [closed]

I have been using GNU Emacs for as long as I can remember. The Emacs modes I use regularly are: Tramp Template Color-theme Python VCS SLIME Paredit Uniquify RCIRC Org Which ones do you use?
12
votes
2answers
160 views

How to make my custom type to work with “range-based for loops”?

Like many people these days I've been trying the different features that C+11 brings. One of my favorites is the "range-based for loops". I understand that: for(Type& v : a) { ... } Is ...
12
votes
2answers
4k views

Customizing an Admin form in Django while also using autodiscover

I want to modify a few tiny details of Django's built-in django.contrib.auth module. Specifically, I want a different form that makes username an email field (and email an alternate email address. ...
11
votes
3answers
1k views

Can I assign a global hotkey to an Adobe AIR app?

Is it possible to assign a global hotkey to a specific feature in an Adobe AIR app, i.e. the app feature responds to the hotkey whether the app is active or not (it must be running of course, but only ...
11
votes
14answers
927 views

MATLAB Environment Tweaks

How have you tweaked the MATLAB environment to better suit your needs? One tweak per answer.
10
votes
4answers
2k views

Is there a “right” way to have NSTextFieldCell draw vertically centered text?

I have an NSTableView with several text columns. By default, the dataCell for these columns is an instance of Apple's NSTextFieldCell class, which does all kinds of wonderful things, but it draws text ...
9
votes
5answers
230 views

How to create a C compiler for custom CPU?

What would be the easiest way to create a C compiler for a custom CPU, assuming of course I already have an assembler for it? Since a C compiler generates assembly, is there some way to just define ...
9
votes
3answers
262 views

Customizing Autofac's component resolution / Issue with generic co-/contravariance

First, sorry for the vague question title. I couldn't come up with a more precise one. Given these types: { TCommand : ICommand } ...
9
votes
3answers
9k views

Really cool way to create custom UITabBar for iPhone app?

I am doing a lot of researching lately about how to get a different looking with nice effects UITabBar on my iPhone app, but unfortunately I am only finding things on how to replace background color ...
9
votes
2answers
606 views

Rails: creating a custom data type / creating a shorthand

I am wondering how I could create a custom data type to use within the rake migration file. Example: if you would be creating a model, inside the migration file you can add columns. It could look like ...
9
votes
10answers
2k views

Lightweight Free PHP forum software

I've used both Vbulletin and Simple Machines in the past but I'd like something much less bloated. It must have basic features like: user levels, list of users online, avatars, bans, mods, sticky ...
8
votes
9answers
545 views

How to manage multiple clients with slightly different business rules?

We have written a software package for a particular niche industry. This package has been pretty successful, to the extent that we have signed up several different clients in the industry, who use us ...
8
votes
1answer
815 views

Customized new JUnit templates in Eclipse?

I've spent a few hours searching for this, and can't find it, so I'm asking. Why here? How can I customize Eclipse so that when I create a new JUnit test class or method, it includes different items? ...
8
votes
3answers
2k views

Is it possible to customize error display in powershell?

I find the standard Powershell display of errors (red text, multi-line display) a bit distracting. Is it possible to customize this?
7
votes
2answers
2k views

How can I change Delphi's shortcut keys?

How can I change the IDE keyboard shortcuts in Delphi? I want to change "Run" from F9 to F5 and "Add Breakpoint" from F5 to F9 I'm currently programming Delphi at home and C# at work and these 2 ...
7
votes
4answers
14k views

Android: customize application's menu (e.g background color)

What is the way (if there is a way) to customize the menu (the one triggered by the MENU button of the phone). I'm especially interested in two things: changing the background color from the ...
7
votes
1answer
2k views

how to change a stylecop rule

Does anyone know how to change the stylecop rule (sa1600 if it helps) that says that elements must be documented so that it only applies to properties and not to private members? Our ORM (DevExpress ...
7
votes
3answers
882 views

When is a Business Rules Engine used

When is a Business Rules Engine used? What is the difference between Business Rules Engines and scripting/configuration/customization
6
votes
2answers
207 views

Nested overrides in portal_skins folder

How one could override files in nested portal_skins folder? The default behavior seems to be that you need to copy whole folder structures if you want to override a single file. This is a maintenance ...
6
votes
2answers
4k views

Android Animate Rotate

I did some digging in Android code, and saw the use of in the indeterminate progress bar. after trying to create my own drawable with this tag: <animated-rotate ...
6
votes
1answer
402 views

Is Django admin difficult to customize?

I have been playing for a couple of days with Django Admin to explore it, but I am still clueless of how it can be customized in the way we need. Every time I look for any help for the customization ...
6
votes
2answers
2k views

How can I customize the title bar on JFrame?

I would like to have a customized title bar in my Java Swing desktop application. What is the best way to do that? I can use a "Swing-title bar" by using the following code in the constructor for my ...
6
votes
1answer
750 views

what's the most extensible/flexible FOSS e-commerce software? (or should I roll-my-own?)

I need to build an internal order entry and tracking system for a grocery store which requires many of the features of existing e-commerce systems, such as product catalog, customer_to_order ...
6
votes
3answers
4k views

Tutorial about how to write custom form fields in django?

Is there any good articles that explain custom form fields in django, not custom model fields? I couldn't find any through google.
6
votes
3answers
6k views

How do you extend article document class in LaTeX?

I don't really need a lot of changes to the default article document class. All I want is: redefine page margins (I want them to be the same on all pages, but different from the default values); use ...
6
votes
7answers
1k views

Make Visual Studio understand CamelCase when hitting ctrl and cursor keys

Is there a way that I can configure Visual Studio 2008 to understand CamelCase? Specifically, I'd like to be able to get ctrl + right or left cursor to take me to a subsection of a variable or type ...
6
votes
1answer
1k views

Customizing Visual Studio's Intellisense

A recent project had me working with C# again, and I noticed something I hadn't before -- C#'s Intellisense shows possible exceptions that can be thrown when calling a method Since I work mostly ...
5
votes
1answer
330 views

How can i change Android Default Home screen Code and Replace my Customize Home Screen application source code?

Here i already make one customize home screen launcher application for android. Now i want to add this application in Android Source code. And Remove Default android home screen source code from ...
5
votes
7answers
184 views

Simplest way to parameterize/configure php application | human friendly data serialization

When development time matters, all that others can help is a goal. My PHP app is now parameterized & configured with an include file that contains an array in the form: $config = array( ...
5
votes
2answers
168 views

Best practice for managing changes to 3rd party open source libraries?

On a recent project, I had to modify an open source library to address a functional deficiency. I followed the SVN best practice of creating a "vendor source" repository and made my changes there. I ...
5
votes
1answer
2k views

Change margin around plot area and title in WPF Toolkit chart

I am using the Chart control of WPF Toolkit February 2010 release. The chart takes up lots of space relative to the plot area. How do I control the margin around the plot area and title of the ...
5
votes
2answers
441 views

How to organize external tools in Visual Studio 2010?

This is how one can set them up: http://www.c-sharpcorner.com/uploadfile/rmcochran/commandpromptinstudiotoolsmenu01152008103357am/commandpromptinstudiotoolsmenu.aspx My problem is that I have got ...
5
votes
1answer
2k views

WPF Customized TabControl

I have to develop a customized tab control and decided to create it with WPF/XAML, because I planned to learn it anyway. It should look like this when it's finished: I made good progress so far, ...
5
votes
5answers
2k views

Sphinx: some good customization examples?

I've created a Sphinx document using sphinx-quickstart. Are there any good examples/tutorials about customizing the look? Specifically to modify the header and add a logo. Are there some projects ...
5
votes
1answer
2k views

How to change background of all VIEWS in Eclipse IDE?

I would like to get a dark look for Eclipse IDE (Aptana). I changed background color of code editors and other colors. But i can't figure out, how to change background color of all views ... In Window ...
5
votes
1answer
276 views

Ctrl+Tab in Visual Studio 2008

My Question: Is there a way to set up Visual Studio to use the Style of Ctrl+Tabbing so that it doesn't remember the order of tabs and just goes to the next tab or previous tab depending on the usage ...
4
votes
2answers
169 views

How to run multiple apps on the same screen in Android?

I want to customize the Android source Code in a way that it can run multiple Application on same Screen. Is that possible? Can somebody have any ideas about this, Please share. You can check out ...
4
votes
1answer
489 views

How to hide & unhide Master View Controller in SplitView Controller

I have created a new split view based project in my XCode 4.2 Then in DetailViewController.m file i have add this method - (BOOL)splitViewController: (UISplitViewController*)svc ...
4
votes
1answer
223 views

Android custom animation like airport schedule board

I want to create an animation for the text like on Airport the flight schedule board does. Dropping from top and change the text on it. Here is the image. So When I click on button the text on the ...
4
votes
2answers
100 views

RatingBar customization with each rating element of increased size

I know that I can apply my own style and swap the ratingbar star image with something else. I need a bit more complicated thing: each ratingbar element should be larger than previous. Take a look at ...
4
votes
1answer
169 views

Emacs font lock mode: provide a custom color instead of a face

On this page discussing font lock mode, an example is provided which highlights a custom pattern: (add-hook 'c-mode-hook (lambda () (font-lock-add-keywords nil ...
4
votes
1answer
1k views

How to create a new “templates” category on Xcode 4 and use my own file templates there?

I would like to start using my own templates for iOS applications. I don't want any significant changes, but simpler things like add/remove some boilerplate code add some pragma mark sections ...
4
votes
1answer
175 views

custom postfix notation, Apply / Function

I would like to set up the following custom notation in Mathematica 7. This notation is not particularly useful in itself, so please do not suggest existing alternatives, or point out that this only ...
4
votes
0answers
206 views

Guidance on customizing sitecore page editor using pipeline

I would like to provide another button beside "Save & Close" button on site Page Editor that will trigger save and publish action once pressed. I went to core and made a copy of "Save & Close" ...
4
votes
2answers
622 views

Cursor type in Emacs

What do I put in my .emacs file to change the cursor type for all frames to box?
4
votes
1answer
287 views

Visual Studio 2010 introduces “No drag and drop customization of menus and toolbars”

What went wrong with the Microsoft Visual Studio team, for them to remove the drag-and-drop functionality of menu and toolbar customizations? You now are greeted with a friendly looking dialog box ...

1 2 3 4 5 15