Jorge Córdoba

7,005
reputation
360 views

Registered User

name Jorge Córdoba
member for 1 year
seen 4 hours ago
website
location ES
age 29
I'm a senior developer in Amper Programas inside the FIS-He development program.
22h
answered How do you make mathematical equations readable and maintainable?
22h
answered Which WINAPI function I must use to know if a file is blocked by another process?
23h
answered Best strategy for sharing a periodical task in a farm
Dec
9
answered Switching from Java to .NET from a career change point of view
Dec
6
awarded  Mortarboard
Dec
6
accepted Static vs. shared libraries for a media player
Dec
4
comment Execution-time performance of code in class created using reflection versus a ‘normal’ class.
Not really, just Chapter 4 of .NET Framework from Joe Duffy. If you have access open up that chapter and read up Assembly loading part and Inside Assembly metadata part.
Dec
4
answered Execution-time performance of code in class created using reflection versus a ‘normal’ class.
Dec
4
revised A way to catch up to modern programming techniques
deleted 1 characters in body
Dec
4
revised A way to catch up to modern programming techniques
added 270 characters in body; added 418 characters in body; added 99 characters in body
Dec
4
answered A way to catch up to modern programming techniques
Dec
3
comment Return first element in SortedList in C#
Ooops, edited... thx for the link ... it was all google smart language search fault :)
Dec
3
revised Return first element in SortedList in C#
edited body
Dec
3
answered Return first element in SortedList in C#
Dec
3
comment How to solve these problems with Asynchronous Callback>
Edited, basically I think you're actually creating the ImageViewer in the thread.
Dec
3
revised How to solve these problems with Asynchronous Callback>
added 560 characters in body
Dec
3
comment How to solve these problems with Asynchronous Callback>
I've edited the answer. Hope now it is clear... see the link provided too.
Dec
3
revised How to solve these problems with Asynchronous Callback>
added 575 characters in body; added 142 characters in body
Dec
3
answered How to solve these problems with Asynchronous Callback>
Dec
3
revised Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers?
added 232 characters in body; added 72 characters in body
Dec
3
answered Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers?
Dec
3
answered Different ways of adding to Dictionary
Dec
2
comment Why can’t nullables be declared const?
How can a primary key be null?
Dec
2
comment Why can’t nullables be declared const?
If projectId is "const" you cannot be loading anything into it from the database... in fact you can't do almost anything with it.
Dec
2
answered Why can’t nullables be declared const?
Dec
2
answered Finding Perimeter and area of a Rectangle object? (C#)
Nov
30
revised Binary encoding for low bandwidth connections?
added 2 characters in body
Nov
30
comment Binary encoding for low bandwidth connections?
Hmmm, but... again, this assumes I know in advance which data structures I'll be transfering (so EntryItem is fixed). In fact I only know an Entry item may have fields, and each field will have a type and a value (an object). We generate the XML file by reflecting on the object and getting the field type on runtime. Can protobuf-net do the same? If now, can I "convert" the xml file to a protobuffer compatible thing??
Nov
30
comment Binary encoding for low bandwidth connections?
This seems quite interesting, both in syntax and results. You won't happen to know how does it compare to Fast Infoset, would you?
Nov
30
comment Binary encoding for low bandwidth connections?
We already do :) but that's a nice suggestion ... and not that easier to implement because of data integrity.
Nov
30
comment Binary encoding for low bandwidth connections?
Not too worried about floats as almost everything is stored as decimals
Nov
30
comment Binary encoding for low bandwidth connections?
Seems quite good, either for directly using them or for extracting something useful. Do you know if they support transforming XSD to .proto files?
Nov
30
answered Delphi command line compiler - using same library path as the IDE
Nov
30
asked Binary encoding for low bandwidth connections?
Nov
26
comment Is it possible to clone a ValueType?
Yannick I susppect (and I'm just guessing) indeed i and a internally refer to the same object, if you "try" to modify i you just end up pointing to a new value type so that a still points to the old one... that would avoid a lot of wasted space in the stack
Nov
26
comment Is it possible to clone a ValueType?
I mean value types have special semmantics so that x = x + 1 results in a new value, and x holds a reference to that value. That's immutability, internally the CLR doesn't create a new item on the stack each time you just make an assignment.
Nov
26
comment Is it possible to clone a ValueType?
"Every assignment of a valuetype is by definition a clone." Wrong. Assignment does not "clone" a value type. You get a reference to the same value.
Nov
26
comment Is it possible to clone a ValueType?
No, it won't. I've tested that, the ReferenceEquals method returns true when comparing b and c.
Nov
26
answered Multiple Database Access with Delphi
Nov
24
comment Is there any circumstance in which calling EnterWriteLock on a ReaderWriterLockSlim should enter a Read lock instead?
Does it reproduce if you assert the property after entering the lock? Does it break the assertion?
Nov
24
answered Design Patterns in .NET
Nov
24
comment Creating a pointer class a bad idea? (C#)
I can't see the necessity for changing the instance instead of just updating some of the properties of the object itself, that would update ALL the reference to that given object. Anyway your solution would work and, depending on the rest of your code, it could be easier to understand.
Nov
24
comment Arrays in Generic class
Of course, but that's an advantage of generics, not array in a generic class.
Nov
24
answered Arrays in Generic class
Nov
24
answered Creating a pointer class a bad idea? (C#)
Nov
21
answered .NET strings and reference type parameters
Nov
21
accepted Good introduction to generics
Nov
20
comment C# -Threading help for beginner
Yeah, you can get it either with the Parallels extensions CTP or the c# 4.0 ... or implement it yourself
Nov
20
answered How to force multiple commands to execute in same threading timeslice?
Nov
20
answered C# -Threading help for beginner