Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
16answers
15k views

How to find good looking font color if background color is known?

There seem to be so many color wheel, color picker, and color matcher web apps out there, where you give one color and the they'll find a couple of other colors that will create a harmonic layout when ...
12
votes
21answers
2k views

How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?

One of the window dialog of a software I'm working on looks a bit like this : (original screen-shot copied from this coding horror post, other examples available on this SO question) The thing is ...
7
votes
2answers
87 views

Recommended font(s) for displaying unicode characters?

For anyone that has developed a customer-facing Java Swing application that supports multiple languages, which font(s) did you find best displayed the characters for all languages?
6
votes
6answers
330 views

iPhone graphic design advice for developers

I'm a developer who is making an app without a graphic designer for the first time. I am competent at making user interfaces that fits conventions and the Apple Human Interface Guidelines, but when it ...
6
votes
3answers
421 views

Visually improving emacs

Hey all, I'm looking for a more visually appealing emacs. Is there anything I can do to make it look more aesthetically appealing or more up to date? I understand that its not how it looks but how it ...
5
votes
13answers
688 views

What is the best way to use whitespace while programming? [closed]

I'm fairly new to programming and from learning I have seen different ways of formatting code, comments, etc; and have been recommended on different techniques. I mostly program in C#, C++, and Java ...
4
votes
3answers
211 views

Prolog, working my way through some examples

I'm working through some Prolog tutorials (nothing better to do and I found out earlier this week I quite like programming, so I'm working through some paradigms) and got to an exercise asking me to ...
3
votes
3answers
299 views

Long constructor initialization lists

How do you deal with them? I have some classes (usually classes that hold stats etc.) with some 20+ variable members, and the initialization lists end up very long, extending beyond the page width if ...
3
votes
5answers
350 views

Retyping password to confirm…necessary or excessive?

Simple question...I've noticed several large sites (Facebook, Twitter, etc) have ditched the idea of requiring new registrants to confirm their new password by typing it again. Balancing usability ...
3
votes
2answers
214 views

Aesthetically pleasing GUI components

I want to make my GUI components aesthetically pleasing. Is there any particular ratio I should use between a component's width and height that would make it look especially pleasing?
2
votes
2answers
221 views

Problem with aesthetics in ggplot2

I am trying to do some analysis of the recent MLB draft with some ggplots in R selection <- draft[c("Team","Division","Position")] head(selection) Team Division Position 1 pit NL Central ...
2
votes
9answers
345 views

Aesthetic question about iterating over a vector in reverse direction

I need to iterate over a vector from the end to the beginnig. The "correct" way is for(std::vector<SomeT>::reverse_iterator rit = v.rbegin(); rit != v.rend(); ++rit) { //do Something } ...
2
votes
9answers
158 views

Choosing colour schemes

How do you choose your colour schemes for your applications and/or web designs? Is it a gut instinct thing or can logic be applied here too? I have looked at some colour theory but my combinations ...
1
vote
6answers
171 views

How to refactor this simple code to avoid code duplication?

I am solving the following simple problem(on one of OnlineJugde sites which is in Russian, so I won't give a link here:). It is easier to state the problem via an example than definition. Input: 10 ...
1
vote
3answers
1k views

Ruby (Rails) #inject on hashes - good style?

Inside the Rails code, people tend to use the Enumerable#inject method to create hashes, like this: somme_enum.inject({}) do |hash, element| hash[element.foo] = element.bar hash end While this ...
1
vote
3answers
632 views

Is there a way to make a Google Web Toolkit (GWT) Button look like a HTML Hyperlink?

I plan on appending some comments onto a text, to do that, first, I need the concerned text to act like a button for me to launch a popup, which in turn shows the comment. For that to happen, I need ...
0
votes
2answers
15 views

Output code from Ruby on Rails block without closing ruby tags

Ok this may seem stupid and I have googled extensively using various different keywords and terms, attempted a lot of various different methods and tried to my very last breadth and cannot seem to ...
0
votes
1answer
22 views

display vertical lines and horizontal lines on plots

I'm using Highcharts to create scatter plots. The problem is that the scatter plots seem to default to having background (i.e. not part of the data, just for scale) lines either parallel to the ...
0
votes
4answers
70 views

Tips for gracefully loading a web page?

I have a web page that has a lot of content that is hidden/shown/styled when the page is in various states using jQuery/javascript. I am running into an issue where on the initial load of the page, ...
0
votes
0answers
18 views

changing colors of frames in java ME

I am developing an java me application. I want to change the default colors of the frames to green from the default light blue. How do I do that?
0
votes
1answer
57 views

What's the better approach in changing the model's property value in controller

Which approach is more preferrable when changing just a single value in model? Aesthetically-speaking and performance-wise. Looks clean(albeit with the overhead of pushing the entire model again to ...
0
votes
2answers
276 views

Databound controls “flashing” as they are refreshed

It's a small thing but I was just wondering... Visual Studio 2008, C#. I have a master-detail form with databound controls. When user selects the record in a listbox, all the details are updated in ...
0
votes
2answers
336 views

What creates the three close/minimize/maximize icons in the top corner of a window? (C++)

I am making a C++/Windows/DirectX program, and when it runs in windowed mode (using d3dpp.Windowed = (!FULLSCREEN); where FULLSCREEN is defined as 0), the three icons that are usually at the top of ...