User Wyatt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T04:01:48Z http://stackoverflow.com/feeds/user/26626 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html 7 Using aspx Rendering Engine to Generate Non-HTML Wyatt 2008-10-22T19:01:25Z 2008-10-22T19:55:31Z <p>Is it possible to use the asp templating engine (With the partial code-behind class, dynamic &lt;% ... %> blocks and such) to generate non HTML? I want to have a clean and maintainable way to generate code dynamically. (Specifically, I want to generate LaTeX code populated with values from a database.) </p> <p>Currently my LaTeX templates are resource strings with placeholders that I string.replace with the database values. This solution rapidly became very difficult to maintain and clean. I'd really like to use the dynamic blocks from aspx markup, but I'm not sure a) whether aspx will throw a fit when the output isn't HTML, or b) how to actually render the result into a .tex file.</p> <p>The generating code itself is located in a C# .dll. We're using .NET 3.5</p> <p>Is this possible? Thanks in advance. </p> http://stackoverflow.com/questions/227129/load-in-jquery-not-loading-cfcharts-in-ie6/227178#227178 0 Answer by Wyatt for .load in jQuery not loading cfcharts in IE6 Wyatt 2008-10-22T19:19:15Z 2008-10-22T19:47:53Z <p>Have you tried jQuery.get? Maybe something like:</p> <pre><code>$("#bank").bind("click", function(){ $.get("bank.cfm", function(data){ $("#chartx").html(data); }); }); </code></pre> <p>It's not as clean but it's more specific. Maybe it will take a different course from whatever is breaking.</p> http://stackoverflow.com/questions/198744/remove-the-cs-designer-cs-codebehind-files/198818#198818 0 Answer by Wyatt for Remove the *.cs, *.Designer.cs codebehind files? Wyatt 2008-10-13T19:56:55Z 2008-10-13T19:56:55Z <p>Straight out of the box you should be able to delete the .designer.cs and nothing will break. The other code behind can be useful, for instance if you'd like to strongly type your viewdata.</p> http://stackoverflow.com/questions/196253/linq-to-sql-where-does-your-datacontext-live/196267#196267 1 Answer by Wyatt for LINQ to SQL - where does your DataContext live? Wyatt 2008-10-12T23:15:49Z 2008-10-12T23:15:49Z <p>I'm using a per-thread context. It is tricky to setup, but it cleans up everything that needs to talk to the db.</p> http://stackoverflow.com/questions/193281/visual-studio-2005-vs-2008-what-are-the-benefits/193310#193310 6 Answer by Wyatt for Visual Studio 2005 vs 2008 - What are the benefits? Wyatt 2008-10-10T23:13:58Z 2008-10-10T23:13:58Z <p>My favorite new feature: when an Intellisence option box is showing, you can hold down control to make it semi-transparent and see the code behind it. There are tons of bigger new features and reasons to switch, but that one is a real win for me.</p> http://stackoverflow.com/questions/193154/the-operation-is-not-valid-for-the-state-of-the-transaction-error-and-transacti/193167#193167 0 Answer by Wyatt for "The operation is not valid for the state of the transaction" error and transaction scope Wyatt 2008-10-10T21:55:00Z 2008-10-10T21:55:00Z <p>I've encountered this error when my Transaction is nested within another. Is it possible that the stored procedure declares its own transaction or that the calling function declares one?</p> http://stackoverflow.com/questions/193005/are-wpf-more-flashy-like-than-winforms/193029#193029 0 Answer by Wyatt for Are WPF more 'flashy-like' than winforms? Wyatt 2008-10-10T21:10:06Z 2008-10-10T21:10:06Z <p>The way I see it: WPF is to Flash as WinForms is to Flex. WPF has more emphasis on vectors and states than on programming.</p> http://stackoverflow.com/questions/192537/where-can-i-find-a-good-desktop-favicon-ico-editor/192606#192606 1 Answer by Wyatt for Where can I find a good desktop favicon.ico editor? Wyatt 2008-10-10T18:43:48Z 2008-10-10T18:43:48Z <p>One thing you could do is make the icon in whatever program you like, save it to a .png, open it in gimp and then simply re-save in an .ico.</p> http://stackoverflow.com/questions/192553/asp-net-mvc-custom-string-output-overloaded-operator-h/192594#192594 5 Answer by Wyatt for ASP.net MVC custom string output overloaded operator <%=h Wyatt 2008-10-10T18:39:49Z 2008-10-10T18:39:49Z <p>It's not so clean as an operator overload, but I used the following extension method:</p> <pre><code>public static string Safe(this string sz) { return HttpUtility.HtmlEncode(sz); } </code></pre> <p>So in my aspx id do:</p> <pre><code>&lt;%= this.ViewData["username"].Safe() %&gt; </code></pre> <p>Tacking the extra method onto the end of the expression just looks prettier to me than sending the value through a function.</p> http://stackoverflow.com/questions/192479/whats-the-coolest-hack-youve-seen-or-done/192567#192567 2 Answer by Wyatt for What's the coolest hack you've seen or done? Wyatt 2008-10-10T18:32:43Z 2008-10-10T18:32:43Z <p>Back in high-school I was really proud of writing a 3d graphing program on my ti-83 because my parents wouldn't buy me an 89.</p> http://stackoverflow.com/questions/192398/select-xml-nodes-as-rows/192445#192445 -1 Answer by Wyatt for Select XML nodes as rows Wyatt 2008-10-10T17:52:23Z 2008-10-10T17:52:23Z <p>If you can use it, the linq api is convenient for XML:</p> <pre><code>var addresses = dataContext.People.Addresses .Elements("address") .Select(address =&gt; new { street = address.Element("street").Value, city = address.Element("city").Value, state = address.Element("state").Value, zipcode = address.Element("zipcode").Value, }); </code></pre> http://stackoverflow.com/questions/189147/vss-front-end-for-svn/189177#189177 2 Answer by Wyatt for VSS front end for SVN Wyatt 2008-10-09T20:55:01Z 2008-10-09T20:55:01Z <p>Try <a href="http://ankhsvn.open.collab.net/" rel="nofollow">http://ankhsvn.open.collab.net/</a></p> http://stackoverflow.com/questions/189140/good-language-framework-for-cross-platform-windows-mac-desktop-application/189171#189171 1 Answer by Wyatt for Good language & framework for cross platform (windows & mac) desktop application. Wyatt 2008-10-09T20:53:27Z 2008-10-09T20:53:27Z <p>Flex/AIR is a platform with a lot of potential. It's also a lot prettier than anything Java or .NET.</p> http://stackoverflow.com/questions/188808/c-textbox-multiple-line-and-blank-line-disappear/189053#189053 0 Answer by Wyatt for C# : Textbox multiple line and blank line disappear Wyatt 2008-10-09T20:22:36Z 2008-10-09T20:22:36Z <p>In Windows forms all carriage returns are preserved in a multiline text box, so the problem likely lies in the way data is retrieved from your database. I've never used PostGres, but I'm guessing that the way you're retrieving the text from the db is replacing all whitespace with single spaces.</p> http://stackoverflow.com/questions/163420/printing-to-a-pdf-printer-programatically/188975#188975 0 Answer by Wyatt for Printing to a pdf printer programatically Wyatt 2008-10-09T20:04:12Z 2008-10-09T20:04:12Z <p>I encountered a similar problem in a C# ASP.NET app. My solution was to fire a LaTeX compiler at the command line with some generated code. It's not exactly a simple solution but it generates some really beautiful .pdfs.</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238245#238245 Comment by Wyatt on Worst UI You've Ever Used Wyatt 2008-10-26T20:28:24Z 2008-10-26T20:28:24Z I think just about any GUI that uses GTK is going to be a little clunky. I love Gimp, but the GUI is less than inspiring. http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237909#237909 Comment by Wyatt on Most frustrating programming style you've encountered Wyatt 2008-10-26T20:16:18Z 2008-10-26T20:16:18Z Many constructs in C# allow for this, such as enums and object initializers. http://stackoverflow.com/questions/208791/what-is-your-most-wanted-non-existent-or-underdeveloped-open-source-project/208875#208875 Comment by Wyatt on What is your most wanted non-existent or underdeveloped open source project? Wyatt 2008-10-22T23:32:52Z 2008-10-22T23:32:52Z In OpenOffice.org you can export to LaTeX. http://stackoverflow.com/questions/224818/what-single-piece-of-software-do-you-most-admire-and-why/224854#224854 Comment by Wyatt on What single piece of software do you most admire, and why? Wyatt 2008-10-22T23:18:51Z 2008-10-22T23:18:51Z &#181;Torrent is a fantastic example of efficient code. The binary is tiny and uses almost no resources (except for network, of course). That's the sort of program I don't mind running in the background. http://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html/227203#227203 Comment by Wyatt on Using aspx Rendering Engine to Generate Non-HTML Wyatt 2008-10-22T20:01:23Z 2008-10-22T20:01:23Z Brilliant! Thanks. http://stackoverflow.com/questions/58640/great-programming-quotes/58668#58668 Comment by Wyatt on Great programming quotes Wyatt 2008-10-22T19:38:04Z 2008-10-22T19:38:04Z Finally, politics in words I can understand. http://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html/227169#227169 Comment by Wyatt on Using aspx Rendering Engine to Generate Non-HTML Wyatt 2008-10-22T19:35:19Z 2008-10-22T19:35:19Z But can T4 templates be rendered at runtime? http://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html/227203#227203 Comment by Wyatt on Using aspx Rendering Engine to Generate Non-HTML Wyatt 2008-10-22T19:33:25Z 2008-10-22T19:33:25Z From my understanding T4 is for design time generation. I need to generate the latex at runtime, sortof like an asp. If T4 can be called at runtime it looks like the right tool, but I'm not sure it can. http://stackoverflow.com/questions/58640/great-programming-quotes/58692#58692 Comment by Wyatt on Great programming quotes Wyatt 2008-10-22T19:22:56Z 2008-10-22T19:22:56Z My brain just did a stack overflow. http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/140571#140571 Comment by Wyatt on What Easter Eggs have you placed in code? Wyatt 2008-10-11T05:39:53Z 2008-10-11T05:39:53Z haha, that's the best thing ever. http://stackoverflow.com/questions/193336/third-party-windows-command-line-program/193338#193338 Comment by Wyatt on Third-party windows command-line program? Wyatt 2008-10-10T23:41:36Z 2008-10-10T23:41:36Z This console rules! Goodbye cmd.exe! Thanks, defeated http://stackoverflow.com/questions/192398/select-xml-nodes-as-rows/192445#192445 Comment by Wyatt on Select XML nodes as rows Wyatt 2008-10-10T17:59:36Z 2008-10-10T17:59:36Z I know, but linq renders to t-sql.