User Bless Yahu - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T08:05:51Z http://stackoverflow.com/feeds/user/32120 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/252658/can-offline-web-apps-be-a-replacement-for-desktop-apps 0 Can offline web apps be a replacement for desktop apps? Bless Yahu 2008-10-31T05:14:12Z 2009-11-23T00:00:02Z <p>I work on a desktop sales app that is run off a tablet and was wondering if this and other "traditional" desktop tablet applications could be viable as a offline web application. The main difference with tablet applications being the inking support. I think a web app can get close with browser gestures.</p> http://stackoverflow.com/questions/1733006/css-force-image-width-and-height-without-stretching/1733020#1733020 0 Answer by Bless Yahu for CSS: force image width and height without stretching Bless Yahu 2009-11-14T02:22:52Z 2009-11-14T02:22:52Z <p>you can try setting the padding instead of the height/width.</p> http://stackoverflow.com/questions/1454664/tips-to-keep-focused-during-code-reviews/1733003#1733003 2 Answer by Bless Yahu for Tips to keep focused during code reviews Bless Yahu 2009-11-14T02:16:59Z 2009-11-14T02:16:59Z <p>I usually traverse through a feature at a time, gui down to db/reporsitory layer.</p> <p>If comments are not there, I will add comments of what I think is going on.</p> <p>I'll keep a mindmap/wiki of my understanding of the system. A mindmap tends to be easier to pickup after taking a break.</p> <p>I would talk about my findings with other teammates.</p> http://stackoverflow.com/questions/716827/jquery-click-event-on-aspbutton/1557170#1557170 0 Answer by Bless Yahu for JQuery Click event on asp:button Bless Yahu 2009-10-12T21:58:46Z 2009-10-12T21:58:46Z <p>ASP.NET adds to you id (example: id "selectButton" becomes "ctl00_middleContent_gvPeople_ctl04_selectButton");</p> <p>Use the jquery syntax to search for the part of the id that doesn't change.</p> <p>$("[id='_selectButton']")</p> http://stackoverflow.com/questions/1262061/what-would-your-printable-ceo-developer-goals-be 0 What would your Printable CEO developer goals be? [closed] Bless Yahu 2009-08-11T18:12:16Z 2009-08-11T18:13:52Z <p>I've been admirer of the <a href="http://davidseah.com/blog/the-printable-ceo/" rel="nofollow">Printable CEO</a> as a way to manage goals. I modified some of the goals to be compatible with a contractor's role, and was wondering what the goals for other developers would be. Please list profession and goals with score points next to them.</p> http://stackoverflow.com/questions/543968/using-thread-join-to-make-sure-all-threads-in-a-collection-execute-before-moving 0 Using thread.join to make sure all threads in a collection execute before moving on Bless Yahu 2009-02-12T23:17:08Z 2009-08-09T07:30:24Z <p>Is there a problem with this type of implementation to wait for a batch of threads to complete before moving on, given the following circumstances?:</p> <ul> <li>CCR or PFX cannot be used.</li> <li>Customer.Prices collection and newCustomer are NOT being mutated.</li> <li>CloneCustomerPrices performs a deep copy on each of the prices in Customer.Prices collection into a new price Collection.</li> </ul> <pre> public List[Customer] ProcessCustomersPrices(List [Customer] Customers) { [Code to check Customers and deep copy Cust data into newCustomers] List[Thread] ThreadList = new List[Thread](); foreach(Customer cust in Customers) { ThreadList.Add(new Thread(() => CloneCustomerPrices(cust.Prices, newCustomer))); } Action runThreadBatch = () => { ThreadList.ForEach(t => t.Start()); ThreadList.All (t => t.Join([TimeOutNumber])); }; runThreadBatch(CopyPriceModelsCallback, null); [More Processing] return newCustomers; } </pre> http://stackoverflow.com/questions/1248212/asp-net-mvc-jquery-inplace-editing/1249046#1249046 1 Answer by Bless Yahu for ASP.NET MVC/jQuery: Inplace Editing Bless Yahu 2009-08-08T14:38:58Z 2009-08-08T14:38:58Z <p>Store the markup for the edit in a variable, store the current markup before the edit in a variable (so you can revert if the cancel button is pressed) and then switch it out using jquery:</p> <pre><code>var editmarkupvariable = [editmarkup]; var revertmarkup = $("#item").html(); &lt;div class="item"&gt; [markup] &lt;/div&gt; $("#item").html(editmarkupvariable); </code></pre> <p>This tutorial gives more detail: <a href="http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-brary/15/" rel="nofollow">http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-brary/15/</a></p> <p>That should answer both your questions.</p> <p>I would google for a jquery plugin to to do this, unless you have to hand code it. Here is one: <a href="http://aktagon.com/projects/jquery/in-place-edit" rel="nofollow">http://aktagon.com/projects/jquery/in-place-edit</a></p> http://stackoverflow.com/questions/767488/typed-dataset-along-with-dtos/972710#972710 1 Answer by Bless Yahu for Typed Dataset along with Dtos Bless Yahu 2009-06-09T21:56:39Z 2009-06-09T21:56:39Z <p>Entity translation pattern comes to mind. <a href="http://msdn.microsoft.com/en-us/library/cc304747.aspx" rel="nofollow"> <a href="http://msdn.microsoft.com/en-us/library/cc304747.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc304747.aspx</a></a> <br /> Well, maybe a variation on it.</p> <p>I had to do something similiar recently, and I just created a another "layer" that translates the data stored in the datarow/datatable etc. into the data contract object. The service layer can call this new layer method with the results from your data-access method as a parameter. </p> <p>Here's a quick and dirty PSUEDOCODE example:</p> <pre><code> public class personTranslator { public static PersonDataContract TranslateToContract(Datarow personDataRow) { PersonDataContract resultPerson = new Person; resultPerson.FirstName = personDataRow["FirstName"]; resultPerson.LastName = personDataRow["LastName"]; . . [etc.] return resultPerson; } } </code></pre> <p>SERVICELAYER Class</p> <pre><code> public PersonDataContract GetSpecificPerson([Parameters]) { [other setup/validation code...] return PersonTranslator.TranslateToContract(PersonDataAccess.GetPersonRow([Parameters])); } </code></pre> http://stackoverflow.com/questions/544398/properly-bind-a-windows-forms-datagrid-to-an-array/544489#544489 0 Answer by Bless Yahu for Properly bind a Windows Forms Datagrid to an array Bless Yahu 2009-02-13T02:13:28Z 2009-02-13T02:13:28Z <p>This is off the top of my head, but I think you need to implement an event that gets fired when you change a grid cell or click the update button. </p> http://stackoverflow.com/questions/544411/http-post-in-c-console-app-doesnt-return-the-same-thing-as-a-browser-request/544441#544441 1 Answer by Bless Yahu for HTTP Post in C# console app doesn't return the same thing as a browser request Bless Yahu 2009-02-13T01:53:12Z 2009-02-13T01:53:12Z <p>In your code you a specify the post method, where when you POST the address in the browser it is most likely using a GET. Create a simple html form and specify POST as the method and your url as the action.</p> http://stackoverflow.com/questions/266507/how-do-you-get-child-bands-in-ultragrid-without-using-related-tables-in-a-dataset 1 How do you get child bands in ultragrid without using related tables in a dataset? Bless Yahu 2008-11-05T20:23:33Z 2008-11-12T15:23:57Z <p>I'm using linq to pull back an object (i.e. customer) that might have a collection of other objects(customer.orders). I would be nice if I can pass this list of customers to the ultragrid and a hierarchical view of customers and thier orders displayed on databind. When I try this, I just get customers. Anyone know how to get this to work with non dataset objects?</p> http://stackoverflow.com/questions/275444/what-are-the-most-common-typical-things-to-avoid-coding-into-my-asp-net-app-in-o/275512#275512 0 Answer by Bless Yahu for What are the most common, typical things to AVOID coding into my ASP.NET app in order for it to run under Medium Trust on a shared host? Bless Yahu 2008-11-09T02:14:16Z 2008-11-09T02:14:16Z <p>Make sure any third party libraries/frameworks (Castle comes to mind) are build (or can be built) in medium trust.</p> http://stackoverflow.com/questions/275490/best-practices-for-project-organization-with-asp-net-mvc/275509#275509 1 Answer by Bless Yahu for Best practices for project organization with ASP.NET MVC Bless Yahu 2008-11-09T02:11:03Z 2008-11-09T02:11:03Z <p>If you models are Domain Transfer Objects, then having them in a sepearate assembly will allow you to reuse them. If your app is a simple MVC app, and that's all there is to it, or you're just doing it to unit test, it's not needed. Otherwise you could:</p> <ul> <li><p>Have you web service layer use the models assembly to pass the model objects to the mvc app for use in your application. This would be needed if you practice not allowing web apps to have direct access to the database. In that case you might have a mvc that calls a web service to authenticate and pull the data.</p></li> <li><p>You intend building other applications using the same models, like the management tools you mentioned.</p></li> </ul> <p>I hope that helps. On a side note, you might want to put your "common" pieces in your own framework, which would include "models" (entities, domain objects, whatever name you like).</p> http://stackoverflow.com/questions/226681/db4o-client-server-appears-to-only-be-able-to-process-one-query-at-a-time/275441#275441 0 Answer by Bless Yahu for db4o client/server appears to only be able to process one query at a time? Bless Yahu 2008-11-09T00:45:49Z 2008-11-09T00:45:49Z <p>where is the client being created? I don't see that in the above code sample</p> http://stackoverflow.com/questions/61850/is-there-a-way-to-asynchronously-filter-an-ilist/274405#274405 0 Answer by Bless Yahu for Is there a way to asynchronously filter an IList? Bless Yahu 2008-11-08T05:31:05Z 2008-11-08T05:31:05Z <p>If your data is already rendered to the screen, you can access the dom and manipulate the dom and hide/remove the ones you want. I've done this with jquery, but the same should be possible with ASP.NET Ajax library. </p> http://stackoverflow.com/questions/264741/resharper-region-options-on-altinsert/273824#273824 1 Answer by Bless Yahu for Resharper region options on Alt+Insert Bless Yahu 2008-11-07T22:19:25Z 2008-11-07T22:19:25Z <p>there is usually a "wrap in regions" option towards the bottom of the dialog box, but not for this one. I would submit that to JetBrains as a request. For the time being, you'll have to select the generated methods and use the ctrl->E,U,5 (surroundwith shortcut) to get the expected result.</p> http://stackoverflow.com/questions/266507/how-do-you-get-child-bands-in-ultragrid-without-using-related-tables-in-a-dataset/272436#272436 1 Answer by Bless Yahu for How do you get child bands in ultragrid without using related tables in a dataset? Bless Yahu 2008-11-07T15:28:31Z 2008-11-07T15:28:31Z <p>Figured it out. IList collection works and will create bands for properties of your domain object if it is IList. Just make sure that DisplayLayout.ViewStyle = ViewStyle.MultiBand;.</p> http://stackoverflow.com/questions/246470/is-spring-net-the-best-framework-for-aspect-oriented-programmingaop/262627#262627 1 Answer by Bless Yahu for Is SPRING.Net the best framework for Aspect Oriented Programming(AOP)? Bless Yahu 2008-11-04T17:35:30Z 2008-11-04T17:35:30Z <p>An older post, but might help you see some of the pro/cons of products and AOP implementations.</p> <p><a href="http://ayende.com/Blog/archive/2007/07/02/7-Approaches-for-AOP-in-.Net.aspx" rel="nofollow">http://ayende.com/Blog/archive/2007/07/02/7-Approaches-for-AOP-in-.Net.aspx</a></p> http://stackoverflow.com/questions/252658/can-offline-web-apps-be-a-replacement-for-desktop-apps/259093#259093 0 Answer by Bless Yahu for Can offline web apps be a replacement for desktop apps? Bless Yahu 2008-11-03T16:01:39Z 2008-11-03T16:01:39Z <p>The main different is the inking (gesture) support.</p> http://stackoverflow.com/questions/179332/anyone-actually-using-f-in-production/247599#247599 1 Answer by Bless Yahu for Anyone Actually Using F# in Production? Bless Yahu 2008-10-29T17:02:55Z 2008-10-29T17:02:55Z <p>I used F# when it was first publicly available to crunch some numbers for a mobile web application. I think the application was determining how many vistors visited the site, what device they were using and what page where they directed to. I connected to the MSSql db, ran the sprocs which did some of the heavy lifting by giving me a subset of data, used a web service to get the location for the ip, and outputted the data to a csv file. Data was broken down by day, and I threaded the sproc calls and day calculations. All this in about 50 lines, and it ran pretty well. Bare bones, because I was still learning, but met the current need. For those that are wondering, the company did not have the resources to afford a reporting solution, so that is one of the reasons I spent a couple days writing this.</p> http://stackoverflow.com/questions/187782/errors-in-aspect-oriented-programming-with-policy-injection/247561#247561 0 Answer by Bless Yahu for Errors in Aspect Oriented Programming with Policy Injection Bless Yahu 2008-10-29T16:52:35Z 2008-10-29T16:52:35Z <p>Why not have your aspect that injects the policy validate it/handle errors that may occur?</p> http://stackoverflow.com/questions/373230/check-for-column-name-in-a-sqldatareader-object/813713#813713 Comment by Bless Yahu on Check for column name in a SqlDataReader object Bless Yahu 2009-08-07T16:13:21Z 2009-08-07T16:13:21Z @Steve J: When would the resultset NOT have a column in the GetSchemaTable? http://stackoverflow.com/questions/211488/tfs-sprint-item-print-plug-in/213047#213047 Comment by Bless Yahu on TFS Sprint Item Print Plug-in Bless Yahu 2009-07-31T17:26:36Z 2009-07-31T17:26:36Z Where do you put the &quot;How to Demo&quot; field in TFS? http://stackoverflow.com/questions/8921/how-can-you-tell-whether-youre-ready-to-start-your-own-blog/181051#181051 Comment by Bless Yahu on How can you tell whether you're ready to start your own blog? Bless Yahu 2009-06-04T14:43:04Z 2009-06-04T14:43:04Z :) that should make for an interesting blog. http://stackoverflow.com/questions/927679/how-to-add-text-in-a-multiline-textbox/927686#927686 Comment by Bless Yahu on How to add text in a multiline textbox? Bless Yahu 2009-05-29T19:30:58Z 2009-05-29T19:30:58Z You should mark this as the answer then. http://stackoverflow.com/questions/2861/options-for-html-scraping/5126#5126 Comment by Bless Yahu on Options for HTML scraping? Bless Yahu 2008-11-22T20:16:24Z 2008-11-22T20:16:24Z combine linq with it and it seems more like HTMLSQL, no? http://stackoverflow.com/questions/9033/hidden-features-of-c/270430#270430 Comment by Bless Yahu on Hidden Features of C#? Bless Yahu 2008-11-22T05:25:49Z 2008-11-22T05:25:49Z Is this similiar to what castle dynamic proxy does? http://stackoverflow.com/questions/252658/can-offline-web-apps-be-a-replacement-for-desktop-apps/252661#252661 Comment by Bless Yahu on Can offline web apps be a replacement for desktop apps? Bless Yahu 2008-11-08T01:23:42Z 2008-11-08T01:23:42Z That is correct. Editing question. http://stackoverflow.com/questions/252658/can-offline-web-apps-be-a-replacement-for-desktop-apps Comment by Bless Yahu on Can offline web apps be a replacement for desktop apps? Bless Yahu 2008-11-08T01:23:08Z 2008-11-08T01:23:08Z I was more talking about the inking integration in apps. Guess I can edit that in.