All Questions
7
votes
13answers
169 views
Why Re-throw Exceptions?
I've seen the following code many times:
try
{
... // some code
}
catch (Exception ex)
{
... // Do something
throw new CustomException(ex);
// or
// throw;
…
16
votes
46answers
882 views
What was the biggest lesson you learned in your career as an IT professional?
Reminiscing on your career as an IT professional, what was the biggest lesson you learned?
[If you can accompany your answer with an story, anecdote, link to a website, article o …
10
votes
18answers
209 views
Good Secure Backups for Home Users
What is a good, secure, method to do backups?
Not for businesses who can spend big bucks on a solution, but people who do research & development at home and cannot afford to l …
0
votes
7answers
69 views
Which CSS tag creates a box like this with title?
I want to create a box like this with title:
Can any one please let me know if there is a default CSS tag to do this? Or do I need to create my custom style?
0
votes
4answers
104 views
Why is ENUM better then INT
I just ran a "PROCEDURE ANALYSE ( )" on one of my tables. And I have this column that is of type INT and it only ever contains values from 0 to 12 (category IDs).
And MySQL said th …
37
votes
284answers
2,824 views
What was your first home computer?
What was your first home computer? The one that made you "fall in love" with programming.
2
votes
4answers
53 views
Is there a function in python to split a string without ignoring the spaces?
Is there a function in python to split a string without ignoring the spaces in the resulting list e.g
s="This is the string i want to split".split()
gives me this
…
1
vote
8answers
87 views
Getting user name/password of the logged in user in Windows
Hello all,
Is there any API to get the currently logged in user's name and password in Windows?
Thank you in advance.
120
votes
275answers
11,867 views
What do you use to keep notes as a developer?
Where as a developer do like to you keep your code snippets, links, checklists, final solutions to problems etc?
I've fooled with Google Notebook, MS Onenote, TreePad, textfiles …
2
votes
2answers
76 views
iPhone development on Windows
Is there a way to develop iPhone applications on Windows? I really don't want to get yet another machine.
There is a project on http://code.google.com/p/winchain/wiki/HowToUse …



