Questions tagged [customization]

Modifying the default state of an application to suit a user's preferences or to address the unique requirements of a particular objective.

An app that supports customization may allow users to change default values, colors, or settings and persist those changes for the next time the user runs the app.

Customization can also refer to modifying configuration settings or modifying source code to make a "prepackaged" software product meet a requirement that is unique to a particular customer or environment. For example, if an app needs to fetch data from a server, the specific details of how the app should connect to the server (URL, protocol, credentials) are usually externalized in a configuration file so they can be easily customized without requiring code modifications.

4611 questions
325
votes
10 answers

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

Like many people these days I have 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 equivalent to: for(auto iv = begin(a); iv != end(a);…
ereOn
  • 53,676
  • 39
  • 161
  • 238
286
votes
24 answers

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

I have always found startup profile files of other people both useful and instructive about the language. Moreover, while I have some customization for Bash and Vim, I have nothing for R. For example, one thing I always wanted is different colors…
gappy
  • 10,095
  • 14
  • 54
  • 73
158
votes
10 answers

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 name. i.e., if my cursor was at the start of this…
serg10
  • 31,923
  • 16
  • 73
  • 94
146
votes
5 answers

How do I change the font size of Solution Explorer (in Visual Studio)

How do I change the font size used in Solution Explorer? The default font size is too small for me.
127
votes
16 answers

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

I tried looking for the .emacs file for my Windows installation for Emacs, but I 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 specific directory does it go?
Ray
  • 187,153
  • 97
  • 222
  • 204
119
votes
12 answers

Changing the default folder in Emacs

I am fairly new to Emacs and I have been trying to figure out how to change the default folder for C-x C-f on start-up. For instance when I first load Emacs and hit C-x C-f its default folder is C:\emacs\emacs-21.3\bin, but I would rather it be the…
Anton
  • 12,285
  • 20
  • 64
  • 84
106
votes
5 answers

Can I use SPACE as mapleader in VIM?

From http://items.sjbach.com/319/configuring-vim-right (2009 archive from original) I got that you were supposed to be able to use Space as the mapleader in vim. I've tried but it does not seem to work. Is there anyone who made it work? Tried: let…
Marlun
  • 1,543
  • 3
  • 12
  • 14
102
votes
2 answers

How to Add a new native class to WebWorker's context in JavaScriptCore?

I have an application that extends JavaScript via JavaScriptCore, in a webkit-gtk browser. Right now I have several classes that I add to the global context like so: void create_js(gpointer context, char* className, JSClassDefinition clasDefinition)…
94
votes
9 answers

How to add padding and margin to all Material-UI components?

I need to add padding or margin to some of Material-UI components, but could not find an easy way to do it. Can I add these properties to all components? something like this:
rostamiani
  • 2,859
  • 7
  • 38
  • 74
83
votes
3 answers

VS2012 How to turn off editor tab colouring?

I strain to read the tabs in the source code editor of Visual Studio 2012. I don't even understand what the different colors mean? They seem totally random. Black on brown or black on blue.... who choose that? So I would like to turn off the…
83
votes
12 answers

Jackson: How to add custom property to the JSON without modifying the POJO

I am developing a REST interface for my app using Jackson to serialize my POJO domain objects to JSON representation. I want to customize the serialization for some types to add additional properties to the JSON representation that do not exist in…
Alex Vayda
  • 6,154
  • 5
  • 34
  • 50
76
votes
4 answers

Android: Create a toggle button with image and no text

is it possible to create a toggle button in Android that has an image but no text? Ideally it would look like this: Ive seen similar posts where the answer was to change the background but i want to preserve the Holo Light layout and just swap the…
Eduardo
  • 6,900
  • 17
  • 77
  • 121
70
votes
4 answers

Bootstrap variable overriding with LESS

I have been investigating for the whole day as I considered it would be worthwhile spending some time to learn best practice for customizing Bootstrap. I can see that there is a friendly page available for customizing elements selectively from…
Seong Lee
  • 10,314
  • 25
  • 68
  • 106
68
votes
26 answers

How to change inside background color of UISearchBar component on iOS

I know how to remove/change UISearchBar background color around search field: [[self.searchBar.subviews objectAtIndex:0] removeFromSuperview]; self.searchBar.backgroundColor = [UIColor grayColor]; But don't know how to do this inside it like…
Borut Tomazin
  • 8,041
  • 11
  • 78
  • 91
67
votes
1 answer

Customizing Keyboard Shortcuts in MySql Workbench

Having spent a number of years working primarily with MS SQL Server (and hence SQL Server Management Studio for common tasks), I am now beginning to work with MySql. To date I have been using MySQL Workbench and am generally happy with it. I would,…
sammy34
  • 5,312
  • 5
  • 29
  • 42
1
2 3
99 100