Nazadus

461
Reputation
170 views

Registered User

Name Nazadus
Member for 1 year
Seen Nov 18 at 22:42
Website
Location Houston, TX
Age 26
Jack of all trades, master of none. I do Linux, Windows, a a little Mac. C#, C, Java, PHP, and others. Also a gamer.
Oct
12
awarded  Good Answer
Oct
12
accepted Creating a updater
Oct
7
comment can I reset auto_increment field in mySql?
In addition, truncate will be significantly faster than a delete.
Sep
25
comment Crypto, hashes and password questions, total noob?
Actually, there are hash dictionaries which store common passwords and such. So given the salt, a dictionary, and a poorly chosen password -- you can acquire that password. This is why it's good to use a salt and enforce password constraints (letters, numbers, etc).
Sep
19
awarded  Yearling
Sep
10
comment Which University has the most respected Computer Science degree?
How is a CS degree not about programming?
Sep
10
answered How do you let others trust your code and use it?
Sep
10
comment who runs subsonicproject.com?
I'm glad you put a Wiki up, the video tut's sucked only because they weren't searchable. I was once looking for the video where you talked about a Visual Studio theme... never could find it again, I gave up. Same thing with other items. I'm also the guy who wrote the WinForms thing (last year?) and never could get communication from you about updating it or pretty much anything.
Sep
10
comment Best pratice to save application settings in Windows application
@thenonhacker: Or use Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
Sep
3
answered SQL server 2005 Connection Error: Cannot generate SSPI context
Aug
11
comment Managing LINQ to SQL .dbml model complexity
Blog seems down.
Aug
10
comment How do I add to a specific column in Listview item?
Wow, very nice implementation. +1
Aug
10
answered How do I add to a specific column in Listview item?
Aug
8
comment Untar, ungz, gz, tar - how do you remember all the useful options?
Jeremy, the real problem is you may not always know the proper vocabulary. As such, it's easy to get confused and find similar options and have them not work. Then, you have to place (some) of them in proper order. This is non-trivial for someone migrating away from Windows. Even more-so if they didn't know scripting in Windows.
Aug
5
comment Linq not properly generating view by not allowing nulls
That is the primary key for the ThemeObject table. We are consistant in the name scheme (a very big push on my party): <tablename>ID are always the primary keys.
Aug
5
asked Linq not properly generating view by not allowing nulls
Aug
3
comment XML for configuration files, why?
avakar, you're idea works for simple settings but I would argue that XML is better because it's more expandable. Say, for example, you may have a list of objects with the same name (say, a list of directories) -- would you simply just call the same value many times over? append a number? What I'm getting at is that XML is a standard that can be followed easily.
Jul
30
comment A way to prevent Windows Update from restarting the computer?
This would be a good candidate question for the Beta Super User area.
Jul
30
answered Creating a updater
Jul
27
comment Assigning int x = ‘abc’ ;
+1 for knowing if it was legal in ISO standards.
Jul
27
comment Biggest performance improvement you’ve had with the smallest change?
@Jacbon: SuspendLayout() will stop it from painting. ResumeLayout() will cause it to start again. On some controls, however, this doesn't help much. Telerik controls were horrid in certain WinForm circumstances like this. 45+ seconds to load a form when with normal .NET controls it loaded in 5 seconds.
Jul
22
answered Updating an application without closing it
Jul
21
comment C#: Is there an “Optional” keyword or alike in C#?
You are missing a " on the first FooBar(123").
Jul
19
comment ReSharper Code Cleanup/Reformat Code feature vs Versioning Control Systems
What I recommend in these situations is doing things in two parts. In one sweep you clean up the code and the in the second you make your changes. Two different commit messages. This way it's easy to undo what you did and know what to change with your fixes. Committing to too many things in a multiple commits is a good practice, in my opinion. Lets others know the what and why's much easier.
Jul
18
comment Visual Studio stomping on Linq Stored Procedures
Ee gad. I knew there was a reason for those partial classes. And yet it still never hit me. Thanks much!
Jul
18
asked Visual Studio stomping on Linq Stored Procedures
Jul
15
comment What is the best free iso mounting software?
I like this over Daemon tools because it works and doesn't come with non-related software I'm not interested in (yes, you can uncheck it but still...; unless you get the older version). It also feels more configurable.
Jul
14
revised For vs Foreach loop in C#
Adding updated information. Using new method for calculating time and now maxing out the size of an int.
Jul
14
answered For vs Foreach loop in C#
Jul
13
answered Why won’t my progress bar work?
Jul
13
comment Why won’t my progress bar work?
Please add updates to your post and not in separate answer posts.
Jul
13
comment C# Shortest Way to Check for Null and Assign Another Value if Not
@ ck & Steven: It's arguable if it adds something. Personally, I add '== false' and '== true' to every comparison to prevent accidents. It's easy to skip a '!' or think you saw one. One could easily make an argument that is increases clarity and readability.
Jul
11
answered Why did you learn C?
Jul
11
answered Password Character not working on System.Windows.Forms.TextBox
Jul
9
answered How can I turn these LINQ joins into LEFT OUTER joins?
Jul
8
answered How do You convince developers to pay their “taxes”?
Jul
8
comment Is there a .NET equivalent to C’s atoi function?
I would argue if you're going to take that path then you should just use regular expressions.
Jul
7
answered Volunteer for a potential employer?
Jul
7
comment What C# knowledge should I have?
Should also tag this as subjective and consider a community wiki. Also, I'd be willing to bet the interviewer was just trying to figure out what you knew versus what you didn't know as opposed to expecting you to know them off the top of your head. Just a guess though.
Jul
7
awarded  Good Answer
Jul
7
comment What programming practice that you once liked have you since changed your mind about?
@ wuub: I would argue that with proper naming, you shouldn't need to prefix anything.
Jul
6
awarded  Nice Answer
Jul
6
answered What programming practice that you once liked have you since changed your mind about?
Jul
6
comment Stored Procedure and XML
I was stupid and only recently realized you weren't using LINQ. You can use .ToString() as I edited above to get what you need.
Jul
6
revised Stored Procedure and XML
added 110 characters in body; deleted 300 characters in body
Jul
6
comment Stored Procedure and XML
I added how I call it in code, since I noticed it was different than yours. I don't know if that would cause an errors though... I'm also using System.Xml.Linq for the XElements, if that helps.
Jul
6
revised Stored Procedure and XML
Adding showing how to call it in code.
Jul
6
answered Stored Procedure and XML
Jul
6
awarded  
Jul
4
comment Maximum number of threads in a .NET app?
I might say 1-4 threads for a desktop because you may have one GUI thread, one data worker for the GUI thread, one background refreshing thread for refreshing cached data, and an extra thread to handle something else like communications.