User Pablo Marambio - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T01:04:32Z http://stackoverflow.com/feeds/user/18552 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/369248/can-strong-naming-an-assembly-be-used-to-verify-the-assembly-author 7 Can strong naming an assembly be used to verify the assembly author? Pablo Marambio 2008-12-15T18:17:07Z 2009-04-25T13:38:40Z <p>After reading the proper article in <a href="http://msdn.microsoft.com/en-us/library/wd40t7ad.aspx" rel="nofollow">MSDN</a> and related stackoverflow.com questions <a href="http://stackoverflow.com/questions/308756/checking-an-assembly-for-a-strong-name">here</a>, I finally return to the community.</p> <ol> <li>To which extent can a strong-named assembly be verified to avoid tampering?</li> <li>Is it possible to use strong-naming to verify an assembly author?</li> </ol> <p>The first question arises after reading this <a href="http://www.csharp411.com/net-assembly-faq-part-3-strong-names-and-signing/" rel="nofollow">CSharp411 article</a>, which mentions this, among other problems of using strong names:</p> <blockquote> <p>"<strong><em>Cannot Stop Full Replacement.</strong> Strong names cannot prevent a hacker from removing the strong name signature, maliciously modifying your assembly, re-signing it with his own key, and then passing off his assembly as yours.</em>"</p> </blockquote> <p>The second question intends to find the differences between strong naming and other signing schemes like, say, <a href="http://www.iss.net/security_center/advice/Countermeasures/Authentication/Authenticode/default.htm" rel="nofollow">Authenticode</a>. The same MSDN article mentioned early states:</p> <blockquote> <p>"<em>Note, however, that strong names in and of themselves do not imply a level of trust like that provided, for example, by a digital signature and supporting certificate.</em>"</p> </blockquote> <p>Am I trying to use strong-naming for much more than it was created for? Was strong-naming created just to avoid name clashes or a new kind of "GAC DLL Hell"?</p> http://stackoverflow.com/questions/373362/is-loading-a-dependency-assembly-from-the-internet-a-good-practice 1 Is loading a dependency assembly from the internet a good practice? Pablo Marambio 2008-12-17T01:06:15Z 2009-04-25T13:36:00Z <p>I know there are several ways to deploy a .net windows client application:</p> <p>There's <a href="http://msdn.microsoft.com/en-us/library/aa367449(VS.85).aspx" rel="nofollow">Windows Installer</a>, <a href="http://msdn.microsoft.com/en-us/library/t71a733d(VS.80).aspx" rel="nofollow">Click Once</a>, a simple download &amp; run, and loading the windows forms / WCF application in Internet Explorer (no to confuse the latter with WCF/E - Silverlight RIA applications)</p> <p>So... thinking about the true windows client applications --just to make it really clear: those consisting of an .exe in your filesystem,-- can loading some or all of its dependencies from the internet be a good idea?</p> <pre><code>&lt;assemblyIdentity name="MyAssembly" publicKeyToken="89a956accc8f98e98a9e954a" culture="en-US" /&gt; &lt;codeBase version="2.0.0.0" href="http://www.contoso.com/MyAssembly.dll" /&gt; &lt;!-- look here --&gt; </code></pre> <p>There are obviously some serious drawbacks: Have to be allways connected, <a href="http://msdn.microsoft.com/en-us/library/930b76w0(VS.71).aspx" rel="nofollow">CAS</a> configuration in the client (the internet dependencies would be in <a href="http://msdn.microsoft.com/en-us/library/c5tk9z76(VS.71).aspx" rel="nofollow">Internet_Zone code group</a>), not to mention the loading time.</p> <p>But I can think of several advantages, too.</p> <p>What are the issues? Has someone used this in a real project?</p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/99909#99909 36 Answer by Pablo Marambio for Favorite Visual Studio keyboard shortcuts Pablo Marambio 2008-09-19T05:36:18Z 2009-03-11T02:35:17Z <p>For me, it's nothing about auto completing code, matching parenthesis or showing some fancy tool panel. Instead, it's just about <em>letting me see the code.</em> </p> <p>With all the panels surrounding you, the area you use to actually write code becomes too small. <br /><br />In this cases, <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>Enter</kbd> comes in to the rescue and gets the code <br /><br /><strong>window in focus in full screen mode</strong>. Hit it again, and you have all the panels back ;)</p> http://stackoverflow.com/questions/600112/deploying-applicaion-in-different-locale-than-devlopment-locale/600122#600122 0 Answer by Pablo Marambio for Deploying applicaion in different locale than devlopment locale Pablo Marambio 2009-03-01T17:13:20Z 2009-03-01T17:13:20Z <p>The best solution is to specify the locale in the app.config, overriding the machine's.</p> http://stackoverflow.com/questions/100001/mvc-or-event-driven-component-oriented-web-frameworks 1 MVC or event-driven component-oriented web frameworks? Pablo Marambio 2008-09-19T06:10:16Z 2009-02-27T00:27:14Z <p>This question intends to be technology-agnostic. Which kind of web framework do you prefer, and when: <em>Pure MVC or event-driven component-oriented?</em></p> <p>Just to make the point in "technology-agnosticism", here I name a few MVC vs. component web frameworks, in diverse technologies / languages:</p> <ul> <li>Struts <strong>vs.</strong> Java Server Faces / Tapestry</li> <li>The new ASP.NET MVC <strong>vs.</strong> "classic" ASP.NET</li> <li>Cake PHP <strong>vs.</strong> PRADO</li> </ul> http://stackoverflow.com/questions/420597/would-you-use-enterpriseservices-in-a-new-enterprise-development 1 Would you use EnterpriseServices in a new enterprise development? Pablo Marambio 2009-01-07T14:55:59Z 2009-02-24T23:56:25Z <p>As you may already know, managed code (.NET apps) can make use of COM+ through <a href="http://msdn.microsoft.com/en-us/library/ms973484.aspx" rel="nofollow">EnterpriseServices</a>, making issues like <em>distributed transactions</em>, <em>resource pooling</em> and <em>synchronization</em> "simpler to program" because the solutions are provided as a supporting infrastructure to the application by COM+. </p> <p>If your application servers reside in a Windows domain, COM+ <em>"automatically makes your applications more scalable by providing thread pooling, object pooling, and just-in-time object activation. COM+ also helps protect the integrity of your data by providing transaction support, even if a transaction spans multiple databases over a network"</em> <a href="http://msdn.microsoft.com/en-us/library/ms686988(VS.85).aspx" rel="nofollow">(MS source)</a></p> <p>So, say you have to build a big application from scratch in a company that <strong>has not</strong> written COM+ components which you can reuse, so you are <strong>not</strong> tied to that technology.</p> <p>This will be a big system, but you know it could get much bigger with time. Let's say it's something like a big ERP, with distributed transactions going on all the time. Finally, let's say that the system core will reside in a Microsoft Windows domain... making the adoption of COM+ through System.EnterpriseServices (ES) a choice. You will have to make some components available to 3rd parties, and you can do so via WCF.</p> <p>So, knowing this technology is available and that your environment is compatible, would you use it?</p> <p>If the answer is no, are all the services COM+ offers, like <a href="http://msdn.microsoft.com/en-us/library/system.transactions.aspx" rel="nofollow">distributed transactions</a>, available and easy to use in a fully managed environment?</p> http://stackoverflow.com/questions/373253/how-do-you-count-the-words-in-an-array-of-strings-with-linq/373278#373278 3 Answer by Pablo Marambio for How do you count the words in an array of strings with LINQ? Pablo Marambio 2008-12-17T00:28:42Z 2008-12-17T00:28:42Z <p>I think Sum is more readable:</p> <pre><code>var list = new string[] { "1", "2", "3 4 5" }; var count = list.Sum(words =&gt; words.Split().Length); </code></pre> http://stackoverflow.com/questions/345672/fun-programming-languages/345710#345710 7 Answer by Pablo Marambio for Fun programming languages Pablo Marambio 2008-12-06T01:33:45Z 2008-12-06T01:33:45Z <p>Javascript! The king of programming languages!</p> http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257782#257782 0 Answer by Pablo Marambio for Best Web applications framework for Java? Pablo Marambio 2008-11-03T02:09:53Z 2008-11-03T02:09:53Z <p>Tapestry looks very cool... after you have made a BIG effort to install it.</p> http://stackoverflow.com/questions/257643/website-version-2-keep-in-php-or-move-to-net/257778#257778 0 Answer by Pablo Marambio for Website version 2, keep in PHP or move to .Net? Pablo Marambio 2008-11-03T02:08:00Z 2008-11-03T02:08:00Z <p>And why are you limiting yourself to these choices? Why not try Ruby on Rails? I has a built-in ORM!</p> http://stackoverflow.com/questions/206943/what-features-would-you-most-like-to-see-in-visual-studio-2010/206981#206981 2 Answer by Pablo Marambio for What features would you most like to see in Visual Studio 2010? Pablo Marambio 2008-10-16T00:15:22Z 2008-10-16T00:15:22Z <p>Dynamic language support... code completion in Iron Python and Iron Ruby, to the extent allowed by those languages, would be so cool!</p> http://stackoverflow.com/questions/205324/which-db-should-i-select-if-performance-of-postgres-is-low/205346#205346 1 Answer by Pablo Marambio for which db should i select if performance of postgres is low Pablo Marambio 2008-10-15T16:11:35Z 2008-10-15T16:11:35Z <p>First, I would make sure the optimizations are, indeed, useful. For example, if you have many indexes, sometimes adding or modifying a record can take a long time. I know there are several big projects running over PostgreSQL, so take a look at this issue.</p> http://stackoverflow.com/questions/205299/why-does-my-attempt-to-trim-strings-in-a-liststring-not-appear-to-work/205319#205319 0 Answer by Pablo Marambio for Why does my attempt to trim strings in a List<string> not appear to work? Pablo Marambio 2008-10-15T16:06:16Z 2008-10-15T16:06:16Z <p>The string instances are immutable. Anything that seems to modify one, creates a new instance instead.</p> http://stackoverflow.com/questions/205165/when-would-you-use-the-protected-internal-access-modifier 3 When would you use the "protected internal" access modifier? Pablo Marambio 2008-10-15T15:26:56Z 2008-10-15T15:44:36Z <p>As you may already know, the .NET Framework's <a href="http://msdn.microsoft.com/en-us/library/ms173121.aspx" rel="nofollow"><em>protected internal</em></a> access modifier works in a strange way: It doesn't mean the class is <em>protected</em> <strong>AND</strong> <em>internal</em>, it says the class is <em>protected</em> <strong>OR</strong> <em>internal</em>; that is, the modified class or member can be accessed from whitin the same assembly <strong>as well as</strong> from the same hierarchy.</p> <p>So, knowing this: When would you use it? Can you give an example? Is there a good, <em>illuminating</em> usage example inside .NET Base Class Library?</p> http://stackoverflow.com/questions/143947/in-memory-linq-performance 2 In-memory LINQ performance Pablo Marambio 2008-09-27T16:29:07Z 2008-09-27T17:34:26Z <p>More than about LINQ to [insert your favorite provider here], this question is about searching or filtering in-memory collections. </p> <p>I know LINQ (or searching/filtering extension methods) works in objects implementing <code>IEnumerable</code> or <code>IEnumerable&lt;T&gt;</code>. The question is: <em>because of the nature of enumeration, is every query complexity at least <strong>O(n)</strong>?</em></p> <p>For example:</p> <pre><code>var result = list.FirstOrDefault(o =&gt; o.something &gt; n); </code></pre> <p>In this case, every algorithm will take at least <strong>O(n)</strong> unless <code>list</code> is ordered with respect to <code>'something'</code>, in which case the search should take <strong>O(log(n))</strong>: it should be a binary search. However, If I understand correctly, this query will be resolved through enumeration, so it should take <strong>O(n)</strong>, even in <code>list</code> was previously ordered.</p> <ul> <li>Is there something I can do to solve a query in <strong>O(log(n))</strong>?</li> <li>If I want performance, should I use Array.Sort and Array.BinarySearch?</li> </ul> http://stackoverflow.com/questions/130965/what-is-the-worst-code-youve-ever-written/143827#143827 3 Answer by Pablo Marambio for What is the worst code you've ever written? Pablo Marambio 2008-09-27T15:36:06Z 2008-09-27T15:36:06Z <p>Obviously you folks don't know there's a whole art in writing obfuscated code! </p> <ul> <li>There's even an international contest running for more than 20 years or so! To introduce yourselves to the darks arts of obfuscation and be delighted with the most impressive code you have ever seen, try this: <a href="http://www0.us.ioccc.org/years.html" rel="nofollow">International Obfuscated C Code Contest</a></li> <li>Now, if you'd like to keep your jobs writing useful programs <strong>BUT</strong> in some <em>delicate</em> unmaintainable manner (so you can never be fired because the day you are out the systems are gone), try this: <a href="http://mindprod.com/jgloss/unmain.html" rel="nofollow">Writing Unmaintainable Code</a></li> </ul> http://stackoverflow.com/questions/143760/what-books-should-i-read-to-have-an-undergraduate-education-in-computer-science/143783#143783 0 Answer by Pablo Marambio for What books should I read to have an undergraduate education in Computer Science? Pablo Marambio 2008-09-27T15:12:37Z 2008-09-27T15:12:37Z <p>I don't know how is it in the US, but in my country we study discrete mathematics and an introduction to graph theory before formal languages and automata.</p> <p>Also, I don't see any book covering computer networks... why don't you try Andrew Tanenbaum's <a href="http://books.google.cl/books?id=Pd-z64SJRBAC&amp;dq=computer+networks&amp;pg=PP1&amp;ots=RBONHq-Yhx&amp;sig=5pBT20nKE0wgY6GEM8t9An79HP4&amp;hl=es&amp;sa=X&amp;oi=book_result&amp;resnum=4&amp;ct=result" rel="nofollow">Computer Networks</a>?</p> http://stackoverflow.com/questions/142614/traceroute-and-ping-in-c/142617#142617 0 Answer by Pablo Marambio for TraceRoute and Ping in C# Pablo Marambio 2008-09-27T00:30:52Z 2008-09-27T00:30:52Z <p>I would start looking for them in the System.Net namespace</p> http://stackoverflow.com/questions/142470/what-are-the-main-differences-between-the-popular-web-frameworks/142589#142589 1 Answer by Pablo Marambio for What are the main differences between the popular web frameworks? Pablo Marambio 2008-09-27T00:19:41Z 2008-09-27T00:19:41Z <p>Related question: <a href="http://stackoverflow.com/questions/100001/mvc-or-event-driven-component-oriented-web-frameworks">MVC or Event Driven - Component Oriented web frameworks?</a></p> http://stackoverflow.com/questions/140750/is-it-possible-to-compile-net-il-code-to-machine-code/140781#140781 0 Answer by Pablo Marambio for Is it possible to compile .NET IL code to machine code? Pablo Marambio 2008-09-26T17:24:21Z 2008-09-26T20:21:51Z <p>I think you should not: That's the task of the JIT compiler. </p> <p>However, you could use ClickOnce or Windows Installer to deploy it so that the missing framework isn't such a big problem: you could tell the installer to download the Framework and install it.</p> http://stackoverflow.com/questions/140733/why-should-i-upgrade-from-sql2000-to-sql2005/140760#140760 1 Answer by Pablo Marambio for Why should I upgrade from SQL2000 to SQL2005? Pablo Marambio 2008-09-26T17:20:53Z 2008-09-26T17:20:53Z <p>Pagination without (manually) creating temporary tables is a basic, but huge improvement. </p> <p>However, if you are then going to drag &amp; drop some GridViews in your ASP.NET app directly from the data table, you'd be paging in the app...</p> http://stackoverflow.com/questions/140627/session-variables-and-web-services/140672#140672 1 Answer by Pablo Marambio for Session Variables and Web Services Pablo Marambio 2008-09-26T16:56:31Z 2008-09-26T16:56:31Z <p>You should avoid increasing the complexity of the service layer adding session variables. As someone previously pointed out, think of the web services as isolated methods that take all what is needed to perform the task from their argument list.</p> http://stackoverflow.com/questions/140329/how-can-i-redirect-to-a-page-when-the-user-session-expires/140413#140413 2 Answer by Pablo Marambio for How can I redirect to a page when the user session expires? Pablo Marambio 2008-09-26T16:04:41Z 2008-09-26T16:53:06Z <p>The other way is to tell the browser to redirect itself (via javascript) after a certain amount of time... but that can always be deactivated by the user.</p> http://stackoverflow.com/questions/139926/regular-expression-to-match-common-sql-syntax/140077#140077 5 Answer by Pablo Marambio for Regular expression to match common SQL syntax? Pablo Marambio 2008-09-26T15:04:30Z 2008-09-26T15:04:30Z <p>Regular expressions can match languages only a finite state automaton can parse, which is very limited, whereas SQL is a syntax. It can be demonstrated you can't validate SQL with a regex. So, you can stop trying.</p> http://stackoverflow.com/questions/600112/deploying-applicaion-in-different-locale-than-devlopment-locale/600122#600122 Comment by Pablo Marambio on Deploying applicaion in different locale than devlopment locale Pablo Marambio 2009-03-01T17:20:12Z 2009-03-01T17:20:12Z well... you have a point. Ups! http://stackoverflow.com/questions/100001/mvc-or-event-driven-component-oriented-web-frameworks/100234#100234 Comment by Pablo Marambio on MVC or event-driven component-oriented web frameworks? Pablo Marambio 2009-03-01T17:06:58Z 2009-03-01T17:06:58Z (...) typically with a direct connection to the database &lt;-- I guess you are thinking about DataProviders in ASP.NET, huh? Yeah, they tend to disorganize the development. Either you use them everywhere, or you don't use them at all. http://stackoverflow.com/questions/479390/microsoft-reporting-vs-xml-xslt/479473#479473 Comment by Pablo Marambio on Microsoft.Reporting.* vs XML/XSLT Pablo Marambio 2009-02-02T12:40:14Z 2009-02-02T12:40:14Z Is is less fun though? Haha nice. http://stackoverflow.com/questions/369248/can-strong-naming-an-assembly-be-used-to-verify-the-assembly-author/369477#369477 Comment by Pablo Marambio on Can strong naming an assembly be used to verify the assembly author? Pablo Marambio 2008-12-16T13:45:41Z 2008-12-16T13:45:41Z Thanks! Excelent example. Which kinds of tampering would be overlooked /bypassed by this check? http://stackoverflow.com/questions/369248/can-strong-naming-an-assembly-be-used-to-verify-the-assembly-author/369268#369268 Comment by Pablo Marambio on Can strong naming an assembly be used to verify the assembly author? Pablo Marambio 2008-12-15T19:15:17Z 2008-12-15T19:15:17Z But the verification that checks whether the public key is the one you know is valid, has to be made mannualy. Isn't it? http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271435#271435 Comment by Pablo Marambio on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) Pablo Marambio 2008-11-08T22:30:18Z 2008-11-08T22:30:18Z converting to string to then convert to something else? yuck... http://stackoverflow.com/questions/58640/great-programming-quotes/60036#60036 Comment by Pablo Marambio on Great programming quotes Pablo Marambio 2008-10-16T19:05:48Z 2008-10-16T19:05:48Z Like the ability of some OS to eat up your machine's memory! http://stackoverflow.com/questions/58640/great-programming-quotes/61738#61738 Comment by Pablo Marambio on Great programming quotes Pablo Marambio 2008-10-16T19:02:44Z 2008-10-16T19:02:44Z False, the ability to talk to that interface is written in the BIOS http://stackoverflow.com/questions/58640/great-programming-quotes/58672#58672 Comment by Pablo Marambio on Great programming quotes Pablo Marambio 2008-10-16T18:46:53Z 2008-10-16T18:46:53Z The three numbers should have been 1, 0, and 1/0 ;) http://stackoverflow.com/questions/209015/self-documenting-code/209022#209022 Comment by Pablo Marambio on Self-documenting code Pablo Marambio 2008-10-16T18:37:13Z 2008-10-16T18:37:13Z hmmm... how is it this post has 57 votes and the writer only 253 reputation? Think I don't yet understand the voting system... http://stackoverflow.com/questions/209686/passing-list-to-sql-stored-procedure/209711#209711 Comment by Pablo Marambio on Passing List<> to SQL Stored Procedure Pablo Marambio 2008-10-16T18:33:19Z 2008-10-16T18:33:19Z Is that really going to save you from concatenation? Do you know if the method was implemented using StringBuilder? http://stackoverflow.com/questions/206943/what-features-would-you-most-like-to-see-in-visual-studio-2010/207868#207868 Comment by Pablo Marambio on What features would you most like to see in Visual Studio 2010? Pablo Marambio 2008-10-16T14:55:48Z 2008-10-16T14:55:48Z 0_o It already does that! http://stackoverflow.com/questions/205165/when-would-you-use-the-protected-internal-access-modifier Comment by Pablo Marambio on When would you use the "protected internal" access modifier? Pablo Marambio 2008-10-15T15:51:18Z 2008-10-15T15:51:18Z It's what you imagine when you first read it. I think anyone might guess the same way. http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187121#187121 Comment by Pablo Marambio on What is the single task in your development activity you would like to see automated? Pablo Marambio 2008-10-09T17:20:08Z 2008-10-09T17:20:08Z TFS can also do this http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182256#182256 Comment by Pablo Marambio on What are some funny loading statements to keep users amused? Pablo Marambio 2008-10-09T17:14:40Z 2008-10-09T17:14:40Z &quot;... please make sure you don't find the question&quot;