User aleemb - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:58:31Z http://stackoverflow.com/feeds/user/50475 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/784562/datacontractserializer-how-to-serialize-classes-members-without-datacontract-dat 2 DataContractSerializer: How to serialize classes/members without DataContract/DataMember attributes aleemb 2009-04-24T04:51:01Z 2009-11-24T21:43:20Z <p><code>DataContractSerializer</code> requires classes and members to be marked with the <code>DataContract</code> and <code>DataMember</code> attributes. However, in my case the classes are auto-generated with the EFPocoAdapater framework and these attributes are not present.</p> <p>How can I force serialization of all members using the DataContractSerializer without these attributes being present?</p> <blockquote> <p>From Alexdej:</p> <p>This changed in 3.5SP1, hope you saw that: <a href="http://www.pluralsight.com/community/blogs/aaron/archive/2008/05/13/50934.aspx" rel="nofollow">http://www.pluralsight.com/community/blogs/aaron/archive/2008/05/13/50934.aspx</a></p> </blockquote> http://stackoverflow.com/questions/576792/asp-mvc-server-requirements-is-server-2008-very-desirable 0 ASP MVC server requirements - Is Server 2008 very desirable? aleemb 2009-02-23T07:25:18Z 2009-11-24T13:45:24Z <p>I read in a few places that MVC requires Windows Server 2008 for full support. Can the same be achieved on a Vista Ultimate dev machine or will some things be missing?</p> <p>If you have worked with MVC, have you had trouble finding relatively inexpensive hosting for Windows Server 2008? Though hosting is not as big a concern for me right (I know I will find some) as needing a dev machine with 2008 Server.</p> http://stackoverflow.com/questions/569278/your-favorite-gui-client-for-svn 1 Your favorite GUI client for SVN aleemb 2009-02-20T11:45:19Z 2009-11-12T15:47:53Z <p>The only client I keep hearing about is TortoiseSVN. Is this the best option or do you have another preferred client?</p> http://stackoverflow.com/questions/901677/the-definitive-best-way-to-preload-images-using-javascript-jquery/902698#902698 1 Answer by aleemb for The definitive best way to preload images using JavaScript/jQuery? aleemb 2009-05-23T23:19:32Z 2009-10-12T11:41:19Z <p><strong>Spriting</strong></p> <p>As others have mentioned, spriting works quite well for a variety of reasons, however, it's not as good as its made out to be.</p> <ul> <li>On the upside, you end up making only one HTTP request for your images. YMMV though.</li> <li>On the down side you are loading everything in one HTTP request. Since most current browsers are limited to 2 concurrent connections the image request can block other requests. Hence YMMV and something like your menu background might not render for a bit.</li> <li>Multiple images share the same color palette so there is some saving but this is not always the case and even so it's negligible.</li> <li>Compression is improved because there is more shared data between images.</li> </ul> <p>Dealing with irregular shapes is tricky though. Combining all new images into the new one is another annoyance.</p> <p><strong>Low jack approach using &lt;img&gt; tags</strong></p> <p>If you are looking for the <strong>most definitive</strong> solution then you should go with the low-jack approach which I still prefer. Create &lt;img&gt; links to the images at the end of your document and set the <code>width</code> and <code>height</code> to 1x1 pixel and additionally put them in a hidden div. If they are at the end of the page, they will be loaded after other content.</p> http://stackoverflow.com/questions/696476/openid-a-lucrative-target-for-spammers 2 OpenID a lucrative target for spammers? aleemb 2009-03-30T08:54:42Z 2009-09-12T21:07:19Z <p>Due to the nature of OpenID, wouldn't it be a lucrative target for spammers? For starters, you could create an OpenID account on any site and use it on any other site which would mean that I could log into a forum and write a few thousand posts if the forum assumes that logged in users can be trusted.</p> <p>Do you agree OpenID is lucrative for spammers? Does OpenID anticipate an onslaught?</p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954904#954904 61 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T08:55:05Z 2009-08-28T01:45:52Z <p>The <strong>contentEditable</strong> property for (IE, Firefox, and Safari)</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td&gt;&lt;div contenteditable="true"&gt;This text can be edited&lt;div&gt;&lt;/td&gt; &lt;td&gt;&lt;div contenteditable="true"&gt;This text can be edited&lt;div&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>This will make the cells editable! Go ahead, <a href="http://www.w3schools.com/tags/tryit.asp?filename=tryhtml%5Ftable%5Ftest" rel="nofollow">try it</a> if you don't believe me.</p> http://stackoverflow.com/questions/280308/does-persistence-ignorance-in-ado-net-entity-framework-mean-what-i-think-it-means/1298715#1298715 3 Answer by aleemb for Does persistence ignorance in ADO.NET entity framework mean what I think it means? aleemb 2009-08-19T09:19:25Z 2009-08-19T09:19:25Z <p>Just an update, this has now changed as of Entity Framework 4.0 which supports <a href="http://aleembawany.com/2009/04/06/persistence-ignorance-in-adonet-entity-framework/" rel="nofollow">Persistence Ignorance</a>.</p> http://stackoverflow.com/questions/1281683/best-practices-for-php-msql-deployment-to-shared-hosting/1281870#1281870 1 Answer by aleemb for Best practices for (php/msql) deployment to shared hosting? aleemb 2009-08-15T13:11:53Z 2009-08-15T13:11:53Z <p>Regarding SVN, I would suggest you go with a dedicated SVN host like beanstalk or use the same server machine to run an SVN server so both developers can work off it.</p> <p>In the latter case, your deployment script would simply move the bits to a staging web folder (accessible via beta.mysite.com) and then another deployment script could move that to the live web directory. Deploying directly to the live site is obviously not a good idea.</p> <p>If you decide to go with a dedicated host or want to deploy from your machine to the server, use rsync. This is also my current setup. <strong>RSync</strong> does differential syncs (over SSH) so it's fast and it was built for just this sort of stuff.</p> <p>As you grow you can start using build tools with unit tests and whatnot. This leaves only the data sync issue.</p> <p>I only sync data from remote -> local and use a DOS batch file that does this over SSH using <strong>mysqldump</strong>. Cygwin is useful for Windows machines but you can skip it. The SQL import script also runs a one line query to update some cells such as hostname and web root for local deployment.</p> <p>Once you have this setup, you can focus on just writing code and remote deployment or local sync and deployement becomes a one click process.</p> http://stackoverflow.com/questions/1101818/wordpress-as-a-cms-option/1108266#1108266 1 Answer by aleemb for WordPress as a CMS option aleemb 2009-07-10T07:51:44Z 2009-07-10T07:51:44Z <p>Using an iFrame is the patchiest solution possible. It's likely what you are looking for is already available as a <a href="http://wordpress.org/extend/plugins/" rel="nofollow">plugin</a>. Barring that I would really urge you not to use iFrames and instead stick to ASP.NET until you have converted everything over. Having two pages built on two different technology stacks (LAMP vs IIS/ASP.NET/SQL Server) amalgamated on a single page sounds like pretty lousy solution, especially if there aren't that many ASP pages.</p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954969#954969 11 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T09:14:34Z 2009-07-09T19:48:10Z <p>We all know about DTD's or Document Type Declarations (those things which make you page fail with the W3C validator). However, it is possible to extend the <strong>DTD</strong>s by declaring an attribute list for custom elements.</p> <p>For example, the W3C validator will <a href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.quirksmode.org%2Foddsandends%2Fdtd.html" rel="nofollow">fail for this page</a> because of <code>behavior="mouseover"</code> added to the <code>&lt;p&gt;</code> tag. However, you can make it pass by doing this:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" [ &lt;!ATTLIST p behavior CDATA #IMPLIED&gt; ]&gt; </code></pre> <p>See more at about <a href="http://www.quirksmode.org/oddsandends/dtd.html" rel="nofollow">Custom DTDs at QuirksMode</a>.</p> http://stackoverflow.com/questions/411954/tools-for-faster-better-web-development 31 Tools for faster, better web development aleemb 2009-01-05T00:05:05Z 2009-06-20T23:59:27Z <p>Over the years most web developers will have built an arsenal of tools or "tools of the trade". Recently I discovered rsync and I am surprised how I managed to live without it all these years. What tools do you consider the most compelling? Please stick to the ones you use on a regular basis and swear by. They can also be frameworks, platforms, editors and whatever else you think web developers ought to be using (jquery, joomla, xdebug, vi, notepad++, etc).</p> <p>I'll start off with a couple:</p> <ol> <li><a href="http://samba.anu.edu.au/ftp/rsync/rsync.html" rel="nofollow">rsync</a> - 'One click' sync to live servers or vice-versa</li> <li><a href="http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html" rel="nofollow">mysqldump</a> - used alongside rsync to sync the databases</li> <li><a href="https://www.squarefree.com/bookmarklets/webdevel.html" rel="nofollow">test styles bookmarklet</a> - live css editor bookmarklet which beats the heck out of the 'edit > save > reload' cycle by allowing live editing.</li> <li><a href="https://www.squarefree.com/bookmarklets/webdevel.html" rel="nofollow">javascript shell</a> - javascript shell window attached to a window</li> <li><a href="http://www.getfirebug.com/" rel="nofollow">firebug</a> - advanced javscript debugger</li> <li><a href="http://pear.php.net/package/PHP_Shell/" rel="nofollow">php-shell</a> - PHP Shell I use regularly for quickly testing statements, functions or entire scripts</li> <li><a href="http://css-discuss.incutio.com/" rel="nofollow">CSS-Discuss Wiki</a> - I'd be surprised if you couldn't find a solution to your CSS problem on this wiki (in which case you should add it)</li> <li><a href="http://media.24ways.org/2007/17/fontmatrix.html" rel="nofollow">Font Matrix</a> - Helps me choose font stacks</li> <li><a href="http://www.phpmyadmin.net/" rel="nofollow">PHPMyAdmin</a> - I'm certain everyone uses this for managing their MySQL databases but thought I'd add it to the list for good measure</li> </ol> <p>Even though I have highlighted tools in the LAMP environment, you may mention tools you use in your environment.</p> http://stackoverflow.com/questions/1017468/change-background-color-of-nsbutton 1 Change background color of NSButton aleemb 2009-06-19T11:28:38Z 2009-06-19T14:11:00Z <p>I have an NSButton in a mac application whose colour I'd like to change programatically but nothing I tried seems to work. I tried to create an output on the NSButtonCell and set the background color there but that didn't work either. Any code snippets would be helpful.</p> http://stackoverflow.com/questions/1006155/how-did-stackoverflow-create-a-xml-data-dump-of-those-large-tables/1007226#1007226 3 Answer by aleemb for How did stackoverflow create a xml data dump of those large tables? aleemb 2009-06-17T14:03:22Z 2009-06-17T14:03:22Z <p>Use SQL server's command line <a href="http://msdn.microsoft.com/en-us/library/aa174646.aspx" rel="nofollow">BCP</a> tool to export to XML.</p> <pre><code>&gt; bcp "SELECT * FROM MyTable FOR XML EXPLICIT" queryout data.xml -w -r "" -S sqlserver -T </code></pre> http://stackoverflow.com/questions/917300/what-algorithms-do-the-big-ones-use-to-cluster-news/955163#955163 0 Answer by aleemb for What algorithms do "the big ones" use to cluster news? aleemb 2009-06-05T10:10:01Z 2009-06-05T10:10:01Z <p>Some others have provided excellent explanations and I had fun reading them.</p> <p>This is not an algorithmic description but since you are using PHP, it could provide you the straight up working solution. I would strongly recommend going with the <a href="http://codefury.net/2008/06/a-stemming-analyzer-for-zends-php-lucene/" rel="nofollow">Standard Analyzer</a> which is an implementation of the <a href="http://codefury.net/2008/06/a-word-on-lucenes-php-port-by-zend/" rel="nofollow">Zend port of Lucene</a> from Java. It does:</p> <ul> <li>Stem words for greater search relevancy</li> <li>Use the pre-existing Zend lowercase filter</li> <li>Filter out a standard set of stop words using the Zend stop words filter</li> </ul> <p>While you will need the Zend library, you can have an independent install as well. The author wrote the <a href="http://codefury.net/projects/wpSearch/" rel="nofollow">wpSearch</a> which is a working implementation and in my opinion the best search engine available for the CMS. You could take your cue from the plugin implementation and get it off the ground.</p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954937#954937 19 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T09:04:59Z 2009-06-05T09:04:59Z <p>The <code>wbr</code> or <a href="http://www.quirksmode.org/oddsandends/wbr.html" rel="nofollow">word-break</a> tag. From Quirksmode:</p> <blockquote> <p> (word break) means: "The browser may insert a line break here, if it wishes." It the browser does not think a line break necessary nothing happens.</p> <pre><code>&lt;div class="name"&gt;getElements&lt;wbr&gt;ByTagName()&lt;/div&gt; </code></pre> <p>I give the browser the option of adding a line break. This won't be necessary on very large resolutions, when the table has plenty of space. On smaller resolutions, however, such strategically placed line breaks keep the table from growing larger than the window, and thus causing horizontal scrollbars.</p> </blockquote> <p>The there is also the <strong><code>&amp;shy;</code></strong> HTML entity mentioned on the same page. This is the same as <code>wbr</code> but when a break is inserted a hypen (<code>-</code>) is added to signify a break. Kind of like how it is done in print.</p> <p>An example:</p> <p>Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;</p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954927#954927 30 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T09:01:01Z 2009-06-05T09:01:01Z <p>The <strong><a href="http://www.w3schools.com/tags/tag%5Fbutton.asp" rel="nofollow">button</a></strong> tag is the new <code>input submit</code> tag and a lot of people are still not familiar with it. The text in the button can for example be styled using the button tag.</p> <pre><code>&lt;button&gt; &lt;b&gt;Click&lt;/b&gt;&lt;br /&gt; Me! &lt;/button&gt; </code></pre> <p>Will render a button with two lines, the first says "<strong>Click</strong>" in bold and the second says "Me!". Try it <a href="http://www.w3schools.com/tags/tryit.asp?filename=tryhtml%5Fbutton%5Ftest" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954843#954843 44 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T08:36:20Z 2009-06-05T08:36:20Z <p>Not very well known but you can specify <code>lowsrc</code> for images which will show the <code>lowsrc</code> while loading the <code>src</code> of the image:</p> <pre><code>&lt;img lowsrc="monkey_preview.png" src="monkey.png" /&gt; </code></pre> <p>This is a good option for those who don't like <a href="http://www.codinghorror.com/blog/archives/000468.html" rel="nofollow">interlaced</a> images.</p> <p>A little bit of trivia: at one point this property was obscure enough that it was used to <a href="http://seclists.org/bugtraq/2000/Jan/0012.html" rel="nofollow">exploit Hotmail</a>, circa 2000.</p> http://stackoverflow.com/questions/954707/is-there-an-option-for-testing-java-applications-from-the-outside-like-we-do-with/954807#954807 0 Answer by aleemb for is there an option for testing java applications from the outside like we do with the web applications? aleemb 2009-06-05T08:20:25Z 2009-06-05T08:20:25Z <p>This is called Blackbox testing.</p> <p>Typically you would write another program that provides inputs to your applications and verifies the output. This is easier for a command line application but for GUI testing you would need to use a framework like others have mentioned.</p> <p>Another approach is to write a drive that includes the jar files and directly call the public functions and do input/output testing.</p> http://stackoverflow.com/questions/951182/stackoverflow-reputation-using-windows-command-prompt-cmd-exe/951581#951581 0 Answer by aleemb for StackOverflow reputation using Windows Command Prompt (cmd.exe) aleemb 2009-06-04T16:16:51Z 2009-06-04T16:16:51Z <p>There is more elaborate data for users available via (JSON):</p> <pre><code>http://stackoverflow.com/users/rep/50475/2009-01-01/2009-01-31 </code></pre> <p>You could get some interesting data by parsing that string. Jon Skeet uses that for his <a href="http://csharpindepth.com/StackOverflow/ReputationTracker.aspx?user=50475&amp;mode=today" rel="nofollow">rep tracker</a>.</p> http://stackoverflow.com/questions/951285/db-design-1st-normal-form-and-repeating-groups/951479#951479 0 Answer by aleemb for DB Design: 1st Normal Form and Repeating Groups aleemb 2009-06-04T16:02:51Z 2009-06-04T16:02:51Z <p>The design should be determined by your use-case scenarios and the type of queries you anticipate. Are you going to do a lot of reads, writes or a lot of updates? Do you wish to get the entire test data for a candidate or do you wish to get only the best test or something. What query are you going to be running most frequently?</p> <p><b>Design 1</b></p> <pre><code>SN Test1_Max Test1_Min Test1_Mean Test2_Max Test2_Min Test2_Mean 2093 23 2 15 54 -24 45 </code></pre> <p>This is the best in terms of performance. It requires no JOINs. If the number of fields is deterministic and not arbitrary (example each person has at most two test scores) then this is better albeit more rigid if you decide to associate more than two test scores to a person. Since SN is <code>unique</code> here for each row, the database engine can return as soon as it finds a match which is another reason why performance is better.</p> <p><b>Design 2</b></p> <pre><code>SN Test Max Min Mean 2093 1 23 2 15 2093 2 54 -24 45 </code></pre> <p>This is useful if <code>SN 2093</code> can have N tests in their profile. Similarly if the number of tests is say 10m, then too this design is better than to have 30 columns. Each query and comparison will be quite heavy. This is also useful if your application requires queries where it wants to get the best performing test for student <code>2093</code> or if wishes do some analytics and reporting around test scores. This is more flexible though slightly slower than the previous one. I prefer this because I have a hunch that you will probably be interested in test statistics and students can have more than two tests each.</p> <p><b>Design 3</b></p> <pre><code>SN Test Statistic Value 2093 1 Max 23 2093 1 Min 2 2093 1 Mean 15 2093 2 Max 54 2093 2 Min -24 2093 2 Mean 45 </code></pre> <p>This is useful if your queries were interested in values more than anything. For example if you are interested in how many values were greater than 80 this would be fast. In your scenario this doesn't make sense. You'll end up doing too many self JOINs. Reads will be slow! However, writes will probably be faster because you can quickly UPDATE max score for <code>SN 2093</code> and <code>Test 2</code> (assuming that the Statistic column is an enum instead of a string because string comparisons can be costly).</p> <p><b> Design 4 </b></p> <pre><code>SN AverageCurrent (mA) BatteryCapacity (mA) 2093 200 540 </code></pre> <p><b> Design 5 </b></p> <pre><code>SN mA_Measuremnt Value 2093 AverageCurrent 200 2093 BatteryCapacity 540 </code></pre> <p>Same arguments apply. It really depends on whether you intend to optimize for reads or writes? For web applications for example, if you can get away with it, I prefer Design 1. For example, I will usually know that a user will only have at most 3 phone numbers so I will make them each a field within the user column and avoid JOINs. The reads are fast even though writes will require setting some fields to null.</p> http://stackoverflow.com/questions/951159/parsing-a-value-in-jquery/951197#951197 0 Answer by aleemb for parsing a Value in JQuery ?? aleemb 2009-06-04T15:14:41Z 2009-06-04T15:34:30Z <p>Try to use it as a number:</p> <pre><code>var valueAsInt = parseInt($('#counts span').text()); </code></pre> <p>If that works you can add convert it to a string by adding an empty string at the end of the expressions.</p> <p>If that doesn't work you have a number of ways to debug this. Try:</p> <pre><code>alert($('#counts span').text()); </code></pre> <p>If that returns 10, the problem is in the parsing. If that returns 10000 then the element contains a different value than you think so you can try:</p> <pre><code>alert($('#counts span').parent().html()); </code></pre> <p>and verify the HTML does indeed contain <code>10</code> inside the <code>&lt;span&gt;</code>.</p> http://stackoverflow.com/questions/951207/is-there-a-regular-expression-to-strip-specific-query-variables-from-a-uri/951279#951279 0 Answer by aleemb for Is there a regular expression to strip specific query variables from a URI? aleemb 2009-06-04T15:27:51Z 2009-06-04T15:27:51Z <p>Regex is one way. Alternately you could use XPath to find all links within the document and then work on each of those in a loop. Since this is an XHTML document and if assuming it is well formed, this approach seems reasonable.</p> http://stackoverflow.com/questions/951216/managing-a-web-application-project-with-multiple-viewing-modes/951250#951250 0 Answer by aleemb for Managing a web application project with multiple viewing modes aleemb 2009-06-04T15:24:06Z 2009-06-04T15:24:06Z <p>You should build the back end as a web service. This means that any UI can interact with the service and presentation logic is separate from business logic.</p> <p>For Microsoft platforms, ASP.NET MVC or ADO.NET data services are good options here to start off with. The presentation layer should be separated out into a different project altogether to ensure that it is independent of business logic.</p> <p>But it should be just as easy to do it in other platforms using a RESTful approach.</p> http://stackoverflow.com/questions/951141/best-javascript-libraries-to-work-with-rails/951230#951230 0 Answer by aleemb for Best javascript libraries to work with rails? aleemb 2009-06-04T15:19:39Z 2009-06-04T15:22:52Z <p><a href="http://prototypejs.org/" rel="nofollow">Prototype</a> for the following reasons:</p> <ul> <li>Prototype is a spinoff and is directly influenced by the requirements of the Ruby on Rails framework. </li> <li>Prototype and Ruby programming language have an intentional similarity between Ruby's built-in classes and many of the extensions implemented by this library.</li> <li>Ruby on Rails ships with the Prototype library</li> </ul> http://stackoverflow.com/questions/950919/using-blueprint-css-within-a-jquery-ui-tab/951174#951174 0 Answer by aleemb for using blueprint css within a jquery ui tab aleemb 2009-06-04T15:09:07Z 2009-06-04T15:09:07Z <p>I am guessing that it's probably because the div overflows. Start with span-1 and work your way up.</p> http://stackoverflow.com/questions/922048/is-the-entity-framework-out-yet/922069#922069 0 Answer by aleemb for Is the Entity Framework out yet? aleemb 2009-05-28T17:08:18Z 2009-06-04T12:15:14Z <p>Linq to SQL is not going to be replaced but to answer your other question, <a href="http://blogs.msdn.com/adonet/archive/2009/05/20/entity-framework-4-0-beta-1-bits-now-available-in-the-vs-2010-and-net-4-beta-1.aspx" rel="nofollow">Entity Framework V4 Beta 1</a> is available to MSDN subscribers. Entity Framework for .NET 3.5 is part of .NET 3.5 SP1.</p> http://stackoverflow.com/questions/949013/what-kind-of-characters-and-skills-are-essential-for-a-developer-who-is-working-r/949199#949199 0 Answer by aleemb for What kind of characters and skills are essential for a developer who is working remotely? aleemb 2009-06-04T08:13:19Z 2009-06-04T08:13:19Z <p>Communication.</p> http://stackoverflow.com/questions/949125/why-are-there-so-many-tools-technologies-to-do-same-task-in-open-source-community/949194#949194 2 Answer by aleemb for why are there so many tools/technologies to do same task in open-source community aleemb 2009-06-04T08:12:00Z 2009-06-04T08:12:00Z <p>Actually in Windows too there are a lot of different tools for the same task. Just look at the plethora of editors and IDEs that are available.</p> <p>The reason why open source has so many has much to do with the open source model itself. IF I don't like the way you have implemented something in your open source software, I can branch out. Each time I branch I create a new version of the software. Github takes this to a new level by encouraging developers to branch. Sometimes the hope is that the branched software will have innovations that can be integrated back into the original software. Sometimes it happens that the branched software takes a life of it's own.</p> http://stackoverflow.com/questions/949152/asp-net-mvc-stongly-typed-views/949172#949172 0 Answer by aleemb for ASP.Net MVC Stongly Typed Views aleemb 2009-06-04T08:04:01Z 2009-06-04T08:04:01Z <p>The signature for the ActionResult expects</p> <pre><code>public ActionResult Index(FormCollection formValues) </code></pre> <p>Where FormCollection Iis an IEnumerable type. However, in your view you are posting back the selected index from the drop down which is an <code>Int32</code>:</p> <pre><code>&lt;%= Html.DropDownList("StatusDropDown") %&gt; &lt;input type="submit" value="Filter" /&gt; </code></pre> <p>You should change the ActionResult signature to accept an <code>int</code>.</p> http://stackoverflow.com/questions/945191/caching-strategy-for-queried-data/945339#945339 2 Answer by aleemb for Caching Strategy for queried data aleemb 2009-06-03T15:11:06Z 2009-06-03T23:45:51Z <p>This is a reasonable approach and I have gone this route before and it's best to use this for simple caching.</p> <p>However, when you are updating or writing to the database you will run into some interesting problems and you should handle these scenarios carefully.</p> <p>For example your cache data will become obsolete if the user updates the record in the database. In that scenario you will either need to simultaneously update the in-memory cache or purge the cache so that it can be refreshed on the next fetch query.</p> <p>Things can also get tricky if you for example the user updates a customer's email address which is in a separate table but associated via a foreign key.</p> <p>Besides database caching you should also be considering output caching. This works quite well if for example you have a table that shows sales data for previous month. The table could be stored in another file that gets included in a bunch of other pages that want to show the table. Now if you cache the file with the sales data table, those other pages when they request this file, the caching engine can fetch it straight from the disk and the business logic layer doesn't even get hit. This is not applicable all the time but quite useful for custom controls.</p> <p><strong>Unit of Work Pattern</strong></p> <p>It also helps to know about the <a href="http://martinfowler.com/eaaCatalog/unitOfWork.html" rel="nofollow">Unit of Work</a> pattern.</p> <blockquote> <p>When you're pulling data in and out of a database, it's important to keep track of what you've changed; otherwise, that data won't be written back into the database. Similarly you have to insert new objects you create and remove any objects you delete.</p> <p>You can change the database with each change to your object model, but this can lead to lots of very small database calls, which ends up being very slow. Furthermore it requires you to have a transaction open for the whole interaction, which is impractical if you have a business transaction that spans multiple requests. The situation is even worse if you need to keep track of the objects you've read so you can avoid inconsistent reads.</p> <p>A Unit of Work keeps track of everything you do during a business transaction that can affect the database. When you're done, it figures out everything that needs to be done to alter the database as a result of your work.</p> </blockquote> http://stackoverflow.com/questions/784562/datacontractserializer-how-to-serialize-classes-members-without-datacontract-dat/1692069#1692069 Comment by aleemb on DataContractSerializer: How to serialize classes/members without DataContract/DataMember attributes aleemb 2009-11-13T08:45:52Z 2009-11-13T08:45:52Z awesome! have shifted to other projects since but this feature is a blessing... especially for with the Entity Framework which has circular graphs and the other serializers can get problematic. http://stackoverflow.com/questions/58640/great-programming-quotes/502590#502590 Comment by aleemb on Great programming quotes aleemb 2009-09-14T09:49:48Z 2009-09-14T09:49:48Z measure twice, cut once. http://stackoverflow.com/questions/1281683/best-practices-for-php-msql-deployment-to-shared-hosting/1281870#1281870 Comment by aleemb on Best practices for (php/msql) deployment to shared hosting? aleemb 2009-08-15T22:47:22Z 2009-08-15T22:47:22Z Since the code is sync'ed on your machine, you can run the scripts off your own machine (or your partner can run them on his machine). The scripts can also be checked in to the depot. http://stackoverflow.com/questions/1017468/change-background-color-of-nsbutton/1018162#1018162 Comment by aleemb on Change background color of NSButton aleemb 2009-06-20T16:32:37Z 2009-06-20T16:32:37Z That explains why I can't just modify the background property. Theme Park is a real gem! http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/297307#297307 Comment by aleemb on What are best practices that you use when writing Objective-C and Cocoa? aleemb 2009-06-19T12:26:24Z 2009-06-19T12:26:24Z Instead of #PRAGMA you can use a comment // Mark: [Section] which is more portable and works identically. http://stackoverflow.com/questions/993719/how-do-you-code/993723#993723 Comment by aleemb on How do you code? aleemb 2009-06-14T21:00:09Z 2009-06-14T21:00:09Z delete it. you'll get your rep back this way and clean up the community. http://stackoverflow.com/questions/954327/hidden-features-of-html/954881#954881 Comment by aleemb on Hidden Features of HTML aleemb 2009-06-05T11:35:47Z 2009-06-05T11:35:47Z Wow! I simply cannot get over the fact that people find this to be a &quot;hidden&quot; feature. Boy do I feel stupid about posting some &quot;really hidden&quot; features because people who upvoted this will probably not even come close to fathoming what extending a DTD means. http://stackoverflow.com/questions/954327/hidden-features-of-html/954937#954937 Comment by aleemb on Hidden Features of HTML aleemb 2009-06-05T11:06:23Z 2009-06-05T11:06:23Z It may well be deprecated as part of the HTML spec but it still works in browsers. Whenever in doubt, go with the QuirksMode verdict (compatibility tables now sponsored by Google). http://stackoverflow.com/questions/954327/hidden-features-of-html/954937#954937 Comment by aleemb on Hidden Features of HTML aleemb 2009-06-05T09:30:45Z 2009-06-05T09:30:45Z &quot;IE8 as IE8&quot; does not support it and it's buggy in Safari 3.0 for windows. Other than that support is pretty good. Refer to the compatibility chart in the link. http://stackoverflow.com/questions/951267/jquery-javascript-formatting-opinion-vs/951318#951318 Comment by aleemb on [jquery] javascript formatting opinion: ' vs " aleemb 2009-06-04T15:40:34Z 2009-06-04T15:40:34Z Didn't know this. Great tip. http://stackoverflow.com/questions/945191/caching-strategy-for-queried-data/945339#945339 Comment by aleemb on Caching Strategy for queried data aleemb 2009-06-03T23:03:09Z 2009-06-03T23:03:09Z If you haven't already and if the option is available to you, why not consider an ORM? http://stackoverflow.com/questions/947134/are-there-nested-master-pages-in-asp-net-mvc/947158#947158 Comment by aleemb on Are there nested master pages in ASP.NET MVC? aleemb 2009-06-03T20:53:43Z 2009-06-03T20:53:43Z You beat me to it. Good post. http://stackoverflow.com/questions/943801/doing-something-thatll-take-a-while-in-asp-net-mvc-while-reporting-progress-to/943857#943857 Comment by aleemb on Doing something that'll take a while in ASP.NET MVC, while reporting progress to the user? aleemb 2009-06-03T14:01:04Z 2009-06-03T14:01:04Z Aah I see what you meant to do. http://stackoverflow.com/questions/943801/doing-something-thatll-take-a-while-in-asp-net-mvc-while-reporting-progress-to/943830#943830 Comment by aleemb on Doing something that'll take a while in ASP.NET MVC, while reporting progress to the user? aleemb 2009-06-03T13:57:31Z 2009-06-03T13:57:31Z @Roger, this is a client-side problem not a server-side one. So the client sends out an AJAX request and simultaneously displays a progress indicator. As soon as the server response comes back, it hides the progress indicator. There is nothing you really need to do on the server to enable this. http://stackoverflow.com/questions/944273/how-to-declare-a-global-variable-in-a-js-file/944288#944288 Comment by aleemb on How to declare a global variable in a .js file aleemb 2009-06-03T12:16:05Z 2009-06-03T12:16:05Z While this answer is correct I would recommend that you Google Javascript variable scoping to get a better understanding and possibly avoid doing things this exact way.