9
votes
6answers
589 views
Tab Vs Space preferences in Vim
Vim is very accommodating when it comes to tab Vs. space preferences. As I understand it, the tabstop setting indicates the width of a tab character. The shiftwidth setting specifies how many columns …
5
votes
6answers
1k views
Delphi: Handling user’s font preference
I've come up with the call that gets the user's UI font preference (as
opposed to Borland's hard-coded choice of "MS Sans Serif").
Let's pretend the user's font preference is:
Segoe Print, 15pt
I …
4
votes
9answers
134 views
Should we deprecate the “Remember Me” checkbox and start assuming?
I've been thinking about this quite a bit lately, and I would like some feedback from this wonderful community. Is it safe to assume that a user wants to be remembered when they login? And if they …
4
votes
5answers
230 views
Best approach to save user preferences?
I have seen two different approaches in saving user preferences.
APPROACH 1:
Serializing them and saving in one of the column of USERS table
APPROACH 2:
Creating a separate table PREFERENCES and …
4
votes
2answers
413 views
Cocoa equivalent of .NET’s Environment.SpecialFolder for saving preferences/settings?
How do I get the reference to a folder for storing per-user-per-application settings when writing an Objective-C Cocoa app in Xcode?
In .NET I would use the Environment.SpecialFolder enumeration:
…
4
votes
2answers
276 views
PHP Frameworks - Are they solely personal preference?
I'm new to the world of PHP frameworks and, after some initial investigation, came up with the following list of popular choices:
CakePHP
CodeIgniter
Symfony
Zend
I'm trying not to repeat the …
4
votes
4answers
520 views
Save Windows Form Size
I'm developing a piece in VB.NET. Inside my primary form, I'm creating a new form to use as a dialog. I was wondering if there was a way to, upon the close of the new dialog, save it's size settings …
3
votes
2answers
99 views
SOAP or REST as a Client
I see multiple questions asking which is better, SOAP or REST from the development of the Web Service itself. However, not a lot of discussion of the pros/cons from the client perspective. If you were …
3
votes
2answers
110 views
Possible to remove my app from settings app?
Previous versions of my app have used the Settings.bundle method to have some user preferences managed in the (external) settings app. I've done away with that now, but I'd like to be able to …
3
votes
2answers
267 views
Drawing a user interface based on preferences
I want to use the built-in preference system for my xulrunner (Firefox) application. But I can't figure out how to easily drive the user interface based on preferences.
The user can specify a list …
3
votes
3answers
338 views
Encapsulating Java Preferences API
I used to have a custom preferences class for my applications. For my next hobby project i wanted to switch to the Preferences API. But the put and get functions require a default value and i do not …
2
votes
2answers
20 views
Easily select default usings for project namespaces and subamespaces
Is there an easy way in Visual Studio to assign default usings when i make a new file in a certain (sub)namespace in my project?
2
votes
8answers
200 views
More vs Less Functions
I had a little argument, and was wondering what people out there think:
In C++ (or in general), do you prefer code broken up into many shorter functions, with main() consisting of just a list of …
2
votes
4answers
155 views
Setting Vim whitespace preferences by filetype
At my work, I am required to follow the house style for indentation, which goes as follows:
2 spaces when coding html and ruby
tabs when coding javascript, with tabwidth=4 recommended
What is the …
2
votes
2answers
91 views
Correct way to restore Firefox preferences when Add-On uninstalled by external application
I have written an application suite on Windows which amongst other things installs a Firefox add-on which once run modifies the Firefox network preferences by interfacing with nsIPrefService.
The …
