User flesh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:49:04Z http://stackoverflow.com/feeds/user/27805 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1945252/how-to-access-master-page-control-in-child-page-aspx-pagein-javscript/1945319#1945319 0 Answer by flesh for how to access master page control in child page .aspx page(in javscript) flesh 2009-12-22T09:54:10Z 2009-12-22T09:54:10Z <p>I use this little javascript util function:</p> <pre><code>// This function returns a control's (mangled) client id given its ASP.NET Id function GetClientId(strid) { var count = document.forms[0].length; var i = 0; var eleName; for (i = 0; i &lt; count; i++) { eleName = document.forms[0].elements[i].id; pos = eleName.indexOf(strid); if (pos &gt;= 0) break; } return '#' + eleName; } </code></pre> http://stackoverflow.com/questions/236381/integrating-pop3-client-functionality-into-a-c-application 18 Integrating POP3 client functionality into a C# application? flesh 2008-10-25T13:09:57Z 2009-12-21T23:30:56Z <p>I have a web application that requires a server based component to periodically access POP3 email boxes and retrieve emails. The service then needs to process the emails which will involve:</p> <ul> <li>Validating the email against some business rules (does it contain a valid reference in the subject line, which user sent the mail, etc.)</li> <li>Analysing and saving any attachments to disk</li> <li>Take the email body and attachment details and create a new item in the database</li> <li>Or update an existing item where the reference matches the incoming email subject line</li> </ul> <p>What is the best way to approach this? I really don't want to have to write a POP3 client from scratch, but I need to be able to customize the processing of emails. Ideally I would be able to plug in some component that does the access and retrieval for me, returning arrays of attachments, body text, subject line, etc. ready for my processing...</p> <p><strong>[ UPDATE: Reviews ]</strong></p> <p>OK, so I have spent a fair amount of time looking into (mainly free) .NET POP3 libraries so I thought I'd provide a short review of some of those mentioned below and a few others:</p> <ul> <li><a href="http://weblogs.shockbyte.com.ar/rodolfof/archive/2008/07/07/pop3.net-library.aspx" rel="nofollow">Pop3.net</a> - free - works OK, very basic in terms of functionality provided. This is pretty much just the POP3 commands and some base64 encoding, but it's very straight forward - probably a good introduction</li> <li><a href="http://www.componentsource.com/products/seekford-net-pop3-wizard/index.html" rel="nofollow">Pop3 Wizard</a> - commercial / some open source code - couldn't get this to build, missing DLLs, I wouldn't bother with this </li> <li><a href="http://www.codeplex.com/csharpmail" rel="nofollow">C#Mail</a> - free - works well, comes with Mime parser and SMTP client, however the comments are in Japanese (not a big deal) and it didn't work with SSL 'out of the box' - I had to change the SslStream constructor after which it worked no problem</li> <li><a href="http://sourceforge.net/projects/hpop/" rel="nofollow">OpenPOP</a> - free - hasn't been updated for about 5 years so it's current state is .NET 1.0, doesn't support SSL but that was no problem to resolve - I just replaced the existing stream with an SslStream and it worked. Comes with Mime parser.</li> </ul> <p>Of the free libraries, I'd go for C#Mail or OpenPOP.</p> <p>I looked at a few commercial libraries: <a href="http://www.chilkatsoft.com/" rel="nofollow">Chillkat</a>, <a href="http://www.rebex.net/" rel="nofollow">Rebex</a>, <a href="http://remobjects.com/" rel="nofollow">RemObjects</a>, <a href="http://tech.dimac.net/default2.asp?M=Products/MenuDOTNET.asp&amp;P=Products/JMaildotnet/start.htm" rel="nofollow">JMail.net</a>. Based on features, price and impression of the company I would probably go for Rebex and may in the future if my requirements change or I run into production issues with either of C#Mail or OpenPOP.</p> <p>In case anyone's needs it, this is the replacement SslStream constructor that I used to enable SSL with C#Mail and OpenPOP:</p> <pre><code> SslStream stream = new SslStream(clientSocket.GetStream(), false, delegate(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors errors) { return true; }); </code></pre> http://stackoverflow.com/questions/1924447/walking-a-linux-unix-filesystem-with-java 1 Walking a Linux/Unix filesystem with Java? flesh 2009-12-17T20:43:38Z 2009-12-17T21:10:37Z <p>I need to create a Java util that will recurse its way through a Unix (and/or Linux) filesystem and build an object model of the directory structure, retrieve file info - size, created date, last accessed date etc - plus I need to retrieve info on the physical storage device the files are sitting on. Ideally, this util will be portable. I have no experience of the Java standard libraries and only limited experience of Unix OS. </p> <p>Are there Java standard libraries that will handle working with the Unix filesystem? Or am I going to have to make native calls through some API and then worry about portability? What options do I have? </p> http://stackoverflow.com/questions/285512/is-there-any-way-to-hide-a-javascript-file-from-intellisense-in-visual-studio-2 3 Is there any way to 'hide' a JavaScript file from IntelliSense in Visual Studio 2008? flesh 2008-11-12T21:50:52Z 2009-12-14T20:30:24Z <p>I have a third party JavaScript plug-in but including the file breaks IntelliSense for jQuery amongst other things. The only way I can get IntelliSense back working with jQuery is by commenting out the plug-in. Is there a way I can hide the plug-in file from the IntelliSense parser?</p> http://stackoverflow.com/questions/1901032/how-to-share-a-system-object-in-memory-between-two-or-more-programs/1901059#1901059 1 Answer by flesh for how to share a System.Object in memory between two or more programs? flesh 2009-12-14T13:51:43Z 2009-12-14T13:51:43Z <p>You want to look at <a href="http://msdn.microsoft.com/en-us/netframework/aa663324.aspx" rel="nofollow">WCF</a> - Microsoft's consolidated WebServices and Remoting framework. It provides a number of options for inter process communication, from XML over http to binary over TCP/IP or Named Pipes. </p> <p>Some further articles:</p> <ul> <li><a href="http://www.infoq.com/news/2008/01/wcf-comm-options" rel="nofollow">http://www.infoq.com/news/2008/01/wcf-comm-options</a></li> <li><a href="http://en.wikipedia.org/wiki/Windows%5FCommunication%5FFoundation" rel="nofollow">http://en.wikipedia.org/wiki/Windows_Communication_Foundation</a></li> </ul> http://stackoverflow.com/questions/1898301/linq-to-sql-how-to-actively-grab-linked-objects/1898365#1898365 2 Answer by flesh for Linq-to-sql: How to actively grab linked objects? flesh 2009-12-14T00:32:12Z 2009-12-14T00:32:12Z <p>I <em>think</em> you can do it with some of the <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.dataloadoptions.aspx" rel="nofollow">DataLoadOptions</a> ..</p> http://stackoverflow.com/questions/1887954/free-webstorage-that-is-accessible-via-code/1888001#1888001 1 Answer by flesh for Free webstorage that is accessible via code. flesh 2009-12-11T13:15:02Z 2009-12-11T13:30:26Z <p>Some of the the <a href="http://wiki.dropbox.com/DropboxAddons" rel="nofollow">Dropbox addons</a> provide various Ruby, Python and PHP scripts and APIs for interacting with your storage space. I would probably start with the Ruby API and write a quick C# version if I were you. </p> <p>If you do, can you publish it? :)</p> http://stackoverflow.com/questions/1876818/process-tools-management-techniques-required-for-re-engineering-a-java-software/1876861#1876861 3 Answer by flesh for Process, Tools, Management Techniques Required For Re-engineering A Java Software Project flesh 2009-12-09T21:03:26Z 2009-12-09T21:03:26Z <ul> <li>define a clear plan of what you're trying to achieve and where you're going</li> <li>write tests for as much new and old code as you can to ensure you're preserving behaviour and creating a good test suite going forward</li> <li>refactor small chunks at a time, it adds up eventually</li> <li>work with discrete vertical slices of functionality if you can to prevent breaking changes cascading through the code</li> <li>make sure you build regularly</li> <li>use source control</li> </ul> <p>basically, all the accepted good practice you should have used from the start ;)</p> http://stackoverflow.com/questions/1874297/c-good-coding-style-always-fully-qualify-library-types 4 C++ good coding style - always fully qualify library types? flesh 2009-12-09T14:33:01Z 2009-12-09T16:30:48Z <p>What is generally considered good coding style in C++ where you use types from the standard library? For example, if I have a <code>using namespace std;</code> directive would you still expect to see library types fully qualified like so: <code>std::string</code> or is it acceptable to just use <code>string</code> as the type identifier?</p> <p>If you do fully qualify, can you expain the rationale behind it?</p> http://stackoverflow.com/questions/1869366/adding-wcf-service-reference-to-java-application/1869407#1869407 0 Answer by flesh for Adding WCF Service Reference To Java Application flesh 2009-12-08T19:53:13Z 2009-12-08T19:53:13Z <p>The whole point about web services is that they are interoperable - how do you think any application communicates with a web service? Answer: your service provides a WDSL document (Web Services Description Language) and your Java console app communicates with it, according to the WDSL, via SOAP messaging.</p> http://stackoverflow.com/questions/317095/how-do-i-add-options-to-a-dropdownlist-using-jquery 7 How do I add options to a DropDownList using jQuery? flesh 2008-11-25T11:42:56Z 2009-12-07T10:31:27Z <p>As the question says, how do I add a new option to a DropDownList using jQuery?</p> <p>Thanks</p> http://stackoverflow.com/questions/1851818/how-does-one-go-about-evangelizing-a-language/1851844#1851844 4 Answer by flesh for How does one go about "evangelizing" a language? flesh 2009-12-05T10:39:50Z 2009-12-05T10:39:50Z <p>Don't take this the wrong way, but I am a pragmatist in virtually everything I do. I find 'evangelists' (for anything, not just platforms or languages) patronising. I am big enough to think for myself. If the thing that you're promoting has good features, and is likely to be useful to me, then I may chose to adopt it of my own free will. But please don't try to push things at me. I am more likely to ignore you :)</p> http://stackoverflow.com/questions/1842860/why-does-asp-listbox-take-so-long-to-render-in-ajax-update-panel/1842888#1842888 1 Answer by flesh for Why does ASP ListBox take so long to render in AJAX update panel? flesh 2009-12-03T21:00:11Z 2009-12-03T23:44:37Z <p>You do realise that UpdatePanel does a full postback don't you? Personally, I don't use it for that reason. You can do lightweight ajax ops on datasources and controls using jQuery and PageMethods. </p> <p><a href="http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/" rel="nofollow">This is a nice walkthrough</a>...</p> <p>Edit: <a href="http://www.schnieds.com/2008/02/improving-updatepanel-performance-with.html" rel="nofollow">article on full postback performance issues</a> </p> <p><code>When a PostBack occurs in an UpdatePanel the page’s entire ViewState is passed to the server, updated, and then the updates are passed back down to the ASP.NET page. So the size of your page’s ViewState has a HUGE effect on the performance of your UpdatePanel postbacks.</code></p> http://stackoverflow.com/questions/1835672/resources-of-designing-a-website-permission-scheme/1835850#1835850 0 Answer by flesh for Resources of designing a website permission scheme flesh 2009-12-02T21:10:49Z 2009-12-02T21:18:33Z <p>These ideas may or may not be any good for you, but I built a web-based, permission driven system, from scratch (I needed low level control to integrate with another system), like so:</p> <ul> <li>Users or groups may have permissions </li> <li>A user's effective permission set is the superset of all Allows and Denys for the user and the groups that user is a member of</li> <li>Denys override Allows</li> <li>User level permissions override any group settings (allowing you to priviledge admins, supervisors etc)</li> <li>A user's effective permission set is stored in session when they login and then permissions are tested via a permissions manager (using bitwise ops)</li> <li><p>Each permission area has it's own bit mask, and these are stored in the db, allowing you to auto generate a permissions utility class as part of your build process. The utility class looked like so:</p> <pre><code>public static class Area1 { public static int AreaId { get { return 1; } } public static int Permission1 { get { return 1; } } public static int Permission2 { get { return 2; } } public static int Permission3 { get { return 4; } } } public static class Area2 { public static int AreaId { get { return 2; } } public static int Permission1 { get { return 1; } } public static int Permission2 { get { return 2; } } public static int Permission3 { get { return 4; } } public static int Permission4 { get { return 8; } } public static int Permission5 { get { return 16; } } } </code></pre> <p>etc ...</p></li> <li><p>Then you can define a permissions base page:</p> <pre><code>public class PermissionsPage: BasePage { int _permissionAreaId; int _permissionValue; string _page; public PermissionsPage(int permissionAreaId, int permissionValue) : base() { Init += new EventHandler(PermissionsPage_Init); _permissionTypeId = permissionTypeId; _permissionValue = permissionValue; } void PermissionsPage_Init(object sender, EventArgs e) { if (!IsPostBack) { _page = Request.Url.Segments.Last(); if (!PermissionsManager.TestPermission(UserWebSession.User, _permissionTypeId, _permissionValue)) { // handle permission denied } else { // log page access } } } </code></pre> <p>}</p></li> <li><p>The utility file then allows you to do this kind of thing during development:</p> <pre><code>public partial class yourControlledPage : PermissionsPage { // test permission over an entire page public yourControlledPage() : base(PermissionDef.Area1.AreaId, PermissionDef.Area1.Permission1) { } } </code></pre></li> <li><p>or</p> <pre><code> // test permission over a specific control yourDropDownList.Enabled = PermissionsManager.TestPermission(UserWebSession.User, PermissionDef.Area2.AreaId, PermissionDef.Area2.Permission4); </code></pre></li> </ul> <p>*Where 'Area1' and 'Permission1' for example are replaced with meaningful names.. obviously!</p> <p>Then again, there may well be third party libraries you can plug in quite nicely and do all you need... </p> http://stackoverflow.com/questions/1835605/natural-language-processing-find-obscenities-in-english/1835643#1835643 0 Answer by flesh for Natural Language Processing: Find obscenities in English? flesh 2009-12-02T20:40:27Z 2009-12-02T20:40:27Z <p>It depends what your text source is, but I'd go for some kind of established and proven pattern matching algorithm, using a <a href="http://en.wikipedia.org/wiki/Suffix%5Ftree" rel="nofollow">Trie</a> for example.</p> http://stackoverflow.com/questions/1835527/using-an-expression-tree-to-read-the-name-and-value-of-a-property-is-there-an-al/1835544#1835544 1 Answer by flesh for Using an expression tree to read the name and value of a property. Is there an alternative? flesh 2009-12-02T20:23:34Z 2009-12-02T20:23:34Z <p><a href="http://msdn.microsoft.com/en-us/library/ms173183%28VS.80%29.aspx" rel="nofollow">Reflection?</a></p> http://stackoverflow.com/questions/1835494/is-having-a-function-call-block-a-bad-design-process/1835508#1835508 2 Answer by flesh for Is having a function call block a bad design process? flesh 2009-12-02T20:18:09Z 2009-12-02T20:18:09Z <p>Why not use a <a href="http://en.wikipedia.org/wiki/Callback%5F%28computer%5Fscience%29" rel="nofollow">callback</a>?</p> http://stackoverflow.com/questions/1835286/best-architecture-for-a-public-queue-of-incoming-requests/1835361#1835361 0 Answer by flesh for Best Architecture for a Public Queue of Incoming Requests? flesh 2009-12-02T19:51:15Z 2009-12-02T19:51:15Z <p>Sounds to me like a scenario suited to the <a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">Observer Pattern.</a> This will allow you to roll future 'observers' (mobile devices, desktops etc) without the need to re-architect your core workflow application.</p> http://stackoverflow.com/questions/1832105/how-structure-whole-applications-in-visual-studio/1832132#1832132 0 Answer by flesh for How structure whole applications in Visual Studio? flesh 2009-12-02T10:48:31Z 2009-12-02T10:48:31Z <p>My preference is to create shared projects in some global area and add them into specific application configurations (solutions) where required. Non shared projects, specific to a solution, can live within that solution. Just bear in mind that changes to a shared project in one solution will affect that project in any other solutions that use it.</p> http://stackoverflow.com/questions/1821955/linq-dynamic-where-not-adding-clause/1822070#1822070 1 Answer by flesh for LINQ Dynamic Where - Not adding clause flesh 2009-11-30T20:00:41Z 2009-11-30T20:00:41Z <p>Try creating your where clause as:</p> <pre><code>Expression&lt;Func&lt;T, bool&gt;&gt; whereClause </code></pre> <p>Where the T parameter is your source type <code>Table&lt;T&gt; source</code></p> http://stackoverflow.com/questions/1821901/can-i-use-a-rich-domain-model-with-wcf/1821970#1821970 1 Answer by flesh for Can I use a rich domain model with WCF? flesh 2009-11-30T19:45:40Z 2009-11-30T19:45:40Z <p>Generally speaking you serialize your domain objects for transmission across WCF as some simplified DTO anyway, and it's these that are consumed by your client application. </p> <p>You can <a href="http://stackoverflow.com/questions/438669/how-do-you-return-a-user-defined-type-from-a-wcf-service">serialize user defined types</a> and deserialize them in the client but for most applications this is unnecessary. As long as you don't need the 'rich' behaviour of your objects in your client (which you shouldn't with a good DDD anyway), it sounds to me like you are fine to use a rich design in your service layer and send simple DTOs across the wire. </p> http://stackoverflow.com/questions/1821735/putting-dataset-fields-in-textboxes/1821898#1821898 1 Answer by flesh for Putting dataset fields in textboxes flesh 2009-11-30T19:32:44Z 2009-11-30T19:32:44Z <p>Have a look a the <a href="http://msdn.microsoft.com/en-us/library/system.xml%28VS.71%29.aspx" rel="nofollow">System.XML</a> namespace, and then do something like this, using a correct XPath expression in the SelectSingleNode() function:</p> <pre><code>private XmlDocument _doc = new XmlDocument(); _doc.Load(HttpContext.Current.Request.MapPath("~/yourdocpath.xml")); XmlNode n = _doc.SelectSingleNode("ide/cuf"); </code></pre> <p>and then to set the textbox:</p> <pre><code>txt1.Text = n.InnerText; </code></pre> http://stackoverflow.com/questions/1821327/get-the-slope-from-one-point-and-an-angle-in-degrees/1821396#1821396 5 Answer by flesh for Get the slope from one point and an angle in degrees. flesh 2009-11-30T18:05:14Z 2009-11-30T18:12:14Z <p>well, from basic trigonometry...</p> <p>sin A° = Y/10</p> <p>cos A° = X/10</p> <p>10^2 = Y^2 + X^2</p> http://stackoverflow.com/questions/1817403/binding-a-combobox-using-a-datacontext-and-linq-to-sql/1817414#1817414 1 Answer by flesh for Binding a ComboBox using a DataContext and LINQ to SQL flesh 2009-11-30T01:09:42Z 2009-11-30T01:09:42Z <p>Have you looked at using a <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.bindingcontext.aspx" rel="nofollow">BindingContext</a>?</p> <p>And here's a slightly less opaque <a href="http://en.csharp-online.net/DataViews%5Fand%5FData%5FBinding%E2%80%94CurrencyManager%5Fand%5FBindingContext" rel="nofollow">description</a> :)</p> http://stackoverflow.com/questions/1816988/get-byte-size-of-listt/1816997#1816997 2 Answer by flesh for Get byte size of List<T> flesh 2009-11-29T22:25:51Z 2009-11-29T22:25:51Z <p>I'm not sure the runtime provides a reliable programmatic method of getting an object's size, however there are some options open to you:</p> <ul> <li>use a tool like CLR Profiler </li> <li>use <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.sizeof.aspx" rel="nofollow">Marshal.SizeOf()</a> (returns the unmanaged size of the object)</li> <li>serialize your object to binary for an approximation</li> </ul> http://stackoverflow.com/questions/276660/how-can-i-override-the-onbeforeunload-dialog-and-replace-it-with-my-own 14 How can I override the OnBeforeUnload dialog and replace it with my own? flesh 2008-11-09T23:24:17Z 2009-11-21T07:28:55Z <p>I need to warn users about unsaved changes before they leave a page (a pretty common problem). </p> <pre><code>window.onbeforeunload=handler </code></pre> <p>This works but it raises a default dialog with an irritating standard message that wraps my own text. I need to either completely replace the standard message, so my text is clear, or (even better) replace the entire dialog with a modal dialog using jQuery.</p> <p>So far I have failed and I haven't found anyone else who seems to have an answer. Is it even possible?</p> <p>Javascript in my page:</p> <pre><code>&lt;script type="text/javascript"&gt; window.onbeforeunload=closeIt; &lt;/script&gt; </code></pre> <p>The closeIt() function:</p> <pre><code>function closeIt() { if (changes == "true" || files == "true") { return "Here you can append a custom message to the default dialog."; } } </code></pre> <p>Using jQuery and jqModal I have tried this kind of thing (using a custom confirm dialog):</p> <pre><code>$(window).beforeunload(function() { confirm('new message: ' + this.href + ' !', this.href); return false; }); </code></pre> <p>which also doesn't work - I cannot seem to bind to the beforeunload event. </p> http://stackoverflow.com/questions/865817/why-should-i-learn-c/1548751#1548751 0 Answer by flesh for Why should i learn C++. flesh 2009-10-10T18:47:27Z 2009-10-10T18:47:27Z <p>If you have a serious intention of becoming a high quality professional developer, rather than just being a hobbyist, web or junior developer, then I would suggest learning C++.</p> <p>An analogy: if you build a house without good, strong foundations, it may stand for a year, or two years, but at some point it will fall over. If, however, you build a house with decent foundations, even though you may never look at those foundations again in your lifetime, you can guarantee your house is structurally sound and can go about your business without worrying about it falling down around you. Developers who start out with a high level language like C# or Java are building their house without foundations. </p> http://stackoverflow.com/questions/383164/how-to-retrieve-duration-of-mp3-in-net/383168#383168 2 Answer by flesh for How to retrieve duration of MP3 in .NET? flesh 2008-12-20T10:29:29Z 2009-10-08T20:33:22Z <p>Have a look at </p> <ul> <li><a href="http://www.un4seen.com/bass.html" rel="nofollow">BASS.net</a></li> <li><a href="http://developer.novell.com/wiki/index.php/TagLib%5FSharp" rel="nofollow">TagLib</a></li> </ul> <p>I have used both with some success.</p> http://stackoverflow.com/questions/1074688/user-defined-data-objects-what-is-the-best-data-storage-strategy 1 User defined data objects - what is the best data storage strategy? flesh 2009-07-02T14:23:34Z 2009-10-07T21:42:19Z <p>I am building a system that allows front-end users to define their own business objects. Defining a business object involves creating data fields for that business object and then relating it to other business objects in the system - fairly straight forward stuff. My question is, what is the most efficient storage strategy?</p> <p>The requirements are:</p> <ul> <li>Must support business objects with potentially 100+ fields (of all common data types)</li> <li>The system will eventually support hundreds of thousands of business object instances</li> <li>Business objects sometimes display data and aggregates from their relationships with other business objects</li> <li>Users must be able to search for business objects by their data fields (and fields from related business objects)</li> </ul> <p>The two possible solutions I can envisage are:</p> <ul> <li>Have a dynamic schema such that when a new business object type is created a new table is created for storing instances of that object. The object's fields become columns in the storage table. </li> <li>Have a fixed schema where instance data fields are stored as rows in basically a big long table.</li> </ul> <p>I can see pros and cons to both approaches: </p> <ul> <li>the dynamic schema allows me to index search columns</li> <li>the dynamic tables are potentially limited in width by the max column size</li> <li>dynamic schemas rule out / cause issues with replication</li> <li>the static schema means less or even no dynamic sql generation</li> <li>my guess is the static schema may perform like a dog when it comes to searching across 100,000+ objects</li> </ul> <p>So what is the best soution? Is there another approach I haven't thought of?</p> <p><strong>Edit:</strong> The requirement I have been given is to build a generic system capable of supporting front-end user defined business objects. There will of course be restrictions on how these objects can be constructed and related, but the requirement itself is not up for negotiation.</p> <p>My client is a service provider and requires a degree of flexibility in servicing their own clients, hence the need to create business objects. </p> http://stackoverflow.com/questions/1426541/list-of-themeable-skinable-properties-for-asp-net-controls 0 List of themeable / skinable properties for ASP.NET controls? flesh 2009-09-15T11:13:36Z 2009-09-28T17:20:37Z <p>Does anyone know how or where I can find a list of properties that can be defined in a skin file for standard ASP.NET controls? </p> <p>Thanks</p> http://stackoverflow.com/questions/1945719/is-there-a-way-to-see-the-native-code-produced-by-thejitter-for-given-c-cil Comment by flesh on Is there a way to see the native code produced by theJITter for given C# / CIL? flesh 2009-12-22T11:58:52Z 2009-12-22T11:58:52Z can you post your findings for the good of us all? thanks :) http://stackoverflow.com/questions/1924447/walking-a-linux-unix-filesystem-with-java/1924480#1924480 Comment by flesh on Walking a Linux/Unix filesystem with Java? flesh 2009-12-17T21:50:04Z 2009-12-17T21:50:04Z Thanks Brian. Do you know of any resources on the limitations (like <i>ctime</i> cited above for example) of Java IO over Unix filesystems? In general, for fairly basic operations, is Java as good as anything else for walking a Linux/Unix filesystem? http://stackoverflow.com/questions/1911133/update-winform-from-other-class Comment by flesh on update winform from other class flesh 2009-12-15T23:17:39Z 2009-12-15T23:17:39Z i didnt down vote you, but the question isnt clear and you havent posted any code so people aren't likely to be able to help :) http://stackoverflow.com/questions/1887954/free-webstorage-that-is-accessible-via-code/1888001#1888001 Comment by flesh on Free webstorage that is accessible via code. flesh 2009-12-11T14:24:46Z 2009-12-11T14:24:46Z hehe, no worries.. if i get time i might do it myself :) http://stackoverflow.com/questions/1832335/does-math-rounddouble-decimal-always-return-consistent-results Comment by flesh on Does Math.Round(double, decimal) always return consistent results. flesh 2009-12-05T10:36:57Z 2009-12-05T10:36:57Z Eric Lippert has written a load of articles on floating point numbers, they may shed some light .. <a href="http://blogs.msdn.com/ericlippert/archive/tags/Floating+Point+Arithmetic/default.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/&hellip;</a> http://stackoverflow.com/questions/1842860/why-does-asp-listbox-take-so-long-to-render-in-ajax-update-panel/1842888#1842888 Comment by flesh on Why does ASP ListBox take so long to render in AJAX update panel? flesh 2009-12-03T23:57:30Z 2009-12-03T23:57:30Z scott- it really is worth trying out the jquery method, compare the two, it's not hard at all, it's maybe an hours work. if you like it you'll have a another tool in your box, if it doesn't make any difference here then i'd be happy to eat humble pie :) http://stackoverflow.com/questions/1842860/why-does-asp-listbox-take-so-long-to-render-in-ajax-update-panel/1842888#1842888 Comment by flesh on Why does ASP ListBox take so long to render in AJAX update panel? flesh 2009-12-03T23:37:29Z 2009-12-03T23:37:29Z You're right, it doesn't 'fully reload the page', it refreshes the content in the panel to give the impression of a partial refresh, however server-side the page does a full execution of its lifecycle. Stick a break point in Page_Load and watch it if you don't believe me. Coupled with viewstate, this is almost certainly your problem. I don't appreciate the down vote either - I haven't provided you with an incorrect answer, whether you liked what I wrote or not :) http://stackoverflow.com/questions/1842620/sql-query-to-get-daily-payments-for-a-month-even-if-no-payments-on-a-given-day Comment by flesh on sql query to get daily payments for a month even if no payments on a given day flesh 2009-12-03T20:22:09Z 2009-12-03T20:22:09Z what does your schema look like? http://stackoverflow.com/questions/1835563/determine-users-gender-without-directly-asking-them Comment by flesh on Determine user's gender without directly asking them flesh 2009-12-02T20:34:00Z 2009-12-02T20:34:00Z Well, you could use event calculus, logic-based causal theory, and Prolog, combined with some visualisation tool? http://stackoverflow.com/questions/1835527/using-an-expression-tree-to-read-the-name-and-value-of-a-property-is-there-an-al/1835544#1835544 Comment by flesh on Using an expression tree to read the name and value of a property. Is there an alternative? flesh 2009-12-02T20:27:54Z 2009-12-02T20:27:54Z I wouldn't disagree, I guess it's personal preference whether you prefer reflection over expression trees. http://stackoverflow.com/questions/1821901/can-i-use-a-rich-domain-model-with-wcf/1821970#1821970 Comment by flesh on Can I use a rich domain model with WCF? flesh 2009-11-30T23:17:17Z 2009-11-30T23:17:17Z Yes, that's fine. In fact, that is generally the kind of pattern you would use for supporting things like web services and smart client apps. I use similar patterns - passing state bags / DTOs for consumption in client and much richer models in the domain where it makes sense to encapsulate behaviour as well. http://stackoverflow.com/questions/1822093/do-parent-website-application-pools-serve-child-application-pools-as-well Comment by flesh on Do parent website application pools serve child application pools as well? flesh 2009-11-30T20:10:05Z 2009-11-30T20:10:05Z might be a good one for serverfault.com http://stackoverflow.com/questions/1821327/get-the-slope-from-one-point-and-an-angle-in-degrees/1821396#1821396 Comment by flesh on Get the slope from one point and an angle in degrees. flesh 2009-11-30T18:11:29Z 2009-11-30T18:11:29Z cheers sid - and hat tip for cos:) http://stackoverflow.com/questions/1457083/will-java-ever-be-knocked-off-its-pedastal-as-top-programming-language/1457092#1457092 Comment by flesh on Will java ever be knocked off its pedastal as "top" programming language? flesh 2009-09-22T08:52:20Z 2009-09-22T08:52:20Z Never thought I'd see Yeats on SO .. http://stackoverflow.com/questions/1425279/c-net-3-5-what-is-expression-used-for/1425489#1425489 Comment by flesh on C# .NET 3.5: What is Expression<> used for? flesh 2009-09-15T10:43:17Z 2009-09-15T10:43:17Z Is there anywhere we can see the code you did for Microsoft? I'd really like to see some examples of this kind of thing ..