2
votes
2answers
18 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?
0
votes
0answers
19 views
What is the suffix called in this example: HelloWorld.exe_Url_sbgzldmathiegtnjmnawytpet03ycanv?
Hello,
I have a question about the very long random looking suffix that is appended to directories created in the AppData folder when saving user preferences from a C# .NET Window …
9
votes
6answers
447 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 specifi …
0
votes
1answer
14 views
Using NSUserDefaults from javascript webapp
Hi!
I need to store and access preferences (like colour, etc.) from a javascript webapp.. Is there some webkit access to the NSUserDefaults? (or maybe CFPreferences ?)
3
votes
2answers
61 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 pers …
1
vote
4answers
95 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 recomm …
2
votes
8answers
188 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 …
0
votes
0answers
22 views
iPhone SDK: Preferences
I wanted an entire page of text(multiple lines) in my settings similar to the one on iphone:
settings->general settings->About->Legal
I have not been able to do so. I tried enteri …
2
votes
2answers
43 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 nsIP …
0
votes
2answers
73 views
iPhone and NSUserDefaults
In my viewWillLoad: method I'm currently doing something along these lines:
- (void)viewWillAppear:(BOOL)animated {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefau …
4
votes
9answers
118 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 l …
2
votes
1answer
114 views
Howto hide a preference page in an eclipse RCP
I have an eclipse rcp and want to hide the security and help prerence pages. How can I do that?
0
votes
1answer
21 views
How to store simple name value pairs in an ldap directory
I'm creating a user repository ldap backend for a series of web applications sharing the same users. I would like to store preference information in this ldap location. This way …
0
votes
7answers
50 views
Explicit or implicit execution control statement use
I sometimes use
if (this._currentToolForeColor.HasValue)
return this._currentToolForeColor.Value;
else
throw new InvalidOperationException();
other times I use
if (this …
1
vote
1answer
36 views
Implement a RadioButtonPreference in Android
How can you implement a RadioButtonPreference in android? Just like the CheckBoxPreference.
Are there any workarounds?
