User Bless Yahu - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T08:05:51Zhttp://stackoverflow.com/feeds/user/32120http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/252658/can-offline-web-apps-be-a-replacement-for-desktop-apps0Can offline web apps be a replacement for desktop apps?Bless Yahu2008-10-31T05:14:12Z2009-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#17330200Answer by Bless Yahu for CSS: force image width and height without stretchingBless Yahu2009-11-14T02:22:52Z2009-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#17330032Answer by Bless Yahu for Tips to keep focused during code reviewsBless Yahu2009-11-14T02:16:59Z2009-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#15571700Answer by Bless Yahu for JQuery Click event on asp:buttonBless Yahu2009-10-12T21:58:46Z2009-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-be0What would your Printable CEO developer goals be? [closed]Bless Yahu2009-08-11T18:12:16Z2009-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-moving0Using thread.join to make sure all threads in a collection execute before moving onBless Yahu2009-02-12T23:17:08Z2009-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#12490461Answer by Bless Yahu for ASP.NET MVC/jQuery: Inplace EditingBless Yahu2009-08-08T14:38:58Z2009-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();
<div class="item">
[markup]
</div>
$("#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#9727101Answer by Bless Yahu for Typed Dataset along with DtosBless Yahu2009-06-09T21:56:39Z2009-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#5444890Answer by Bless Yahu for Properly bind a Windows Forms Datagrid to an arrayBless Yahu2009-02-13T02:13:28Z2009-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#5444411Answer by Bless Yahu for HTTP Post in C# console app doesn't return the same thing as a browser requestBless Yahu2009-02-13T01:53:12Z2009-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-dataset1How do you get child bands in ultragrid without using related tables in a dataset?Bless Yahu2008-11-05T20:23:33Z2008-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#2755120Answer 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 Yahu2008-11-09T02:14:16Z2008-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#2755091Answer by Bless Yahu for Best practices for project organization with ASP.NET MVCBless Yahu2008-11-09T02:11:03Z2008-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#2754410Answer by Bless Yahu for db4o client/server appears to only be able to process one query at a time?Bless Yahu2008-11-09T00:45:49Z2008-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#2744050Answer by Bless Yahu for Is there a way to asynchronously filter an IList?Bless Yahu2008-11-08T05:31:05Z2008-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#2738241Answer by Bless Yahu for Resharper region options on Alt+InsertBless Yahu2008-11-07T22:19:25Z2008-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#2724361Answer by Bless Yahu for How do you get child bands in ultragrid without using related tables in a dataset?Bless Yahu2008-11-07T15:28:31Z2008-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#2626271Answer by Bless Yahu for Is SPRING.Net the best framework for Aspect Oriented Programming(AOP)?Bless Yahu2008-11-04T17:35:30Z2008-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#2590930Answer by Bless Yahu for Can offline web apps be a replacement for desktop apps?Bless Yahu2008-11-03T16:01:39Z2008-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#2475991Answer by Bless Yahu for Anyone Actually Using F# in Production?Bless Yahu2008-10-29T17:02:55Z2008-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#2475610Answer by Bless Yahu for Errors in Aspect Oriented Programming with Policy InjectionBless Yahu2008-10-29T16:52:35Z2008-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#813713Comment by Bless Yahu on Check for column name in a SqlDataReader objectBless Yahu2009-08-07T16:13:21Z2009-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#213047Comment by Bless Yahu on TFS Sprint Item Print Plug-inBless Yahu2009-07-31T17:26:36Z2009-07-31T17:26:36ZWhere do you put the "How to Demo" field in TFS?http://stackoverflow.com/questions/8921/how-can-you-tell-whether-youre-ready-to-start-your-own-blog/181051#181051Comment by Bless Yahu on How can you tell whether you're ready to start your own blog?Bless Yahu2009-06-04T14:43:04Z2009-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#927686Comment by Bless Yahu on How to add text in a multiline textbox?Bless Yahu2009-05-29T19:30:58Z2009-05-29T19:30:58ZYou should mark this as the answer then.http://stackoverflow.com/questions/2861/options-for-html-scraping/5126#5126Comment by Bless Yahu on Options for HTML scraping?Bless Yahu2008-11-22T20:16:24Z2008-11-22T20:16:24Zcombine linq with it and it seems more like HTMLSQL, no?http://stackoverflow.com/questions/9033/hidden-features-of-c/270430#270430Comment by Bless Yahu on Hidden Features of C#?Bless Yahu2008-11-22T05:25:49Z2008-11-22T05:25:49ZIs this similiar to what castle dynamic proxy does?http://stackoverflow.com/questions/252658/can-offline-web-apps-be-a-replacement-for-desktop-apps/252661#252661Comment by Bless Yahu on Can offline web apps be a replacement for desktop apps?Bless Yahu2008-11-08T01:23:42Z2008-11-08T01:23:42ZThat is correct. Editing question.http://stackoverflow.com/questions/252658/can-offline-web-apps-be-a-replacement-for-desktop-appsComment by Bless Yahu on Can offline web apps be a replacement for desktop apps?Bless Yahu2008-11-08T01:23:08Z2008-11-08T01:23:08ZI was more talking about the inking integration in apps. Guess I can edit that in.