User Freddy Rios - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:24:43Z http://stackoverflow.com/feeds/user/66372 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850424/asp-net-inline-code-myboolval/1850431#1850431 4 Answer by Freddy Rios for asp.net inline code <%# MyboolVal %> Freddy Rios 2009-12-04T23:51:08Z 2009-12-04T23:51:08Z <p>Try using = instead of # in your version:</p> <pre><code>&lt;p&gt;some text &lt;%= String.Format("meeee {0}", Mybool) %&gt;&lt;/p&gt; </code></pre> <p>The # is for databinding, so in the original code there must be a call to DataBind somewhere.</p> http://stackoverflow.com/questions/1830912/how-to-load-css-on-ssl-pages/1830928#1830928 3 Answer by Freddy Rios for How to load CSS on SSL pages? Freddy Rios 2009-12-02T05:59:52Z 2009-12-04T22:37:53Z <p>There is nothing wrong with using relative paths with SSL pages, there must be something else involved.</p> <p>Have you considered any other logic you may have, an extra redirect with different URL, or anything else that could be causing it?</p> <p>PS. If you are using <a href="http://en.wikipedia.org/wiki/Google%5FChrome" rel="nofollow">Chrome</a>, hit view source and Ctrl-click on the CSS path. It should take you to what it's supposed to be pointing at.</p> http://stackoverflow.com/questions/1843170/c-api-development-exception-handling/1843206#1843206 1 Answer by Freddy Rios for C# API Development Exception handling Freddy Rios 2009-12-03T21:55:23Z 2009-12-03T21:55:23Z <p>Don't use the same exception for all.</p> <p>You need the different exception types to be able to separate one case from another. For anything that you'd let it flow up until a generic exception handler block catches it would seem k, but you are preventing any other code recovery - extra actions that operate on specific cases.</p> <p>You can wrap a set of exceptions, if those fit into a specific scenario that can be handled by the calling code. Don't forget that some framework exceptions already communicate the situation well.</p> http://stackoverflow.com/questions/1823633/high-performance-encryption-in-adobe-air-flash 0 high performance encryption in adobe air / flash Freddy Rios 2009-12-01T02:24:57Z 2009-12-03T21:51:10Z <p>When looking for encryption related classes/functions in action script / air / flash, I saw the <strong><a href="http://code.google.com/p/as3crypto/" rel="nofollow">as3crypto</a></strong> project. </p> <p>This one provides a v. nice set of options, but I am a bit concerned on what the numbers presented means when these are used to decrypt a local media file when its selected about to be played.</p> <p>I am looking for <strong>security vs. performance balance</strong>. </p> <p>For <strong>video/music</strong>, it needs to decode at a fast enough pace so the player <strong>plays it smoothly</strong> - which is something that <strong>depends on the format</strong> used, but is in all cases less than the delay of having to wait to decode the whole file.</p> <p>The hardest part comes from having to use it for <strong>flash apps</strong> as well, since afaik it needs to <strong>wait for all of it to do anything</strong>. Unless this assumption is wrong, this is where the best performance algorithm in the list in the as3crypto page seems <strong>too slow</strong> i.e. <strong>at 1.5 MB x sec, it would take 20 secs to decipher a 30 MB flash app</strong>.</p> <p>The <strong>main questions</strong> I have on this are:</p> <ul> <li>Are there any <strong>other libraries</strong> with higher performance? Anything in adobe air maybe? </li> <li>For <strong>videos/songs</strong>, what would be a good number of <strong>MB x sec for it to be playable</strong>?</li> <li>Does flash waits until loading completely a flash app before running anything of it?</li> </ul> http://stackoverflow.com/questions/1822309/is-it-reasonable-to-protect-drmd-content-client-side 0 is it reasonable to protect drm'd content client side Freddy Rios 2009-11-30T20:51:36Z 2009-12-03T21:30:33Z <p><strong>Update:</strong> this question is specifically about protecting (encipher / obfuscate) the content client side vs. doing it before transmission from the server. What are the pros / cons on going in an approach like itune's one - in which the files aren't ciphered / obfuscated before transmission.</p> <p>As I added in my note in the original question, there are contracts in place that we need to comply to (as its the case for most services that implement drm). We push for drm free, and most content providers deals are on it, but that doesn't free us of obligations already in place.</p> <p><hr></p> <p>I recently read <a href="http://www.roughlydrafted.com/RD/RDM.Tech.Q1.07/2A351C60-A4E5-4764-A083-FF8610E66A46.html" rel="nofollow">some information</a> regarding how itunes / fairplay approaches drm, and didn't expect to see the server actually serves the files without any protection.</p> <p>The quote in this <a href="http://stackoverflow.com/questions/170006/please-comment-on-this-simple-software-protection-schema/170024#170024">answer</a> seems to capture the spirit of the issue.</p> <blockquote> <p>The goal should simply be to "keep honest people honest". If we go further than this, only two things happen:</p> <ol> <li>We fight a battle we cannot win. Those who want to cheat will succeed.</li> <li>We hurt the honest users of our product by making it more difficult to use.</li> </ol> </blockquote> <p>I don't see any impact on the honest users in here, files would be tied to the user - regardless if this happens client or server side. This does gives another chance to those in 1.</p> <p>An extra bit of info: client environment is adobe air, multiple content types involved (music, video, flash apps, images).</p> <p>So, is it reasonable to do like itune's fairplay and protect the media client side.</p> <p><strong>Note:</strong> I think unbreakable DRM is an <a href="http://stackoverflow.com/questions/1734960/which-are-unsolvable-problems-in-programming-world/1816736#1816736">unsolvable problem</a> and as most looking for an answer to this, the need for it relates to it already being in a contract with content providers ... in the likes of reasonable best effort.</p> http://stackoverflow.com/questions/1796481/how-to-learn-about-formal-top-down-approach-to-software-architecture/1824489#1824489 1 Answer by Freddy Rios for How to learn about formal top-down approach to software architecture? Freddy Rios 2009-12-01T07:10:41Z 2009-12-03T20:34:29Z <p>I would challenge your assumption that reusable code needs to be written in such way.</p> <p>I have seen workplaces with systems designed with a reuse code goal, that end up reusing v. few &amp; have extra complexity all around.</p> <p>I find sticking to principles in SOLID, doing TDD, having DRY, YAGNI and KISS in mind go a long way to achieving a reasonable level of reuse.</p> <p>The operations you mentioned are perfect examples of different responsibilities that shouldn't all end in the same class: </p> <blockquote> <p>open stream to resource A', 'read record from stream', 'merge N streams', 'index set of records by field F', etc. Also, there is a lot of data conversion, as 'save stream in YAML format', 'load stream from XML format', etc.</p> </blockquote> <p>I recommend you this ebook on <a href="http://www.lostechies.com/content/pablo%5Febook.aspx" rel="nofollow">solid</a>.</p> <p>On trying to design it top down, careful on having repeated thoughts on 'what if x', 'what if y' ... as you fall too easy on adding plenty of stuff that you don't need at the end - or are not modeled in a reusable way (even if that was the reason you added it ...). </p> http://stackoverflow.com/questions/1831072/c-extension-method-to-return-random-alphabet/1831080#1831080 1 Answer by Freddy Rios for C# Extension Method to return random alphabet Freddy Rios 2009-12-02T06:50:56Z 2009-12-02T06:50:56Z <p>you can take advantage of byte code to char conversion, and use a simple:</p> <p>random.Next(0,27) to give u the next random char (sum it with the byte value of a &amp; convert to char). </p> http://stackoverflow.com/questions/1831055/c-linq-queries/1831064#1831064 2 Answer by Freddy Rios for C# Linq queries Freddy Rios 2009-12-02T06:46:24Z 2009-12-02T06:46:24Z <p>You can:</p> <pre><code>var values = new { maximum = number.Max(), minimum = number.Min(), Sum = number.Sum() }; </code></pre> <p>Note that those are 3 separate calls, like if it were linq2sql, those would cause 3 separate roundtrips. To pull it off in a single roundtrip, you could have a query that gives a single element in the <code>from x in y where somecondition select</code> ...</p> http://stackoverflow.com/questions/1831016/video-recording-without-user-interaction/1831032#1831032 0 Answer by Freddy Rios for Video recording without user interaction Freddy Rios 2009-12-02T06:34:50Z 2009-12-02T06:34:50Z <p>I'd not expect to find such access in the iPhone SDK - potential to record video without the user knowing seems too sneaky.</p> http://stackoverflow.com/questions/1830973/i-really-really-want-to-use-an-insert-nested-in-a-select/1831001#1831001 0 Answer by Freddy Rios for I really really want to use an INSERT nested in a SELECT Freddy Rios 2009-12-02T06:25:47Z 2009-12-02T06:25:47Z <p>yes, you should first get the addresses in &amp; then match to assign the ids when inserting the persons records.</p> <p>i.e. you can't do an insert in the sub query.</p> http://stackoverflow.com/questions/1830957/how-to-render-a-htm-page-into-aspx-page/1830966#1830966 1 Answer by Freddy Rios for how to render a .htm page into .aspx page Freddy Rios 2009-12-02T06:12:49Z 2009-12-02T06:19:31Z <p>If you were to just serve the original file, you could:</p> <pre><code>Response.Clear(); Response.WriteFile(localPathToHtmFile); </code></pre> <p>As you instead want to modify it, and assuming you need to stick to the full file, then you'd have to do some light parsing of it to add the script you want ran when the page is loaded in the browser. Instead of using WriteFile, you'd write the modified string to the response.</p> <p>Another option, if you can have that file only include the html inside the body, is to load it in a literal control. Then you have the regular options to send / have the intended script to be ran at page load.</p> http://stackoverflow.com/questions/1830927/how-do-i-make-a-link-that-goes-no-where/1830936#1830936 1 Answer by Freddy Rios for How do I make a link that goes no where Freddy Rios 2009-12-02T06:02:58Z 2009-12-02T06:02:58Z <p>One option would be to point to #someid - it'll move it vertical scroll to that element, but that may or not be what you want.</p> <p>Ps. you can achieve the same result with styles.</p> http://stackoverflow.com/questions/1830877/c-linq-autogenerated-number-or-index/1830887#1830887 2 Answer by Freddy Rios for C# LINQ Autogenerated number or index Freddy Rios 2009-12-02T05:45:56Z 2009-12-02T05:45:56Z <p>Try:</p> <pre><code>int optionNumber = 0; var query = from Color c in Enum.GetValues(typeof(Color)) from Vehicle v in Enum.GetValues(typeof(Vehicle)) select new { Number = optionNumber++, Color = c, Vehicle = v }; </code></pre> http://stackoverflow.com/questions/1789131/linq2sql-efficient-way-to-get-random-elements-with-weight/1829707#1829707 1 Answer by Freddy Rios for Linq2sql: efficient way to get random elements with weight? Freddy Rios 2009-12-01T23:35:38Z 2009-12-01T23:35:38Z <p>Try by using the RAND() sql function - it'll give you a 0 to 1 float.</p> <p>The downside is that I am not sure if it would cause a full table scan on the sql server side i.e. if the resulting query + execution on sql would be optimized in such a way that once you have the top n records it ignores the rest of the table.</p> http://stackoverflow.com/questions/1816534/random-playlist-algorithm/1829528#1829528 1 Answer by Freddy Rios for Random playlist algorithm Freddy Rios 2009-12-01T22:54:44Z 2009-12-01T22:54:44Z <p>I think you should stick to your current solution (the one in your edit).</p> <p>To do a re-order with no repetitions &amp; not making your code behave unreliable, you have to track what you have already used / like by keeping unused indexes or indirectly by swapping from the original list.</p> <p>I suggest to check it in the context of the working application i.e. if its of any significance vs. the memory used by other pieces of the system.</p> http://stackoverflow.com/questions/1824348/poco-objects-with-lazy-loading/1824404#1824404 2 Answer by Freddy Rios for POCO objects with lazy loading Freddy Rios 2009-12-01T06:43:41Z 2009-12-01T14:05:55Z <blockquote> <p>I don't want to get UserGroups each time I'am getting User.</p> </blockquote> <p>Then don't tie them together in the object model. It gets complex fast, the more you start doing that.</p> <p>If you are doing that to hand a single instance to the views, you can have a viewmodel with the set of info u need.</p> <p>Pay attention if you constantly end up needing the user with a set of related information, which could point to an alternate way to load all that related data. And then you get to be able to decide if you'll want to eager load it, and save those extra roundtrips that don't do any good.</p> http://stackoverflow.com/questions/1824516/books-for-an-aspiring-software-architect/1824554#1824554 1 Answer by Freddy Rios for Books for an aspiring software architect. Freddy Rios 2009-12-01T07:29:21Z 2009-12-01T07:29:21Z <p>read this <a href="http://www.lostechies.com/content/pablo%5Febook.aspx" rel="nofollow">S.O.L.I.D ebook</a>, just to make sure you have the bases of code related design well covered. </p> <p>Being involved with distributed systems you should already have plenty of the architectural stuff covered.</p> <p>On the more high level view, you should really read <a href="http://msdn.microsoft.com/en-us/library/aa479371.aspx" rel="nofollow">this article - a better path to enterprise architectures</a></p> http://stackoverflow.com/questions/1824118/what-may-cause-losing-object-at-the-other-end-of-a-pointer-in-c/1824199#1824199 0 Answer by Freddy Rios for What may cause losing object at the other end of a pointer in c++? Freddy Rios 2009-12-01T05:38:02Z 2009-12-01T05:38:02Z <p>First rule out the initial ones:</p> <ul> <li>you are initializing correctly (new instead of automatic/local variables)</li> <li>you are accessing the elements correctly (not like in the typo you posted in the question - based on your comment)</li> <li>you are using the right size</li> </ul> <p>If you go through all the normal ones and everything is k, then make sure to pay special attention to your loops / size calculations / and anything else that could be causing you to write to unintended addresses.</p> <p>It is possible to write garbage at unintended locations &amp; then get the error in unexpected places ... the worst I saw like that, was some file descriptors's variables being corrupted because of an array gone wrong right before those variables - it broke on file related functions, which seemed v. crazy.</p> http://stackoverflow.com/questions/1824087/how-do-i-factor-code-to-ease-testability/1824154#1824154 2 Answer by Freddy Rios for How do I factor code to ease testability? Freddy Rios 2009-12-01T05:26:31Z 2009-12-01T05:26:31Z <p>The option 1 is generally the right way.</p> <p>By being able to have full control of the engine you give to the car, you are able to test the car v. well.</p> <p>You can more easily test how the car behaves with all the different outputs the engine gives to the car. You can also make sure the car its making the appropriate calls to the engine.</p> <p>Having it in the constructor makes it really clear that the Car depends on an Engine to work. Use it with a dependency injection framework, and the constructor issue isn't really a problem at all.</p> http://stackoverflow.com/questions/1806586/how-to-get-google-to-understand-links-that-trigger-javascript/1822977#1822977 4 Answer by Freddy Rios for How to get Google to understand links that trigger Javascript? Freddy Rios 2009-11-30T22:50:15Z 2009-11-30T22:50:15Z <p>Don't use #, use the query string.</p> <p>So, instead of <a href="http://rapexegesis.com/lyrics/ARTIST/SONG#note-2633" rel="nofollow">http://rapexegesis.com/lyrics/ARTIST/SONG#note-2633</a>, you'd <a href="http://rapexegesis.com/lyrics/ARTIST/SONG?note=2633" rel="nofollow">http://rapexegesis.com/lyrics/ARTIST/SONG?note=2633</a></p> <p>the # is specifically meant to be a part of the Same page, using it for something else is just not right. As I understand from your question this would achieve what you want.</p> http://stackoverflow.com/questions/1692754/how-do-you-go-about-charging-for-building-a-website/1795125#1795125 24 Answer by Freddy Rios for how do you go about charging for building a website Freddy Rios 2009-11-25T06:59:52Z 2009-11-30T18:59:18Z <p>Charge a <strong>rate x hour</strong> with a <strong>weekly billing</strong> cycle (this is what I use all the time).</p> <p>From my answer to <a href="http://stackoverflow.com/questions/660483/what-are-the-most-common-problems-you-encounter-in-freelance-web-development/668979#668979">what are the most common problems you encounter in freelance web development</a></p> <blockquote> <p>poor payment structures - I do weekly cycles, I <strong>deliver weekly</strong> so I expect to be paid weekly as well. This is a fully automated thing (part of the service I use for the projects), I am unsure how this would go outside of there, but you Really want to get as close to this as you can. You will know for sure you are getting paid right from the first 7-12 days (there is a delay involved, for reviews and the like). Also if, along the way, something goes wrong economically with the client, you will find out for sure in a couple weeks, as opposed to a couple months. Of course, you try to find out sooner, but if it goes wrong you get minor impact.</p> </blockquote> <p>This means that you'll need to <strong>deliver value from the start</strong>, which is healthy. Have a conversation with your client, well focused on identifying what are the <strong>major pieces</strong> that they want to achieve and <strong>what is the best place to start</strong>. This is based both on your <strong>client's priorities</strong> &amp; your own knowledge of what it takes to do it - even if you don't know specifically how much effort it takes, you usually have an overall idea of how complex different major requirements are vs. each other.</p> <p>Explain them that the best way to proceed, is to <strong>break the problem down</strong> &amp; focus on a <strong>subset of features</strong> that'll start generating <strong>value</strong> for them. Advice them on where to focus &amp; <strong>try to keep the other features completely out of the picture</strong>.</p> <p>Form an overall idea of what'll take for the ones that'll be in the scope ... only go on detail on the stuff you'll do the first 2 weeks / which you need to estimate &amp; commit to. Use any deviation you got when going into the detail of the first weeks items, to get an idea of your overall deviation - using this adjusted overall estimate will increase (a little bit) the accuracy. </p> <p>If they'll not go for the value vs. cost of the first 2 weeks items, it'll usually be best to walk away (see the answers by others in that link above - <strong>learn to say no</strong>) ... its very likely it'd end bad because of wrong expectations by the client. Don't let them play down on the effort involved, it takes what it takes, if you still want to go for it - let them know you'll discount them x number of hrs / or x $ in the rate for the first x weeks.</p> <p>Use what you learn of the first week(s) to guide your way forward on the other weeks. Keep constant communication with your client. If you <strong>establish credibility</strong> with your client, they'll be less concerned with estimations &amp; will be more talking about what'll they get next. Make sure to <strong>raise any trouble you see asap</strong>, never wait to the end of the week for that.</p> <p>Make sure to remember you'll be estimating v. broad pieces (as few of them as possible) &amp; more detailed for just a couple weeks, <strong>we are talking hrs estimating not days</strong>.</p> http://stackoverflow.com/questions/1803313/asp-net-mvc-partially-updating-model-from-view/1821458#1821458 1 Answer by Freddy Rios for ASP.NET MVC - Partially updating model from view Freddy Rios 2009-11-30T18:18:11Z 2009-11-30T18:18:11Z <p>y, viewmodel + automapper.</p> <p>ps. a complicated model, tends to ... complicate everything - is it really worth it in your scenario?</p> http://stackoverflow.com/questions/1802689/svn-partial-branch/1821395#1821395 2 Answer by Freddy Rios for SVN partial branch Freddy Rios 2009-11-30T18:05:07Z 2009-11-30T18:05:07Z <p>afaik you can't do it with the repository structure you currently have.</p> <p>I suggest you restructure your repository, so 10 &amp; 20, 40 &amp; the other code related assets are moved under a new 1st level folder. This way you avoid this situation, and simplify being able to grab just the code related assets.</p> http://stackoverflow.com/questions/1734960/which-are-unsolvable-problems-in-programming-world/1816736#1816736 13 Answer by Freddy Rios for Which are unsolvable problems in programming world? Freddy Rios 2009-11-29T20:53:33Z 2009-11-29T20:53:33Z <p>creating an unbreakable DRM for non interactive content, where intended users still can use the content ...</p> http://stackoverflow.com/questions/1765867/asp-net-usercontrol-class-library/1784102#1784102 2 Answer by Freddy Rios for ASP.NET UserControl class library Freddy Rios 2009-11-23T16:02:39Z 2009-11-27T17:00:15Z <p><strong>Update:</strong> I was right on my hint on using the pre-compiled user control as you would an user control.</p> <p>For a step by step on how, see <a href="http://msdn.microsoft.com/en-us/library/aa479318.aspx" rel="nofollow">Turning an .ascx User Control into a Redistributable Custom Control</a></p> <p>There is no need for any .ascx files in the project where you'll use it, so this matches exactly what you were looking for.</p> <p><hr></p> <p>User Controls aren't meant to be reused across sites, use <a href="http://msdn.microsoft.com/en-us/library/zt27tfhy.aspx" rel="nofollow">custom server controls</a> instead.</p> <p>You can compose the server controls using existing controls, and set it up all so you can style through css.</p> <p>If you are still going for the user control approach, try what Bob mentioned in the answer. I haven't done it with user controls, but I would expect to be able to use the output of that approach like you would use a custom server control.</p> <pre><code>&lt;%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.CS.Controls"%&gt; ... &lt;aspSample:WelcomeLabel Text="Hello" NameForAnonymousUser="Guest" ID="WelcomeLabel1" runat="server" BackColor="Wheat" ForeColor="SaddleBrown" /&gt; </code></pre> <p>Ps. if that doesn't work, the link that he provided tells you to copy the ascx files anyway, so that wouldn't be what you were looking for i.e.try the above &amp; if not stick to custom server controls.</p> http://stackoverflow.com/questions/1763099/techniques-to-reduce-data-harvesting-from-ajax-json-services/1780799#1780799 5 Answer by Freddy Rios for Techniques to reduce data harvesting from AJAX/JSON services. Freddy Rios 2009-11-23T02:20:39Z 2009-11-27T16:49:52Z <p>First, I would like to clear on this:</p> <blockquote> <p>It seems to me that the problem is not so difficult if you had say a Flash client consuming the data. Then you could send encrypted data to the client, which would know how to decrypt it. The same method seems impossible with AJAX though, due to the open nature of the Javascrip source.</p> </blockquote> <p>It will be pretty obvious the information is being sent encrypted to the flash client &amp; it won't be that hard for the attacker to find out from your flash compiled program what's being used for this - replicate &amp; get all that data. </p> <p>If the data does happens to have the value you are thinking, you can count on the above.</p> <p><strong>If this is public information, embrace that &amp; don't combat it - instead find ways to capitalize on it.</strong></p> <p>If this is information that you are only exposing to a set of users, make sure you have the corresponding authentication / secure communication. Track usage as others have said, and have measures that act on it,</p> http://stackoverflow.com/questions/1791426/how-to-deploy-database-source-and-binary-changes-in-1-patch/1809612#1809612 1 Answer by Freddy Rios for How to deploy: database, source and binary changes in 1 patch? Freddy Rios 2009-11-27T16:22:42Z 2009-11-27T16:22:42Z <p>I don't think you'll find a fail-safe mechanism.</p> <p>I recommend that, when possible, you take into account compatibility with the current published source when making schema/data changes.</p> <p>This way you can make a v. simple tool that runs database scripts committed to a particular svn location (you don't want diff on database changes, as if you need further modifications you need different statements).</p> <p>With the above done, you can have a simple command that runs the database changes, then the binary &amp; source code changes.</p> <p>For database there is also the option of schema&amp;data comparisons tools, these could be used to compare environments &amp; make sure there isn't anything unexpected missing in the change scripts - could also generate the change scripts, but as I said you really want to make sure it won't break current source.</p> http://stackoverflow.com/questions/1746693/how-to-embed-links-in-localized-text/1780887#1780887 1 Answer by Freddy Rios for How to embed links in localized text. Freddy Rios 2009-11-23T02:55:14Z 2009-11-27T05:52:54Z <p>I have to agree with other answers - separate in 2.</p> <p>That said I would add that don't consider the 2 words separated / unrelated. Stick to a simple convention all around like: LoginMessage &amp; LoginMessageLink, corresponding to the whole text of the sentence &amp; the text of the link.</p> <p>That's neutral &amp; if that's what needed for the language the translator can have the whole sentence be the link. </p> <p>If you find yourself needing to link several times to the same page, then instead have some markers for it. Like:</p> <pre><code>English: "Please ##login## to continue." Português: "##Entre## por favor para continuar." </code></pre> http://stackoverflow.com/questions/1806181/why-should-i-convert-a-string-to-upper-case-when-comparing/1806188#1806188 5 Answer by Freddy Rios for Why should I convert a string to upper case when comparing? Freddy Rios 2009-11-26T23:57:52Z 2009-11-27T00:05:55Z <p>no, you should be using the enum option that allows for case insenstive comparisson (<a href="http://msdn.microsoft.com/en-us/library/system.stringcomparison.aspx" rel="nofollow">string comparison</a>).</p> <p>Make sure to use that overload of the comparison method you are using i.e. <a href="http://msdn.microsoft.com/en-us/library/e6883c06.aspx" rel="nofollow">String.Compare</a>, <a href="http://msdn.microsoft.com/en-us/library/c64xh8f9.aspx" rel="nofollow">String.Equals</a></p> http://stackoverflow.com/questions/1805867/what-agile-practices-are-appropriate-in-a-small-team/1806164#1806164 1 Answer by Freddy Rios for What agile practices are appropriate in a small team? Freddy Rios 2009-11-26T23:49:30Z 2009-11-26T23:55:21Z <p>Focus on introducing practices that add the <strong>most value</strong> to the team.</p> <p><strong>As the team is small impact of the change will be highly visible</strong>, if you <strong>work with the team</strong> and <strong>show improvements</strong> then you can go back and add another one - again the one that add the most value to the team.</p> <p>One of the most important thing is that the <strong>projects are approached with an agile mindset</strong>, adding tools &amp; techniques in the context of long projects that can't adapt to change &amp; are not highly tuned with the customer won't have the ultimate result that you should be aiming for.</p> http://stackoverflow.com/questions/1850424/asp-net-inline-code-myboolval/1850431#1850431 Comment by Freddy Rios on asp.net inline code <%# MyboolVal %> Freddy Rios 2009-12-05T00:34:56Z 2009-12-05T00:34:56Z @Jon I meant the comment on using = on your inline version when you wanted to output the text. You can't use that with a property of a server control, in that case you can use your original one and call DataBind on your panel (or on the control that contains it). http://stackoverflow.com/questions/1823633/high-performance-encryption-in-adobe-air-flash Comment by Freddy Rios on high performance encryption in adobe air / flash Freddy Rios 2009-12-04T17:44:38Z 2009-12-04T17:44:38Z Some: Ability to provide a full screen virtual environment that can only be left through a password protected exit option (this is very specific to the context of the application) - no exiting by alt-tab, windows key, esc, etc. Play external flash applications &amp; being able to call / receive method calls. Use existing UI assets (some with animations) + existing voice over assets + the app is already built. http://stackoverflow.com/questions/1830957/how-to-render-a-htm-page-into-aspx-page/1830966#1830966 Comment by Freddy Rios on how to render a .htm page into .aspx page Freddy Rios 2009-12-02T15:16:25Z 2009-12-02T15:16:25Z @Allen you could still use any of the solutions in my answer depending if those are full files or not ... you just need to download from the external location - you can even cache the already modified version locally if that makes sense to your scenario. http://stackoverflow.com/questions/1831024/help-converting-generic-listt-to-excel-spreadsheet/1831070#1831070 Comment by Freddy Rios on Help converting generic List<T> to Excel spreadsheet Freddy Rios 2009-12-02T07:06:46Z 2009-12-02T07:06:46Z +1 good &amp; complete answer. http://stackoverflow.com/questions/1831024/help-converting-generic-listt-to-excel-spreadsheet/1831038#1831038 Comment by Freddy Rios on Help converting generic List<T> to Excel spreadsheet Freddy Rios 2009-12-02T07:05:27Z 2009-12-02T07:05:27Z @Marc just saw your answer ... will just delete mine ... http://stackoverflow.com/questions/1831024/help-converting-generic-listt-to-excel-spreadsheet/1831038#1831038 Comment by Freddy Rios on Help converting generic List<T> to Excel spreadsheet Freddy Rios 2009-12-02T07:04:03Z 2009-12-02T07:04:03Z completely updated the answer. http://stackoverflow.com/questions/1831024/help-converting-generic-listt-to-excel-spreadsheet/1831038#1831038 Comment by Freddy Rios on Help converting generic List<T> to Excel spreadsheet Freddy Rios 2009-12-02T07:01:08Z 2009-12-02T07:01:08Z @Marc you are absolutely right, for no real reason I pictured a generic method being called to map the object ... you are right, having the list be generic has all the usual benefits - specially pre .net 4. http://stackoverflow.com/questions/1830941/flash-silverlight-and-multiplayer-games/1831059#1831059 Comment by Freddy Rios on Flash/silverlight and multiplayer games Freddy Rios 2009-12-02T06:57:40Z 2009-12-02T06:57:40Z afaik by now flash already has UDP support. http://stackoverflow.com/questions/1830941/flash-silverlight-and-multiplayer-games/1831087#1831087 Comment by Freddy Rios on Flash/silverlight and multiplayer games Freddy Rios 2009-12-02T06:56:24Z 2009-12-02T06:56:24Z @Travis relying security on not being able to decompile your application is the wrong approach ... you usually can do it anyway - even if its harder &amp; you are ignoring any analysis of the network information. http://stackoverflow.com/questions/1692754/how-do-you-go-about-charging-for-building-a-website Comment by Freddy Rios on how do you go about charging for building a website Freddy Rios 2009-12-01T17:01:30Z 2009-12-01T17:01:30Z @oo are you monitoring your bounty questions? ... you have at least 3 near to expire, with clear answers ;) http://stackoverflow.com/questions/1823633/high-performance-encryption-in-adobe-air-flash Comment by Freddy Rios on high performance encryption in adobe air / flash Freddy Rios 2009-12-01T16:53:18Z 2009-12-01T16:53:18Z @Lillemanden I can't switch to Silverlight, not only because the application is already built &amp; working, but because there are plenty of apps by content providers in flash. The missing functionality is for encryption for a subset of the content. Also silverlight 4 doesn't have the full set of features that we use of adobe air. Just for the info, do you need some extra paid stuff for Silverlight's DRM? - you do in case of adobe air's one. http://stackoverflow.com/questions/1822309/is-it-reasonable-to-protect-drmd-content-client-side/1826614#1826614 Comment by Freddy Rios on is it reasonable to protect drm'd content client side Freddy Rios 2009-12-01T16:34:58Z 2009-12-01T16:34:58Z +1 thx for the response. My direct client = the company I am working with for this - is clear on that (at least now, not sure if they were when those deals where made), but on the other side of the deal are different content providers. I guess you are right, its a matter of expectations - but that's what makes it so hard to decide on the tradeoffs involved. http://stackoverflow.com/questions/1824087/how-do-i-factor-code-to-ease-testability/1824149#1824149 Comment by Freddy Rios on How do I factor code to ease testability? Freddy Rios 2009-12-01T06:52:36Z 2009-12-01T06:52:36Z @Varuna I mean not making it an integration test (which is what you seem to be going for - by using the actual Engine implementation). The more you drop the unit tests for integration tests (thus structuring your code with that in mind), the harder it gets to test well the separate units &amp; the closer you get to the 'unit testing doesn't work' point of view. testing all the car behaviors with the full engine (and full implementation of other dependent classes that u 'only need one') is usually pretty hard - the only reason being that u are dealing with all the logic in the dependent classes. http://stackoverflow.com/questions/1824087/how-do-i-factor-code-to-ease-testability/1824149#1824149 Comment by Freddy Rios on How do I factor code to ease testability? Freddy Rios 2009-12-01T05:42:47Z 2009-12-01T05:42:47Z @Varuna actually its the other way, those type of assumption is what makes things more complex. You miss having a clear guideline to separate the units of your application, and before you realize you already have classes that do too many things and are v. hard to test. http://stackoverflow.com/questions/1491920/visual-studio-2008-creating-new-classes/1794668#1794668 Comment by Freddy Rios on Visual Studio 2008 creating new classes? Freddy Rios 2009-12-01T04:57:58Z 2009-12-01T04:57:58Z @oo did u try this after my change?