Trap

2,588
Reputation
369 views

Registered User

Name Trap
Member for 1 year
Seen Nov 26 at 11:35
Website
Location Madrid, Spain
Age 34
I'm a software developer working for a videogame company.
Nov
25
comment Best practices: throwing exceptions from properties
Another scenario where it's totally valid to throw exceptions from within getters is when an object is making use of class invariants to validate its internal state, which need to be checked whenever a public access is made, no matter it's a method or a property
Nov
24
comment How can you tell if a person is a programmer?
-1 for the loop starting at 1
Nov
20
answered How to share constant values in .net namespaces?
Nov
19
revised Adding functionality by adding new interfaces instead of extending existing ones
added 459 characters in body; edited body
Nov
19
revised Adding functionality by adding new interfaces instead of extending existing ones
deleted 3 characters in body
Nov
19
revised Adding functionality by adding new interfaces instead of extending existing ones
added 12 characters in body
Nov
19
asked Adding functionality by adding new interfaces instead of extending existing ones
Nov
18
comment C# string Parsing to variable types
+1: Much simpler and elegant than the previous answer.
Nov
11
awarded  Notable Question
Nov
3
awarded  Favorite Question
Oct
17
awarded  Nice Answer
Oct
16
comment What’s Your Biggest Visual Studio 2008 Annoyance?
I'd rather pay for VS + R# than using Eclipse again in my life.
Oct
13
comment Most horrifying line of code you have ever seen?
123456789012345 lol :)
Oct
12
comment Most horrifying line of code you have ever seen?
omg lol! he could have been used a signed char, what a waste.
Oct
12
revised Concurrency issues while accessing data via reflection in C#
deleted 25 characters in body
Oct
11
revised Concurrency issues while accessing data via reflection in C#
edited body; edited title
Oct
11
asked Concurrency issues while accessing data via reflection in C#
Oct
11
comment Is OOP & completely avoiding implementation inheritance possible?
Seriously, I fail to see how a truck should inherit from a car :)
Oct
11
comment Is OOP & completely avoiding implementation inheritance possible?
I for one don't like to call it "interface inheritance" but "interface implementation". That's one thing I really like from the Java language, two different concepts named accordingly.
Oct
5
awarded  Popular Question
Oct
4
asked In WPF, how can I determine whether a control is visible to the user?
Sep
16
awarded  Yearling
Aug
16
comment What is your best programmer joke?
I just love this one :)
Aug
5
awarded  
Aug
3
asked Is it really necessary to include a text description when throwing a exception?
Aug
3
awarded  Enlightened
Jul
24
revised Connecting thousands of clients to a Jabber server through a single connection
edited tags
Jul
24
asked Connecting thousands of clients to a Jabber server through a single connection
Jul
23
comment What is the best API/framework/platform you ever worked with?
It may sound silly, but I've noticed that a lot of people just don't like the idea of C# and .NET being more and more powerful every day, specially the C++ and Java die-hard fans.
Jul
22
answered anti-if campaign
Jul
22
revised C# Library for easy dynamic reflection
added 254 characters in body
Jul
22
comment C# Library for easy dynamic reflection
Can you describe some of these 'hard reflection tasks' ?
Jul
22
answered C# Library for easy dynamic reflection
Jul
15
awarded  Nice Question
Jul
15
asked Should a programmer really care about how many and/or how often objects are created in .NET?
Jul
12
comment How can I get addicted to programming?
+1 This has to be the best answer so far.
Jun
29
comment .NET Multiple Class Library in One Library
Why don't you just distribute the two DLLs? This is done automatically in the process of deploying your application. This way you could update them by newer releases with ease.
Jun
28
comment Restarting a thread in .NET (using C#)
This answer is more a workaround than a real answer. You don't even explain why he gets an error. Groo got it right.
Jun
27
comment Need help naming a class which represents a value and its linear variation.
After thinking a bit about it I think this is the perfect solution for my needs, thanks.
Jun
27
comment Need help naming a class which represents a value and its linear variation.
Well, I don't want clients of this class to assume it's either a point or a sequence. I want it to have a more abstract name (but not as loose as FloatPair)
Jun
27
comment Need help naming a class which represents a value and its linear variation.
Agree. IMO, correct naming in general has to be one of the most difficult tasks for a programmer. Finding the correct name means full understanding of both the problem and the solution.
Jun
27
comment Need help naming a class which represents a value and its linear variation.
Sorry for the silly question but, why call it 'function' if it just represents the data that will be used by the function?
Jun
27
comment Need help naming a class which represents a value and its linear variation.
+1 I liked the link to the mathematical concept behind. I just need a 'cool' and easy name for it :)
Jun
27
asked Need help naming a class which represents a value and its linear variation.
Jun
20
comment Programming Riddle: Counting down without subtracting.
Btw you could get rid of that 'else'
Jun
20
comment Programming Riddle: Counting down without subtracting.
What a clever solution! +1
Jun
20
comment Programming Riddle: Counting down without subtracting.
This is the solution I thought of first :)
Jun
19
comment Problem with serialization
A race condition? Why?
Jun
16
awarded  Notable Question
Jun
16
comment why iterator methods can’t take either ‘ref’ or ‘out’ parameters?
A very interesting reading, thanks.