User stimms - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:11:28Z http://stackoverflow.com/feeds/user/361 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1835466/code-beind-user-control 0 Code beind user control stimms 2009-12-02T20:10:24Z 2009-12-02T20:18:27Z <p>How would one go about performing controller actions from withing an ASP.net MVC user control? </p> <p>My scenario is that I have a userID and I want to transform it into a name from the database. To do this I've annotated my model with a display type and put a User template in the shared display templates but I'm not sure where I should write the code which does the lookup to convert from userID to user name. </p> http://stackoverflow.com/questions/9388/actual-productivity-gains-from-multiple-monitors 13 Actual Productivity Gains from Multiple Monitors stimms 2008-08-13T01:24:18Z 2009-12-02T03:39:26Z <p>I see a lot of posts from people talking about how they cannot possibly live without two, three or 13 1/2 monitors but does anybody have an actual metrics or statistics which I could use as ammunition? Same question for comfortable chairs. The company for which I work right now is looking at buying chairs but will buy bargain basement chairs without some evidence supporting better chairs. </p> http://stackoverflow.com/questions/1830455/how-to-reduce-maintenance-costs/1830494#1830494 0 Answer by stimms for How to reduce maintenance costs stimms 2009-12-02T03:31:05Z 2009-12-02T03:31:05Z <p>I have worked on projects like these, it's a death march. We found that the solution is to "pay down the mortgage". Find the things which are costing you the most time and work to correct those. Once they're done you'll have freed up time to work on other, smaller issues. A good idea is to pull TDD into your process, if you can lay down enough tests then you can start to make changes without as much worry about breaking more things. </p> http://stackoverflow.com/questions/1822754/log-user-activity-on-asp-net-mvc-application/1823494#1823494 1 Answer by stimms for Log User Activity on ASP.NET MVC Application stimms 2009-12-01T01:27:59Z 2009-12-01T01:27:59Z <p>@Rory's idea is excelent. PostSharp is just what you need for this, you might consider coupling it with <a href="http://msdn.microsoft.com/en-us/library/ms998306.aspx" rel="nofollow">ASP.net Health Monitoring</a></p> http://stackoverflow.com/questions/1823451/how-to-iterate-through-array-in-c-across-multiple-calls/1823463#1823463 2 Answer by stimms for How to Iterate Through Array in C# Across Multiple Calls stimms 2009-12-01T01:18:46Z 2009-12-01T01:18:46Z <p>Could you not just pass in and return the array index? That is basically all that a pointer is anyway, an offset from a fixed memory location. </p> http://stackoverflow.com/questions/1823435/need-a-quick-jquery-solution-to-capture-the-current-url-and-inject-it-into-anothe/1823456#1823456 1 Answer by stimms for Need a quick jquery solution to capture the current url and inject it into another url link stimms 2009-12-01T01:16:12Z 2009-12-01T01:16:12Z <p>I imagine it would be something like </p> <pre><code>var faceBookUrl = "http://www.facebook.com/share.php?u=" + location.href </code></pre> http://stackoverflow.com/questions/1823354/asp-net-mvc-showing-model-data-based-on-roles/1823448#1823448 0 Answer by stimms for ASP.Net MVC - Showing Model data based on Roles stimms 2009-12-01T01:14:42Z 2009-12-01T01:14:42Z <p>If it is something related to how the information displayed on the screen (and it sounds like it is) then it is best to keep that in the view. Personally I would use partial views and only load them when needed, this supports better reuse. </p> http://stackoverflow.com/questions/1823414/jquery-remove-list-items-based-off-of-time/1823438#1823438 0 Answer by stimms for jQuery - remove list items based off of time stimms 2009-12-01T01:12:09Z 2009-12-01T01:12:09Z <p>Your approach to expring elements when you run getData seems sound. You should append to the end of the array with push but pop just pulls elements from the end of the array, which is probably not the right order. Javascript arrays act like stacks rather than queues. You might want to add remove to the javascript array prototype as is suggested <a href="http://ejohn.org/blog/javascript-array-remove/" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1784788/activerecord-fundamentally-incompatible-with-composite-keys 0 ActiveRecord fundamentally incompatible with composite keys? stimms 2009-11-23T17:45:29Z 2009-11-30T10:42:31Z <p>I have been attempting to use subsonic for a project on which I'm working. All was going quite well until I encountered a link table with a composite primary key. That is a key made up of the primary keys of the two tables it joins. Subsonic failed to recognize both keys which was problematic. I was going to adjust subsonic to support compound keys but I stopped and though "Maybe there is a reason for this". Normally active record relies on a single primary key field for every record, even in link tables. But is this necessary? Should I just give up on active record for this project or continue with my modifications? </p> http://stackoverflow.com/questions/1815965/mvc-toolkit-and-xmlmetadataprovider/1815994#1815994 0 Answer by stimms for MVC Toolkit and XmlMetadataProvider stimms 2009-11-29T16:34:31Z 2009-11-29T16:34:31Z <p>Huh, I have to say I disagree with those arguments. The reason I use buddy classes is that that model is often regenerated if you use SubSonic or a LINQ2SQL provider. One would have to rewrite the properties on the fields if buddy classes wern't used. Buddy classes should be in the model, they are annotations of the model. Saying "this field is required" does not vary from view to view. As for the DRY issue I can see where people are coming from but it is really the simplest approach. Blindly adhering to rules in even the best programming books is a recipie for disaster. </p> <p>Stick with the buddy classes.</p> http://stackoverflow.com/questions/1812251/how-to-clear-the-textbox-value-of-asyncfileupload/1813533#1813533 0 Answer by stimms for how to clear the textbox value of asyncfileupload .. ? stimms 2009-11-28T19:33:28Z 2009-11-28T19:33:28Z <p>Assuming you're using the control from Ajax Control Toolkit you can hook into the OnClientUploadedComplete handle which is called on the client side once the upload is complete. You want to call hide on the modal popup</p> <pre><code> var modalPopupBehavior = $find('popupID'); modalPopupBehavior.hide(); </code></pre> http://stackoverflow.com/questions/1812603/error-logging-and-exception-notififcation-library/1813499#1813499 0 Answer by stimms for Error Logging and Exception Notififcation Library stimms 2009-11-28T19:24:37Z 2009-11-28T19:24:37Z <p>Yes that is a pain, but there is hope. Using aspect oriented programming you can centralize your error logging, take a look at <a href="http://www.coderecycling.net/2009/04/exception-handling-postsharp.html" rel="nofollow">this article</a>. I haven't used it but it seems promising. </p> http://stackoverflow.com/questions/1813078/restricting-user-password-character-set/1813482#1813482 1 Answer by stimms for Restricting user password character set stimms 2009-11-28T19:19:09Z 2009-11-28T19:19:09Z <p>There is little reason to worry about SQL insertion attacks unless you're actually inserting the password into the database in plain text (Danger, Will Robertson, Danger!) and even then if you paramaterize the query it won't be an issue. You should allow [a-zA-Z0-9] plus some set of special characters. Probably the only character to restrict is '&lt;' which will trigger the ASP.net validation warning. There are a number of fun tools out there to do password complexity checking on the client side. I like <a href="http://view.jquery.com/trunk/plugins/validate.password/demo/" rel="nofollow">this one</a>. It provides some instant feedback to the user as they are typing. </p> http://stackoverflow.com/questions/1806190/jquery-selector-question-parent/1806195#1806195 3 Answer by stimms for jQuery: selector question (parent) stimms 2009-11-26T23:59:29Z 2009-11-26T23:59:29Z <p>Use </p> <pre><code>closest("li") </code></pre> <p>rather than parent <a href="http://docs.jquery.com/Traversing/closest" rel="nofollow">http://docs.jquery.com/Traversing/closest</a> Parent only gets the direct parent. </p> http://stackoverflow.com/questions/1801240/how-to-edit-the-setup-exe-in-visual-c/1801671#1801671 0 Answer by stimms for How to edit the setup exe in Visual [C#] stimms 2009-11-26T05:17:45Z 2009-11-26T05:17:45Z <p>It sounds like you might be using a setup project in visual studio. There is a really good tutorial on the basics of setup projects at <a href="http://www.dreamincode.net/forums/showtopic58021.htm" rel="nofollow">http://www.dreamincode.net/forums/showtopic58021.htm</a> </p> http://stackoverflow.com/questions/1801650/possible-to-force-a-script-to-use-certain-amount-of-cpu-and-memory/1801663#1801663 1 Answer by stimms for possible to force, a script to use certain amount of CPU and memory ? stimms 2009-11-26T05:12:48Z 2009-11-26T05:12:48Z <p>sleep will sleep the current thread for some period of time. Your cpu load goes down because your programme isn't doing anything for that time. The kernel should handle ensuring that your CPU has sufficient time for all the programmes running. </p> http://stackoverflow.com/questions/1801559/array-storage-in-sqlite/1801643#1801643 1 Answer by stimms for Array storage in sqlite stimms 2009-11-26T05:07:42Z 2009-11-26T05:07:42Z <p>Please don't store multiple values in a single column, it makes for much harder queries. You're best to put in another table with a foreign key back to your first table. </p> <pre><code> Table 1 playerID playerName Table 2 scoreID playerID score </code></pre> <p>Add multiple rows into table 2 and have the playerID in the second table reference playerID in the first table. </p> http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1798141#1798141 2 Answer by stimms for What do you do to write better code? stimms 2009-11-25T16:26:28Z 2009-11-25T16:26:28Z <p>Code Katas are a good exercise in improving how you code. You can read more about it and get some problems <a href="http://codekata.pragprog.com/" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1798117/pulling-branch-gets-unable-to-connect-error 1 Pulling branch gets unable to connect error stimms 2009-11-25T16:23:39Z 2009-11-25T16:23:39Z <p>I was hoping somebody might be able to give me a hand by pointing out where I'm going wrong with github. I have my branch cloned down to my machine and I'm attempting to fetch from another user's branch on github.</p> <pre><code>&gt;git remote add rally25rs git://github.com/rally25rs/SubSonic-3.0.git &gt;git fetch rally25rs master github.com[0: 207.97.227.239]: errorno=No error fatal: unable to connect a socket (No error) </code></pre> <p>As far as I can tell this is the correct procedure. </p> http://stackoverflow.com/questions/1371313/silverlight-and-desktop-drag-and-drop 1 Silverlight and desktop drag and drop stimms 2009-09-03T03:35:25Z 2009-11-24T16:25:03Z <p>Is there, in silverlight, the ability to drag and drop files from the desktop into the browser? I seem to remember seeing something about it being a feature in silverlight 3. </p> http://stackoverflow.com/questions/641318/test-probabilistic-functions 5 Test Probabilistic Functions stimms 2009-03-13T02:59:00Z 2009-11-23T20:49:26Z <p>I need a function which returns an array in random order. I want to ensure that it is randomish but I have no idea how one would go about writing the tests to ensure that the array really is random. I can run the code a bunch of times and see if I have the same answer more than once. While collisions are unlikely for large arrays it is highly probable for small arrays (say two elements). </p> <p>How should I go about it? </p> http://stackoverflow.com/questions/1784959/setup-creation-for-web-application/1785003#1785003 3 Answer by stimms for setup creation for web application? stimms 2009-11-23T18:18:43Z 2009-11-23T18:18:43Z <p>You're in luck a new tool has been put out by microsoft to make this much easier. Take a look at <a href="http://weblogs.asp.net/scottgu/archive/2009/06/02/microsoft-web-platform-installer.aspx" rel="nofollow">Scott Gu's blog</a></p> http://stackoverflow.com/questions/1779317/best-way-to-handle-concurrency-issues/1779337#1779337 0 Answer by stimms for Best way to handle concurrency issues stimms 2009-11-22T17:25:21Z 2009-11-22T17:25:21Z <p>Your approach of querying the database is the best one. If you do it every 5 seconds and you have 15 concurrent users then you're looking at ~3 queries a second. It should be a very small query too, returning only one row of data. If your database can't handle 3 transactions a second then you might have to look at a better database because 3 queries/second is nothing. </p> <p>Timestamp the records in the table so you can quickly see if anything has changed without having to diff each field. </p> http://stackoverflow.com/questions/1770729/like-function-in-a-dataset-stored-in-memory-the-same-as-like-function-in-sql/1770743#1770743 0 Answer by stimms for "Like" function in a dataset stored in memory ( The same as like function in SQL ) stimms 2009-11-20T14:23:50Z 2009-11-20T14:23:50Z <p>You, my friend, are in need of some LINQ. It is a generic query language which can, through the use of various providers, query SQL based data stores as well as in memory objects like lists. <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/netframework/aa904594.aspx</a></p> http://stackoverflow.com/questions/1770632/is-it-possible-to-view-an-excel-file-on-linux/1770654#1770654 1 Answer by stimms for Is it possible to View an Excel file on Linux stimms 2009-11-20T14:09:05Z 2009-11-20T14:09:05Z <p>There are a bunch of tool you could use. <a href="http://www.openoffice.org/" rel="nofollow">Open office</a> is a very popular bet but there is also the <a href="http://koffice.org" rel="nofollow">koffice</a> suite. </p> http://stackoverflow.com/questions/1770591/coding-everything-in-java-opinions-please/1770615#1770615 1 Answer by stimms for Coding EVERYTHING in Java - opinions please stimms 2009-11-20T14:04:51Z 2009-11-20T14:04:51Z <p>If your team's skills are with java then this probably makes some sense. You might want to look at using <a href="http://groovy.codehaus.org/" rel="nofollow">groovy</a> which is a python like language which runs on the JVM. You still have access to all the same java libraries but it can be quicker to do small things with it. Jython is another option.</p> http://stackoverflow.com/questions/1767832/update-portions-of-data-in-oracle/1767849#1767849 5 Answer by stimms for Update portions of Data in Oracle stimms 2009-11-20T01:54:42Z 2009-11-20T12:42:55Z <p>Looks like you could get away with replacing "1:" with "1,"</p> <pre><code>update IPDATA set info=replace(info, '1:', '1,' ) where info like('%ZZZ Gateway gen1:gen2%') </code></pre> http://stackoverflow.com/questions/1768421/how-to-get-info-the-author-his-comments-for-the-last-subversion-revision-via-com/1768432#1768432 1 Answer by stimms for How to get info: The Author/his Comments for the last subversion revision via command line? stimms 2009-11-20T05:00:39Z 2009-11-20T05:00:39Z <p>The command is </p> <pre><code>svn log </code></pre> <p>The -l [Number] flag is useful, it limits the number of revisions you're shown. </p> http://stackoverflow.com/questions/1768416/ok-this-worked-what-is-it-exactly/1768423#1768423 1 Answer by stimms for ok, this worked. what is it exactly? stimms 2009-11-20T04:57:47Z 2009-11-20T04:57:47Z <p>It is a sort function called on a list and the thing being passed into it is a delegate which is called by Sort() to actually do the comparison between two elements. </p> <p>MSDN page on the function <a href="http://msdn.microsoft.com/en-us/library/0e743hdt.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0e743hdt.aspx</a></p> http://stackoverflow.com/questions/1767898/displaying-label-control-depending-on-condition/1767902#1767902 0 Answer by stimms for Displaying label control depending on condition stimms 2009-11-20T02:13:24Z 2009-11-20T02:13:24Z <p>You would have to write a cookie to the client on page 2 then check for its existence upon loading page 1. If they have the cookie don't show the label. There is a pretty good jquery cookie plugin <a href="http://www.electrictoolbox.com/jquery-cookies/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1822754/log-user-activity-on-asp-net-mvc-application/1823494#1823494 Comment by stimms on Log User Activity on ASP.NET MVC Application stimms 2009-12-01T22:31:32Z 2009-12-01T22:31:32Z I have used postsharp and MVC together without issue. http://stackoverflow.com/questions/1823354/asp-net-mvc-showing-model-data-based-on-roles/1823448#1823448 Comment by stimms on ASP.Net MVC - Showing Model data based on Roles stimms 2009-12-01T15:26:14Z 2009-12-01T15:26:14Z Yeah you can either link them in at the asp level <a href="http://blogs.intesoft.net/post/2009/02/renderaction-versus-renderpartial-aspnet-mvc.aspx" rel="nofollow">blogs.intesoft.net/post/2009/&hellip;</a> or pull them in using javascript <a href="http://www.codeproject.com/KB/aspnet/JQueryPartial.aspx" rel="nofollow">codeproject.com/KB/aspnet/&hellip;</a> http://stackoverflow.com/questions/1822754/log-user-activity-on-asp-net-mvc-application/1823494#1823494 Comment by stimms on Log User Activity on ASP.NET MVC Application stimms 2009-12-01T15:13:38Z 2009-12-01T15:13:38Z Configuration, no. However it isn't just for logging so you kind of have to roll your own approach to it. http://stackoverflow.com/questions/1823008/subsonic-cant-decide-which-property-to-consider-the-key-foreign-key-issue Comment by stimms on Subsonic : Can’t decide which property to consider the Key? foreign key issue. stimms 2009-12-01T01:21:16Z 2009-12-01T01:21:16Z Are you regenerating just the active record template or all of them? http://stackoverflow.com/questions/1821090/process-for-handling-expiring-airline-miles Comment by stimms on Process for handling expiring airline miles stimms 2009-11-30T17:12:03Z 2009-11-30T17:12:03Z Everybody hates having their air miles expire. I don't know if we should help on this one ;) http://stackoverflow.com/questions/1784788/activerecord-fundamentally-incompatible-with-composite-keys/1819060#1819060 Comment by stimms on ActiveRecord fundamentally incompatible with composite keys? stimms 2009-11-30T14:55:13Z 2009-11-30T14:55:13Z It is on a branch at github, <a href="http://github.com/stimms/SubSonic-3.0" rel="nofollow">github.com/stimms/SubSonic-3.0</a> under the compositKeys branch. http://stackoverflow.com/questions/1815617/jquery-lightbox-plugin-by-balupton Comment by stimms on jQuery lightBox plugin by balupton stimms 2009-11-29T16:42:30Z 2009-11-29T16:42:30Z wow that is the craziest Ajax bible ever http://stackoverflow.com/questions/1801240/how-to-edit-the-setup-exe-in-visual-c/1801671#1801671 Comment by stimms on How to edit the setup exe in Visual [C#] stimms 2009-11-26T20:44:53Z 2009-11-26T20:44:53Z There are lots of other setup options. WiX is pretty easy to figure out. <a href="http://wix.sourceforge.net/" rel="nofollow">wix.sourceforge.net</a> http://stackoverflow.com/questions/1798117/pulling-branch-gets-unable-to-connect-error Comment by stimms on Pulling branch gets unable to connect error stimms 2009-11-25T19:37:14Z 2009-11-25T19:37:14Z Windows 7 and git 1.6.5.1.1367.gcd48 http://stackoverflow.com/questions/1798117/pulling-branch-gets-unable-to-connect-error Comment by stimms on Pulling branch gets unable to connect error stimms 2009-11-25T16:49:14Z 2009-11-25T16:49:14Z Eimantas, I do indeed. I've messed that up before, but I get a different error message. http://stackoverflow.com/questions/1784788/activerecord-fundamentally-incompatible-with-composite-keys Comment by stimms on ActiveRecord fundamentally incompatible with composite keys? stimms 2009-11-23T23:34:19Z 2009-11-23T23:34:19Z I've actually completed my changes to subsonic which were not as difficult as I had expected. Seems to work okay at the moment but more testing is required. http://stackoverflow.com/questions/1777994/select-country-first-from-a-dropdown-menu-then-region-and-then-city/1778009#1778009 Comment by stimms on select country first from a dropdown menu, then region and then city? stimms 2009-11-22T06:37:21Z 2009-11-22T06:37:21Z Option 2 sounds like the best. http://stackoverflow.com/questions/1770577/dns-for-dynamic-ip Comment by stimms on dns for dynamic IP stimms 2009-11-20T14:07:57Z 2009-11-20T14:07:57Z I would even say superuser. http://stackoverflow.com/questions/1767832/update-portions-of-data-in-oracle/1767849#1767849 Comment by stimms on Update portions of Data in Oracle stimms 2009-11-20T03:31:56Z 2009-11-20T03:31:56Z Is there some way in which this approach is defficient? http://stackoverflow.com/questions/1767880/what-character-encoding-is-this/1767891#1767891 Comment by stimms on What character encoding is this? stimms 2009-11-20T02:17:18Z 2009-11-20T02:17:18Z Wow, very impressive