User Jorge C&#243;rdoba - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:37:22Z http://stackoverflow.com/feeds/user/2695 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1846587/execution-time-performance-of-code-in-class-created-using-reflection-versus-a-no/1846593#1846593 1 Answer by Jorge Córdoba for Execution-time performance of code in class created using reflection versus a 'normal' class. Jorge Córdoba 2009-12-04T12:16:48Z 2009-12-04T12:16:48Z <p>Yes, once loaded the performance is the same.</p> <p>The performance penalty of reflection is bound to the reading of the metadata from the assembly but the execution time will be exactly the same. That is, once the instance has been created and you have a reference to it, it will behave as any other class you have (including JIT compiling and everything).</p> http://stackoverflow.com/questions/1846221/a-way-to-catch-up-to-modern-programming-techniques/1846237#1846237 9 Answer by Jorge Córdoba for A way to catch up to modern programming techniques Jorge Córdoba 2009-12-04T10:57:28Z 2009-12-04T11:11:59Z <p>Read developers blog. Try to keep a fair amount of resources in your feed reader and go through them every day (or so). Just pick up the things you like.</p> <p>Most coders write their opinions, their view, and so on. You can learn A LOT by just reading what others do and filtering what you like or find interesting and what you don't. Books are helpful to, but, with 23 years of experience and just wanting to be up to date... I'd recommend blogs...</p> <p>Some blogs I read:</p> <ul> <li><a href="http://www.codinghorror.com/blog/" rel="nofollow">Coding Horror</a></li> <li><a href="http://weblogs.asp.net/yuanjian/default.aspx" rel="nofollow">Good Idea</a></li> <li><a href="http://blogs.msdn.com/kirillosenkov/default.aspx" rel="nofollow">Kirill Osenkov</a></li> <li><a href="http://www.joelonsoftware.com/" rel="nofollow">Joel on software</a></li> <li><a href="http://msmvps.com/blogs/jon%5Fskeet/default.aspx" rel="nofollow">Jon Skeet</a></li> <li><a href="http://www.bluebytesoftware.com/blog/" rel="nofollow">Joe Duffy</a></li> <li><a href="http://winprogger.com/" rel="nofollow">Byte Bytes</a></li> </ul> <p>Stackoverflow is a great resource too. Not just for finding answers to your problems but also for <strong>reading answers to other problems</strong>. Seriously, I've found myself quoting some answer from stackoverflow a lot of times lately... or applying something I've seen here.</p> <p>For what is worth, being up to date with the current tendencies (like TDD or Aspect Oriented Programming) is like being up to date with the world itself. You get up in the morning, and read the newspaper, maybe just the headlines and then something specific, for about 5 or 10 minutes. Then you read the articles you find interesting but you're somewhat conscious about the most important things that are happening. This is the same, but those blogs (and some others) are your newspaper for the programming world.</p> http://stackoverflow.com/questions/1840551/return-first-element-in-sortedlist-in-c/1840556#1840556 4 Answer by Jorge Córdoba for Return first element in SortedList in C# Jorge Córdoba 2009-12-03T15:20:47Z 2009-12-03T16:14:41Z <p>Use <a href="http://msdn.microsoft.com/en-us/library/system.collections.sortedlist.getbyindex%28VS.80%29.aspx" rel="nofollow">GetByIndex</a></p> <pre><code>if (list.Count &gt; 0) return list.GetByIndex(0); </code></pre> http://stackoverflow.com/questions/1838961/how-to-solve-these-problems-with-asynchronous-callback/1839047#1839047 1 Answer by Jorge Córdoba for How to solve these problems with Asynchronous Callback> Jorge Córdoba 2009-12-03T10:29:38Z 2009-12-03T15:15:22Z <p>You should substitute the delegates with a consistent hierarchy with the common methods you need.</p> <pre><code>AsyncCallbackClass caller = (AlgoDelegate)asycResult.AsyncState; Image img = caller.DoCallBack(iAsyncResult); </code></pre> <p>then you have a hierarchy with:</p> <pre><code>class AsyncCallback1 : AsyncCallbackClass { Image DoCallBack(IAsyncResult result) { // Call specific callback with specific parameters } } class AsyncCallback2 : AsyncCallbackClass { Image DoCallBack(IAsyncResult result) { // Call specific callback with specific parameters } } </code></pre> <p>Basically you'll be constructing your callbacks as a hierarchy of classes so that the "signature" of the main method is the same (a method that takes an IAsyncResult) and returns an image, but the way each "delegate" (which is now a full class) implements the call is unique for each implementation.</p> <p>Take a look at <a href="http://sourcemaking.com/refactoring/replace-delegation-with-inheritance" rel="nofollow">Replace Delegate with inheritance</a>.</p> <p><strong>Edit:</strong> From the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.invokerequired.aspx" rel="nofollow">msdn page</a>. </p> <blockquote> <p>true if the control's Handle was created on a different thread than the calling thread (indicating that you must make calls to the control through an invoke method); otherwise, false.</p> </blockquote> <p>I assume you're creating the ImageBox in the ImageViewer, and the ImageViewer is being created in the callback so, by definition, the ImageBox has been created by the same thread and therefore does not need to be invoked.</p> http://stackoverflow.com/questions/1838458/intel-has-just-unveiled-a-new-48-core-cpu-what-will-this-move-to-many-cores-impl/1838542#1838542 2 Answer by Jorge Córdoba for Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers? Jorge Córdoba 2009-12-03T08:43:01Z 2009-12-03T08:48:55Z <p>The ideal situation would be for it to not mean anything at all for the 90% of the programmers.</p> <p>As with almost everything, we should have a programming paradigm supported with one or several programming languages that hide the complexities of multitasking from the usual programmer. It's quite difficult to program anything with threads, more if you have to use 20 o 30 to get the program to really use up the CPU.</p> <p>There are several proposals like Parallels Extensions, <a href="http://msdn.microsoft.com/en-us/devlabs/dd795202.aspx" rel="nofollow">Microsoft Axum</a> or <a href="http://en.wikipedia.org/wiki/Erlang%5F%28programming%5Flanguage%29" rel="nofollow">Erlang</a> to start with, specially Erlang has a long story of successes over the years.</p> http://stackoverflow.com/questions/1838476/different-ways-of-adding-to-dictionary/1838483#1838483 0 Answer by Jorge Córdoba for Different ways of adding to Dictionary Jorge Córdoba 2009-12-03T08:29:45Z 2009-12-03T08:29:45Z <p>Given the, most than probable similarities in performance, use whatever feel more correct and readable to the piece of code you're using.</p> <p>I feel an operation that describes an addition, being the presence of the key already a really rare exception is best represented with the add. Semantically it makes more sense.</p> <p>The <code>dict[key] = value</code> represents better a substitution. If I see that code I half expect the key to already be in the dictionary anyway.</p> http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const/1833644#1833644 3 Answer by Jorge Córdoba for Why can't nullables be declared const? Jorge Córdoba 2009-12-02T15:30:41Z 2009-12-02T15:30:41Z <p>You're basically saying:</p> <blockquote> <p>I have a class with a projectId field that may or may not have a value, but that in fact NEVER has a value, it's is always undefined.</p> </blockquote> <p>From a logical point of view... the declaration itself makes no sense.</p> http://stackoverflow.com/questions/1831301/finding-perimeter-and-area-of-a-rectangle-object-c/1831473#1831473 0 Answer by Jorge Córdoba for Finding Perimeter and area of a Rectangle object? (C#) Jorge Córdoba 2009-12-02T08:34:49Z 2009-12-02T08:34:49Z <p>If you look at your class, your wasting more time in the constructor of the class than you'll ever lose to calculate the area and perimeter. Why do you store lines? Points are way more convenient:</p> <pre><code>class Rectangle { public Point bottomLeft { get; set; } public Point topRight { get; set; } public int? area; public int? perimeter; public Rectangle() : this(new Line(new Point(), new Point())) { } public Rectangle(Line diaganol) { bottomLeft = diagonal.StartPoint; topRight = diagonal.EndPoint; } public int Area() { if (area == null) { area = Math.Abs(diagonal.StartPoint.X - diagonal.EndPoint.X) * Math.Abs(diagonal.StartPoint.Y - diagonal.EndPoint.Y); } return (int)area; } public int Perimeter() { if (perimeter == null) { perimeter = Math.Abs(diagonal.StartPoint.X - diagonal.EndPoint.X) * 2 + Math.Abs(diagonal.StartPoint.Y - diagonal.EndPoint.Y) * 2; } return (int)perimeter; } } </code></pre> http://stackoverflow.com/questions/1704347/suggestions-for-an-open-source-final-degree-project 26 Suggestions for an open source Final Degree Project Jorge Córdoba 2009-11-09T22:25:32Z 2009-12-02T01:56:12Z <p><strong>Note:</strong> I'm not completely sure if this question really belongs to StackOverflow so feel free to vote for closing if you think not.</p> <p>In Spain we have to undertake a final project when we end the computer science degree. The project must not be trivial and can relate to any computer field from Software Engineering to Computer Architecture, include code or not or whatever.</p> <p>The thing is I'm reasonably good at solving problems but completely lousy finding them, that is, if someone tells me "solve this" no problem but I'm unable to imagine a problem by myself.</p> <p>I work doing proprietary software using proprietary development tools with little use of open source components so I thought "ok, what would be useful to the open source community that isn't already there"... and I simply have no idea.</p> <p>Any suggestions? Anything would be welcome. Although I prefer c# or php I won't be reluctant to learn something new if I must.</p> <p>Due to the comment, the university is: <a href="http://www.fi.upm.es/" rel="nofollow">Facultad de Informática. Universidad Politécnica de Madrid.</a></p> <p>Thanks everyone for the answers. Although I'm not completely decided (I don't want to rush into any project) I really liked the idea of the ROBOCODE project, altough it wouldn't be really useful in the traditional way, it sounds like a LOOOT of fun. I appreciate all the suggestions anyway.</p> http://stackoverflow.com/questions/1612797/string-concatenation-vs-string-builder-performance 1 String concatenation vs String Builder. Performance Jorge Córdoba 2009-10-23T11:22:07Z 2009-12-01T15:08:50Z <p>I have a situation where I need to concatenate several string to form an id of a class. Basically I'm just looping in a list to get the ToString values of the objects and then concatenating them.</p> <pre><code>foreach (MyObject o in myList) result += o.ToString(); </code></pre> <p>The list is NOT expected to have more than 5 elements (although it could but that's a very, very marginal case) and usually will have from 1 to 3 elements, being common for it to just have one or two.</p> <p>What would be more performance, keeping the concatenation or using an StringBuilder?</p> <pre><code>StringBuilder bld = new StringBuilder() foreach (MyObject o in myList) bld.Append(o.ToString()); </code></pre> <p>I'm unsure if creating the StringBuilder will take more time than standard concatenation for the most usual case.</p> <p>This is lazy, items on the list do not change once created so the id is lazily constructed once when called.</p> <p>As a side note... Should I use a fixed array instead of a List? Would I get any performance or memory improvement if I do? (List is only used as an IEnumerable anyway)</p> <p>A more general view of the question could be, how many strings are enough to stop concatenating and start building?</p> <p>Should I even bother to test case the scenario?</p> <pre><code>if (myList.Count &gt; 4) ConcatWithStringBuilder(myList); </code></pre> http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections 1 Binary encoding for low bandwidth connections? Jorge Córdoba 2009-11-30T16:21:58Z 2009-11-30T17:29:55Z <p>In my application I have a simple XML formatted file containing structured data. Each data entry has a data type and a value. Something like</p> <pre><code>&lt;entry&gt; &lt;field type="integer"&gt;5265&lt;/field&gt; &lt;field type="float"&gt;34.23&lt;/field&gt; &lt;field type="string"&gt;Jorge&lt;/field&gt; &lt;/entry&gt; </code></pre> <p>Now, this formatting allow us to have the data in a human readable form in order to check for various values, as well as performing transformation and reading of the file easily for interoperability.</p> <p>The problem is we have a very low bandwidth connection (about 1000 bps, yeah, thats bits per second) so XML is no exactly the best format to transmit the data. I'm looking for ways to encode the xml file into a binary equivalent that its more suitable for transmission.</p> <p><strong>Do you know of any good tutorial on the matter?</strong></p> <p>Additionally we compress the data before sending (simple GZIP) so I'm a little concerned with losing compression ratio if I go binary. <strong>Would the size be affected (when compressing) so badly that it would be a bad idea to try to optimize it in the first place?</strong></p> <p>Note: This is not premature optimization, it's a requisite. 1000 bps is a really low bandwidth so every byte counts.</p> <p>Note2: Application is written in c# but any tutorial will do.</p> http://stackoverflow.com/questions/1820795/delphi-command-line-compiler-using-same-library-path-as-the-ide/1820834#1820834 0 Answer by Jorge Córdoba for Delphi command line compiler - using same library path as the IDE Jorge Córdoba 2009-11-30T16:26:04Z 2009-11-30T16:26:04Z <p>You should have a cfg file in your project directory called yourprojectnamedpr.cfg which actually should contain all the directories defined in the IDE for that project.</p> http://stackoverflow.com/questions/1803658/multiple-database-access-with-delphi/1803715#1803715 0 Answer by Jorge Córdoba for Multiple Database Access with Delphi Jorge Córdoba 2009-11-26T13:38:58Z 2009-11-26T13:38:58Z <p>We've had very good experiences with DBExpress for SQL and <a href="http://www.allroundautomations.nl/doaquotes.html" rel="nofollow">DOA</a> for oracle. If you're working with oracle the DOA is the way to go (is way faster than BDE and ADO).</p> http://stackoverflow.com/questions/1725827/lockfree-standard-collections-and-tutorial-or-articles 1 Lockfree standard collections and tutorial or articles. Jorge Córdoba 2009-11-12T22:21:58Z 2009-11-24T20:29:39Z <p>Does someone know of a good resource for the implementation (meaning source code) of lock-free usual data types. I'm thinking of Lists, Queues and so on?</p> <p>Locking implementations are extremely easy to find but I can't find examples of lock free algorithms and how to exactly does CAS work and how to use it to implement those structures.</p> http://stackoverflow.com/questions/1789591/design-patterns-in-net/1789602#1789602 0 Answer by Jorge Córdoba for Design Patterns in .NET Jorge Córdoba 2009-11-24T11:55:29Z 2009-11-24T11:55:29Z <p>Indeed there is:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321130022" rel="nofollow">Addison Wesley: .NET Patterns: Architecture, Design and Process</a></p> http://stackoverflow.com/questions/1787880/arrays-in-generic-class/1788499#1788499 0 Answer by Jorge Córdoba for Arrays in Generic class Jorge Córdoba 2009-11-24T07:47:18Z 2009-11-24T07:47:18Z <p>There is nothing special about using arrays in generic vs using them in any other non generic classes. The pros (memory take, direct access by index, etc) and the cons (insertion price, growth price) are the same.</p> <p>Internally the CLR transforms any generic into a concrete type representation so about using generic arrays there's no difference vs standar typed arrays.</p> http://stackoverflow.com/questions/1788418/creating-a-pointer-class-a-bad-idea-c/1788485#1788485 0 Answer by Jorge Córdoba for Creating a pointer class a bad idea? (C#) Jorge Córdoba 2009-11-24T07:43:17Z 2009-11-24T07:43:17Z <p>No, I can't see no GC traps and your solution seems allright although a little odd. What do you need the pointer for? What you're really looking for is a reference, as long as you change the properties of the referenced object all references will be updated too.</p> <p>If you want to change the <strong>object instance itself</strong> (which might be the case), I thinks your solution seems about right.</p> http://stackoverflow.com/questions/1739142/from-a-management-pov-how-much-is-a-code-review-worth 8 From a Management POV: How much is a code review worth? Jorge Córdoba 2009-11-15T22:46:39Z 2009-11-23T20:26:36Z <p>It's obvious to me that code reviews (peer reviews) improve the quality of the generated code.</p> <p>I've worked hand to hand in some code with some of my coworkers and, specially with some of them, code was cleaner and a lot better. Reviewing other people code is not the same thing. You're not familiar with the code, you haven't made the vast majority of the design decisions and it can be quite frustrating until you really understand what's going on... even for the best written (non trivial) code.</p> <p>I tend to always say that coding, no matter how fun it is, is part of a business for money so my question is: Is it really worth it? I would have two developers just to get a level of excellence that might as well be achieved by a little more time with just one of them. Have you found it useful anytime?</p> <p><strong>Note:</strong> Altough I'm mostly a developer, I ask this from the manager point of view, from the "resource" (as in you're all just numbers) point of view :P</p> http://stackoverflow.com/questions/1776256/net-strings-and-reference-type-parameters/1776320#1776320 0 Answer by Jorge Córdoba for .NET strings and reference type parameters Jorge Córdoba 2009-11-21T18:35:09Z 2009-11-21T18:35:09Z <p>It doesn't matter that string are immutable at all, you are missing a ref parameter in the AppendBar function.</p> <pre><code>public void AppendBar(ref String x) { x = x + "Bar"; } </code></pre> <p>The logic is the same, if your AppendFoo was</p> <pre><code>public void AppendFoo(StringBuilder x) { x = new StringBuilder(); x.Append("Foo"); } </code></pre> <p>it would not work either... if you want to change the value of the reference, you need to declare the x var as ref.</p> http://stackoverflow.com/questions/1765510/how-to-force-multiple-commands-to-execute-in-same-threading-timeslice/1770253#1770253 0 Answer by Jorge Córdoba for How to force multiple commands to execute in same threading timeslice? Jorge Córdoba 2009-11-20T12:51:09Z 2009-11-20T12:51:09Z <p>You can't and it's logical that you can't. The best you can do is avoid any other thread from disrupting the state between those two actions (as have already been said).</p> <p>Here is why you can't:</p> <p>Imagine there was an block that told the operating system to never thread switch while you're on that block. That would be technically possible but will lead to starvation everywhere.</p> <p>You might thing your threads are the only one being used but that's an unwise assumption. There's the garbage collector, there are the async operations that works with threadpool threads, an external reference, such as a COM object could span its own thread (in your memory space) so that noone could progress while you're at it.</p> <p>Imagine you make a very long operation in your HookOperation method. It involves a lot of non leaky operations but, as the Garbage Collector can't take over to free your resources, you end up without any memory left. Or imagine you call a COM object that uses multithreading to handle your request... but it can't start the new threads (well it can start them but they never get to run) and then joins them waiting for them to finish before coming back... and therefore you join on yourself, never returning!!.</p> http://stackoverflow.com/questions/1770167/c-threading-help-for-beginner/1770200#1770200 1 Answer by Jorge Córdoba for C# -Threading help for beginner Jorge Córdoba 2009-11-20T12:36:54Z 2009-11-20T12:36:54Z <p>You should implement a ThredSafe Queue (or use the one that comes with Parallels extensions).</p> <p>Threads have the problem of sharing information so, even if theoretically your solution would be seen as a perfect parallel scenario, the reality is you can't just let the threads access freely to the shared data, because when you do, bad things happen.</p> <p>Instead you can use a synchronization mechanism, in this case a <a href="http://msdn.microsoft.com/en-us/library/dd267265%28VS.100%29.aspx" rel="nofollow">ConcurrentQueue</a>. That way you'll have this:</p> <pre><code>ConcurrentQueue&lt;string&gt; queueStrings; ConcurrentQueue&lt;string&gt; queueFile; </code></pre> <p>Thread1 inserts strings into the queueStrings queue.</p> <p>Thread2 reads strings from the queueString, process them, and then inserts them into the queueFile queue.</p> <p>Finally, Thread3 reads the processed strings from queueFile and write them into the file.</p> http://stackoverflow.com/questions/1769662/ask-the-user-or-try-not-to-bother-him 0 Ask the user or try not to bother him? Jorge Córdoba 2009-11-20T10:41:57Z 2009-11-20T11:24:14Z <p>I have an application that might receive a net request for data from another computer. The data can be grouped into several categories so that filtering can be made upon it.</p> <p>In this situation two things can happen:</p> <ol> <li>I give the user the ability to filter the information he wants to send (thus reducing bandwidth and providing the user with a powerful feature)</li> <li>Try not to bother the user with this so that the use of the application remains as simple as possible and decide beforehand what information will be send.</li> </ol> <p>Basically is the old debate between Google UI and "your app UI". The second option is too simple but it limits the user ability to decide exactly the data he wants to send, the second introduce a complexity to the user that might be unneeded.</p> <p>What alternative do you thing is better?</p> http://stackoverflow.com/questions/1769274/keeping-a-thread-alive-in-a-c-application/1769307#1769307 0 Answer by Jorge Córdoba for Keeping a thread alive in a C# application Jorge Córdoba 2009-11-20T09:24:54Z 2009-11-20T09:30:17Z <p>You have several problems with your code. First your Start() method should do an loop. If it doesn't it will execute once and then exit, hence finishing the thread.</p> <p>You main application just starts the threads and then exits, hence when the code reaches the closing bracket in your application it simply ends. You have to wait for the threads to end before exiting your Main method. </p> <p>In addition, the whole process can be tricky. First, Timers execute in the main thread by means of an interruption and a window message to the window message loop, that you don't have since this is a console application, by the time the timer event raises your application will surely be finished. <a href="http://stackoverflow.com/questions/186084/how-do-you-add-a-timer-to-a-c-console-application">Here</a> you can see how to use a timer in a console application (note that it doesn't need to be created in a separate thread). Note that the delegate is called from a thread pool thread, thus avoiding your creation in runner "two".</p> <p>Finally, take into account that you'll have to keep your main application running until something happens to make it quit. That is, you'll have to setup a loop on your Main to allow your application to wait for something to happen, be it user input, network messages or whatever... basically you'll be waiting for the "quit" command.</p> http://stackoverflow.com/questions/1764943/c-indexer-at-its-meaningful-application/1764986#1764986 4 Answer by Jorge Córdoba for C# - Indexer at its meaningful application Jorge Córdoba 2009-11-19T17:14:35Z 2009-11-19T17:14:35Z <p>You have several examples in the generic collections of the framework itself. Dictionary is a pretty good example:</p> <pre><code>Dictionary&lt;string, User&gt; Users; Users["Jorge"].ResetPassword(); </code></pre> <p>That would be much elegant and simple than</p> <pre><code>Users.GetElementByKey("Jorge").ResetPassword(); </code></pre> http://stackoverflow.com/questions/1764435/database-design-for-a-survey/1764474#1764474 0 Answer by Jorge Córdoba for Database design for a survey Jorge Córdoba 2009-11-19T16:11:46Z 2009-11-19T16:11:46Z <p>Given the proper index your second solution is normalized and good for a traditional relational database system.</p> <p>I don't know how huge is huge but it should hold without problem a couple million answers.</p> http://stackoverflow.com/questions/1654533/intelligent-file-search-for-windows-that-can-ignore-whitespace-and-search-in-code/1764372#1764372 0 Answer by Jorge Córdoba for Intelligent file search for windows that can ignore whitespace and search in code? Jorge Córdoba 2009-11-19T16:01:37Z 2009-11-19T16:01:37Z <p>Take a look at <a href="http://code.google.com/intl/es-ES/apis/desktop/docs/queryapi.html" rel="nofollow">Google Desktop API</a>, it has very powerful set of methods to do what you're looking for.</p> <p>Of course it requires you to have the Google Desktop installed.</p> <p>After reviewing it a little, it provides some functionality but not that specific as what you require.</p> http://stackoverflow.com/questions/1763613/convert-comma-separated-string-of-ints-to-int-array/1763628#1763628 0 Answer by Jorge Córdoba for Convert comma separated string of ints to int array Jorge Córdoba 2009-11-19T14:22:18Z 2009-11-19T14:22:18Z <p>I think is good enough. It's clear, it lazy so it will be fast (except maybe the first case when you split the string).</p> http://stackoverflow.com/questions/1763502/will-jon-skeets-book-c-in-depth-help-me-understand-this-code-better/1763531#1763531 3 Answer by Jorge Córdoba for Will Jon Skeet's Book, C# In Depth Help Me Understand This Code Better? Jorge Córdoba 2009-11-19T14:09:55Z 2009-11-19T14:09:55Z <p>Jon books it's quite good and it covers the Func delegate as well as many other topics. It will undoubtedly help you understand any code better, specially advanced code, about a better book... Jon's book is kind of an advanced book, even when it was not specially intended as so, so if you're a beginner I'll recommend you go for a more "basics" book. </p> http://stackoverflow.com/questions/1762418/process-vs-thread/1762572#1762572 3 Answer by Jorge Córdoba for Process vs Thread Jorge Córdoba 2009-11-19T11:10:03Z 2009-11-19T11:10:03Z <p>From the <a href="http://en.wikipedia.org/wiki/Thread%5F%28computer%5Fscience%29#Threads%5Fcompared%5Fwith%5Fprocesses" rel="nofollow">wikipedia</a> (I think that would make a really good answer for the interviewer :P)</p> <blockquote> <p>Threads differ from traditional multitasking operating system processes in that:</p> <ul> <li>processes are typically independent, while threads exist as subsets of a process</li> <li>processes carry considerable state information, whereas multiple threads within a process share state as well as memory and other resources</li> <li>processes have separate address spaces, whereas threads share their address space</li> <li>processes interact only through system-provided inter-process communication mechanisms.</li> <li>Context switching between threads in the same process is typically faster than context switching between processes.</li> </ul> </blockquote> http://stackoverflow.com/questions/1761913/creating-object-instances-globally/1761938#1761938 1 Answer by Jorge Córdoba for Creating object instances globally Jorge Córdoba 2009-11-19T09:17:07Z 2009-11-19T09:17:07Z <p>The problem you're getting has nothing to do with the way you declare your "globals". It's a Dispatch interface error telling you the type you're passing is not what the interop class is expecting, that is, the call to Open is probably wrong. According to <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.documents.open%28office.11%29.aspx" rel="nofollow">this reference</a> it should be passed by reference (so a literal string is not valid).</p> http://stackoverflow.com/questions/1846587/execution-time-performance-of-code-in-class-created-using-reflection-versus-a-no/1846593#1846593 Comment by Jorge Córdoba on Execution-time performance of code in class created using reflection versus a 'normal' class. Jorge Córdoba 2009-12-04T12:31:59Z 2009-12-04T12:31:59Z 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. http://stackoverflow.com/questions/1840551/return-first-element-in-sortedlist-in-c/1840556#1840556 Comment by Jorge Córdoba on Return first element in SortedList in C# Jorge Córdoba 2009-12-03T16:15:17Z 2009-12-03T16:15:17Z Ooops, edited... thx for the link ... it was all google smart language search fault :) http://stackoverflow.com/questions/1838961/how-to-solve-these-problems-with-asynchronous-callback/1839047#1839047 Comment by Jorge Córdoba on How to solve these problems with Asynchronous Callback> Jorge Córdoba 2009-12-03T15:15:56Z 2009-12-03T15:15:56Z Edited, basically I think you're actually creating the ImageViewer in the thread. http://stackoverflow.com/questions/1838961/how-to-solve-these-problems-with-asynchronous-callback/1839047#1839047 Comment by Jorge Córdoba on How to solve these problems with Asynchronous Callback> Jorge Córdoba 2009-12-03T11:56:54Z 2009-12-03T11:56:54Z I've edited the answer. Hope now it is clear... see the link provided too. http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const/1833644#1833644 Comment by Jorge Córdoba on Why can't nullables be declared const? Jorge Córdoba 2009-12-02T15:52:01Z 2009-12-02T15:52:01Z How can a primary key be null? http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const/1833644#1833644 Comment by Jorge Córdoba on Why can't nullables be declared const? Jorge Córdoba 2009-12-02T15:42:45Z 2009-12-02T15:42:45Z If projectId is &quot;const&quot; you cannot be loading anything into it from the database... in fact you can't do almost anything with it. http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections/1820960#1820960 Comment by Jorge Córdoba on Binary encoding for low bandwidth connections? Jorge Córdoba 2009-11-30T16:57:11Z 2009-11-30T16:57:11Z 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 &quot;convert&quot; the xml file to a protobuffer compatible thing?? http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections/1820960#1820960 Comment by Jorge Córdoba on Binary encoding for low bandwidth connections? Jorge Córdoba 2009-11-30T16:53:44Z 2009-11-30T16:53:44Z This seems quite interesting, both in syntax and results. You won't happen to know how does it compare to Fast Infoset, would you? http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections/1820972#1820972 Comment by Jorge Córdoba on Binary encoding for low bandwidth connections? Jorge Córdoba 2009-11-30T16:52:08Z 2009-11-30T16:52:08Z We already do :) but that's a nice suggestion ... and not that easier to implement because of data integrity. http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections/1820840#1820840 Comment by Jorge Córdoba on Binary encoding for low bandwidth connections? Jorge Córdoba 2009-11-30T16:40:25Z 2009-11-30T16:40:25Z Entries do not follow a logical sequence. I can't assume any logical ordering. http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections/1820850#1820850 Comment by Jorge Córdoba on Binary encoding for low bandwidth connections? Jorge Córdoba 2009-11-30T16:38:35Z 2009-11-30T16:38:35Z Not too worried about floats as almost everything is stored as decimals http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections/1820846#1820846 Comment by Jorge Córdoba on Binary encoding for low bandwidth connections? Jorge Córdoba 2009-11-30T16:33:54Z 2009-11-30T16:33:54Z Seems quite good, either for directly using them or for extracting something useful. Do you know if they support transforming XSD to .proto files? http://stackoverflow.com/questions/1803831/is-it-possible-to-clone-a-valuetype/1803846#1803846 Comment by Jorge Córdoba on Is it possible to clone a ValueType? Jorge Córdoba 2009-11-26T14:50:52Z 2009-11-26T14:50:52Z Yannick I susppect (and I'm just guessing) indeed i and a internally refer to the same object, if you &quot;try&quot; 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 http://stackoverflow.com/questions/1803831/is-it-possible-to-clone-a-valuetype/1803846#1803846 Comment by Jorge Córdoba on Is it possible to clone a ValueType? Jorge Córdoba 2009-11-26T14:48:54Z 2009-11-26T14:48:54Z 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. http://stackoverflow.com/questions/1803831/is-it-possible-to-clone-a-valuetype/1803846#1803846 Comment by Jorge Córdoba on Is it possible to clone a ValueType? Jorge Córdoba 2009-11-26T14:29:46Z 2009-11-26T14:29:46Z &quot;Every assignment of a valuetype is by definition a clone.&quot; Wrong. Assignment does not &quot;clone&quot; a value type. You get a reference to the same value.