User Pablo Marambio - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T01:04:32Zhttp://stackoverflow.com/feeds/user/18552http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/369248/can-strong-naming-an-assembly-be-used-to-verify-the-assembly-author7Can strong naming an assembly be used to verify the assembly author?Pablo Marambio2008-12-15T18:17:07Z2009-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-practice1Is loading a dependency assembly from the internet a good practice?Pablo Marambio2008-12-17T01:06:15Z2009-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 & 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><assemblyIdentity
name="MyAssembly"
publicKeyToken="89a956accc8f98e98a9e954a"
culture="en-US" />
<codeBase
version="2.0.0.0"
href="http://www.contoso.com/MyAssembly.dll" /> <!-- look here -->
</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#9990936Answer by Pablo Marambio for Favorite Visual Studio keyboard shortcutsPablo Marambio2008-09-19T05:36:18Z2009-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#6001220Answer by Pablo Marambio for Deploying applicaion in different locale than devlopment localePablo Marambio2009-03-01T17:13:20Z2009-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-frameworks1MVC or event-driven component-oriented web frameworks?Pablo Marambio2008-09-19T06:10:16Z2009-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-development1Would you use EnterpriseServices in a new enterprise development?Pablo Marambio2009-01-07T14:55:59Z2009-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#3732783Answer by Pablo Marambio for How do you count the words in an array of strings with LINQ?Pablo Marambio2008-12-17T00:28:42Z2008-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 => words.Split().Length);
</code></pre>
http://stackoverflow.com/questions/345672/fun-programming-languages/345710#3457107Answer by Pablo Marambio for Fun programming languagesPablo Marambio2008-12-06T01:33:45Z2008-12-06T01:33:45Z<p>Javascript! The king of programming languages!</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257782#2577820Answer by Pablo Marambio for Best Web applications framework for Java?Pablo Marambio2008-11-03T02:09:53Z2008-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#2577780Answer by Pablo Marambio for Website version 2, keep in PHP or move to .Net?Pablo Marambio2008-11-03T02:08:00Z2008-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#2069812Answer by Pablo Marambio for What features would you most like to see in Visual Studio 2010?Pablo Marambio2008-10-16T00:15:22Z2008-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#2053461Answer by Pablo Marambio for which db should i select if performance of postgres is lowPablo Marambio2008-10-15T16:11:35Z2008-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#2053190Answer by Pablo Marambio for Why does my attempt to trim strings in a List<string> not appear to work?Pablo Marambio2008-10-15T16:06:16Z2008-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-modifier3When would you use the "protected internal" access modifier?Pablo Marambio2008-10-15T15:26:56Z2008-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-performance2In-memory LINQ performancePablo Marambio2008-09-27T16:29:07Z2008-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<T></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 => o.something > 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#1438273Answer by Pablo Marambio for What is the worst code you've ever written?Pablo Marambio2008-09-27T15:36:06Z2008-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#1437830Answer by Pablo Marambio for What books should I read to have an undergraduate education in Computer Science?Pablo Marambio2008-09-27T15:12:37Z2008-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&dq=computer+networks&pg=PP1&ots=RBONHq-Yhx&sig=5pBT20nKE0wgY6GEM8t9An79HP4&hl=es&sa=X&oi=book_result&resnum=4&ct=result" rel="nofollow">Computer Networks</a>?</p>
http://stackoverflow.com/questions/142614/traceroute-and-ping-in-c/142617#1426170Answer by Pablo Marambio for TraceRoute and Ping in C#Pablo Marambio2008-09-27T00:30:52Z2008-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#1425891Answer by Pablo Marambio for What are the main differences between the popular web frameworks?Pablo Marambio2008-09-27T00:19:41Z2008-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#1407810Answer by Pablo Marambio for Is it possible to compile .NET IL code to machine code?Pablo Marambio2008-09-26T17:24:21Z2008-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#1407601Answer by Pablo Marambio for Why should I upgrade from SQL2000 to SQL2005?Pablo Marambio2008-09-26T17:20:53Z2008-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 & 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#1406721Answer by Pablo Marambio for Session Variables and Web ServicesPablo Marambio2008-09-26T16:56:31Z2008-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#1404132Answer by Pablo Marambio for How can I redirect to a page when the user session expires?Pablo Marambio2008-09-26T16:04:41Z2008-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#1400775Answer by Pablo Marambio for Regular expression to match common SQL syntax?Pablo Marambio2008-09-26T15:04:30Z2008-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#600122Comment by Pablo Marambio on Deploying applicaion in different locale than devlopment localePablo Marambio2009-03-01T17:20:12Z2009-03-01T17:20:12Zwell... you have a point. Ups!http://stackoverflow.com/questions/100001/mvc-or-event-driven-component-oriented-web-frameworks/100234#100234Comment by Pablo Marambio on MVC or event-driven component-oriented web frameworks?Pablo Marambio2009-03-01T17:06:58Z2009-03-01T17:06:58Z(...) typically with a direct connection to the database <-- 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#479473Comment by Pablo Marambio on Microsoft.Reporting.* vs XML/XSLTPablo Marambio2009-02-02T12:40:14Z2009-02-02T12:40:14ZIs is less fun though? Haha nice.http://stackoverflow.com/questions/369248/can-strong-naming-an-assembly-be-used-to-verify-the-assembly-author/369477#369477Comment by Pablo Marambio on Can strong naming an assembly be used to verify the assembly author?Pablo Marambio2008-12-16T13:45:41Z2008-12-16T13:45:41ZThanks! 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#369268Comment by Pablo Marambio on Can strong naming an assembly be used to verify the assembly author?Pablo Marambio2008-12-15T19:15:17Z2008-12-15T19:15:17ZBut 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#271435Comment by Pablo Marambio on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)Pablo Marambio2008-11-08T22:30:18Z2008-11-08T22:30:18Zconverting to string to then convert to something else? yuck...http://stackoverflow.com/questions/58640/great-programming-quotes/60036#60036Comment by Pablo Marambio on Great programming quotesPablo Marambio2008-10-16T19:05:48Z2008-10-16T19:05:48ZLike the ability of some OS to eat up your machine's memory!http://stackoverflow.com/questions/58640/great-programming-quotes/61738#61738Comment by Pablo Marambio on Great programming quotesPablo Marambio2008-10-16T19:02:44Z2008-10-16T19:02:44ZFalse, the ability to talk to that interface is written in the BIOShttp://stackoverflow.com/questions/58640/great-programming-quotes/58672#58672Comment by Pablo Marambio on Great programming quotesPablo Marambio2008-10-16T18:46:53Z2008-10-16T18:46:53ZThe three numbers should have been 1, 0, and 1/0 ;)http://stackoverflow.com/questions/209015/self-documenting-code/209022#209022Comment by Pablo Marambio on Self-documenting codePablo Marambio2008-10-16T18:37:13Z2008-10-16T18:37:13Zhmmm... 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#209711Comment by Pablo Marambio on Passing List<> to SQL Stored ProcedurePablo Marambio2008-10-16T18:33:19Z2008-10-16T18:33:19ZIs 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#207868Comment by Pablo Marambio on What features would you most like to see in Visual Studio 2010?Pablo Marambio2008-10-16T14:55:48Z2008-10-16T14:55:48Z0_o It already does that!http://stackoverflow.com/questions/205165/when-would-you-use-the-protected-internal-access-modifierComment by Pablo Marambio on When would you use the "protected internal" access modifier?Pablo Marambio2008-10-15T15:51:18Z2008-10-15T15:51:18ZIt'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#187121Comment by Pablo Marambio on What is the single task in your development activity you would like to see automated?Pablo Marambio2008-10-09T17:20:08Z2008-10-09T17:20:08ZTFS can also do thishttp://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182256#182256Comment by Pablo Marambio on What are some funny loading statements to keep users amused?Pablo Marambio2008-10-09T17:14:40Z2008-10-09T17:14:40Z"... please make sure you don't find the question"