SDX2000

2,584
Reputation
469 views

Registered User

Name SDX2000
Member for 1 year
Seen 2 days ago
Website
Location India
Age 27

I am a software engineer by profession and an electronics engineer by education. Used to be (and still am) a hobby programmer, an electronics enthusiast/DIYer etc.

Some areas which interest me are...compiler construction, operating systems, robotics, science in general etc

Nov
26
comment Shell scripting book
What shell? What script?
Nov
22
comment How to check if an object is nullable?
Nullable.GetUnderlyingType(objType) returns null if objType is not nullable there is no need to resort to string comparisons for this. Have you read/understood the accepted answer?
Nov
22
awarded  Yearling
Nov
20
answered What are some bad programming habits to look out for and avoid?
Nov
20
accepted Windows installer technology how-to.
Nov
18
revised Windows installer technology how-to.
added 66 characters in body
Nov
18
answered Windows installer technology how-to.
Nov
17
comment Windows installer technology how-to.
Oh, please don't get me started on the documentation...my head hurts already...the MSI documentation is nothing but rubbish. I am sorry but NSIS etc seem like poorly re-invented wheels themselves...why abandon std. platforms like .net, python, ruby etc and come up with some half assed DSL?
Nov
17
asked Windows installer technology how-to.
Nov
13
comment Hidden .NET Base Class Library Classes?
Wow! Thanks....................
Nov
11
awarded  Necromancer
Nov
6
comment How to check if an object is nullable?
objType.FullName.StartsWith(typeof(Nullable<>).FullName)... What purpose does this serve?
Nov
1
comment How do Real Time Operating Systems work?
Substandard article with substandard English.
Oct
25
comment Register/Unregister COM dll verbs are not working in vista
I am not missing any keys, I was able to update the registry with the shell verb keys but I still cannot see the context menu items corresponding to register and unregister.
Oct
25
asked Register/Unregister COM dll verbs are not working in vista
Oct
21
awarded  Autobiographer
Oct
21
comment How to use the PerformanceCounter to find the bandwidth used by my appication?
Have you seen this stackoverflow.com/questions/630285/… ?
Oct
21
comment How to use the PerformanceCounter to find the bandwidth used by my appication?
What do you mean by current application?
Oct
21
comment How can I implement a Print Preview function for a C# object that doesn’t expose a PrintDocument object?
Does the Print() method (or some overload) take any arguments?
Oct
21
comment C# / .NET : when structures are better than classes?
Yeah I know..its a special case...one that you should know is nullable if you are using it! Its a struct which receives special treatment from the compiler.
Oct
20
comment Debugging a generated .NET assembly from within the application that generated it
I was talking about blogs.msdn.com/yirutang/archive/… which shows you how to debug the code using windbg.
Oct
20
comment Debugging a generated .NET assembly from within the application that generated it
Have you seen stackoverflow.com/questions/321203/… ?
Oct
20
comment C# / .NET : when structures are better than classes?
Fair enough! :)
Oct
20
comment C# / .NET : when structures are better than classes?
Abstraction en.wikipedia.org/wiki/Abstraction is a catch all phrase it includes many techniques (including encapsulation).
Oct
20
comment C# / .NET : when structures are better than classes?
I tried to remove the downvote but SO says its too late for that! Sorry about this. I will revote in the future if there are any edits made to the answer.
Oct
20
comment C# / .NET : when structures are better than classes?
Ah...ok I forgot all about the inheritance issue with structs...so you are right they are not object oriented but they still are object based en.wikipedia.org/wiki/Object-based Abstraction is still supported by way of encapsulation (private members).
Oct
20
comment C# / .NET : when structures are better than classes?
I am not sure I follow your line of thought...I am assuming you have a stuct House with a field called Street...Why is it necessary for the Street field to refer to the same instance of the Street struct? Identical street values should be good enough...There may be some limitations while (equality vs identity issues for example) using structs but IMO these do not prevent it from being OO.
Oct
20
comment C# / .NET : when structures are better than classes?
I will remove the downvote if this is corrected
Oct
20
comment C# / .NET : when structures are better than classes?
I object to the statement "After all we are talking about object-oriented programing for a reason and not structure-oriented programing." Using structs does not make it non-OO.
Oct
20
comment C# / .NET : when structures are better than classes?
@Joren thanks for the link...its a good read.
Oct
20
comment C# / .NET : when structures are better than classes?
Care to explain what nakes a struct inhertly non object oriented?
Oct
20
answered C# / .NET : when structures are better than classes?
Oct
18
comment What programs should I learn to be able to do computational modeling?
Could you be more specific about the kind of problems you intend to solve?
Oct
16
answered .NET graph library around?
Oct
14
comment Declaring a looooong single line string in C#
+1 though it may not always be a bad practice...think about the strings which are meant for the developers only and are never seen by the user (for example those used for diagnostic purposes). The (effort) overhead of maintaining them as a resource may not be worth it.
Oct
12
answered Primitive mailmerge using just delimited field names
Oct
8
comment How do you program safely outside of a managed code environment?
@Martin - In answer to your second comment, you are right its laughable indeed. I should have been more specific when I said C++ should retire now. What I meant was...it's high time now that we re-evaluate the position of C++ as a generic problem solving tool and discontinue usage in the domains which are better served by other modern languages. If you have ever worked in C# you will know that C++ is a PITA. I have been programming in C++ for the past 15 years my C++ chops are not in question here.
Oct
8
comment How do you program safely outside of a managed code environment?
@Martin - Thanks for your kind words of wisdom...popular opinion, it seems remains divided as usual for example see stackoverflow.com/questions/867114/… . There is no reason to believe either of the garbage collection mechanisms is faster/more efficient than the other without some quantitative evaluation. And just FYI my understanding of smart pointers is not as shallow as you may think...I have on some occasions written TR1/shared_ptr<T> like smart pointers and I am well aware of their strengths and weaknesses.
Oct
7
comment How do you program safely outside of a managed code environment?
IMO Smart pointers are just a stop-gap measure. Garbage collection is the real deal. I think it is well known by now that smart pointers (the ref counted variety at least and the auto_ptr<T> variety being of limited use anyways) cannot match the performance characteristics of a well tuned garbage collector. But then again this is from a person who thinks its time for C++ to retire now.
Oct
6
comment Drawing SVG in .NET/C#?
MusiGenesis and liori...thanks :)
Oct
6
comment How do we explain the result of the expression (++x)+(++x)+(++x)?
+1 For a better explanation sans jargon.
Oct
6
answered Drawing SVG in .NET/C#?
Oct
6
awarded  Popular Question
Oct
5
comment Are there any good editors for LISP programming, other than emacs?
Fantastic! Much better than using Emacs IMO.
Oct
5
revised What precautions should you take when a senior employee leaves?
corrected spelling, fixed grammar (somewhat)
Sep
28
accepted [Visual Studio] How to rebuild ALL?
Sep
28
accepted Why doesn’t visual studio register environment variables set using windows explorer?
Sep
24
revised XML parsing in Javascript
Added an alternate solution (E4X)
Sep
22
answered Why doesn’t visual studio register environment variables set using windows explorer?
Sep
22
asked Why doesn’t visual studio register environment variables set using windows explorer?