User Wyatt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T04:01:48Zhttp://stackoverflow.com/feeds/user/26626http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html7Using aspx Rendering Engine to Generate Non-HTMLWyatt2008-10-22T19:01:25Z2008-10-22T19:55:31Z
<p>Is it possible to use the asp templating engine (With the partial code-behind class, dynamic <% ... %> 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#2271780Answer by Wyatt for .load in jQuery not loading cfcharts in IE6Wyatt2008-10-22T19:19:15Z2008-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#1988180Answer by Wyatt for Remove the *.cs, *.Designer.cs codebehind files?Wyatt2008-10-13T19:56:55Z2008-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#1962671Answer by Wyatt for LINQ to SQL - where does your DataContext live?Wyatt2008-10-12T23:15:49Z2008-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#1933106Answer by Wyatt for Visual Studio 2005 vs 2008 - What are the benefits?Wyatt2008-10-10T23:13:58Z2008-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#1931670Answer by Wyatt for "The operation is not valid for the state of the transaction" error and transaction scopeWyatt2008-10-10T21:55:00Z2008-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#1930290Answer by Wyatt for Are WPF more 'flashy-like' than winforms?Wyatt2008-10-10T21:10:06Z2008-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#1926061Answer by Wyatt for Where can I find a good desktop favicon.ico editor?Wyatt2008-10-10T18:43:48Z2008-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#1925945Answer by Wyatt for ASP.net MVC custom string output overloaded operator <%=hWyatt2008-10-10T18:39:49Z2008-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><%= this.ViewData["username"].Safe() %>
</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#1925672Answer by Wyatt for What's the coolest hack you've seen or done?Wyatt2008-10-10T18:32:43Z2008-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-1Answer by Wyatt for Select XML nodes as rowsWyatt2008-10-10T17:52:23Z2008-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 => 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#1891772Answer by Wyatt for VSS front end for SVNWyatt2008-10-09T20:55:01Z2008-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#1891711Answer by Wyatt for Good language & framework for cross platform (windows & mac) desktop application.Wyatt2008-10-09T20:53:27Z2008-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#1890530Answer by Wyatt for C# : Textbox multiple line and blank line disappearWyatt2008-10-09T20:22:36Z2008-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#1889750Answer by Wyatt for Printing to a pdf printer programaticallyWyatt2008-10-09T20:04:12Z2008-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#238245Comment by Wyatt on Worst UI You've Ever UsedWyatt2008-10-26T20:28:24Z2008-10-26T20:28:24ZI 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#237909Comment by Wyatt on Most frustrating programming style you've encounteredWyatt2008-10-26T20:16:18Z2008-10-26T20:16:18ZMany 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#208875Comment by Wyatt on What is your most wanted non-existent or underdeveloped open source project?Wyatt2008-10-22T23:32:52Z2008-10-22T23:32:52ZIn OpenOffice.org you can export to LaTeX.http://stackoverflow.com/questions/224818/what-single-piece-of-software-do-you-most-admire-and-why/224854#224854Comment by Wyatt on What single piece of software do you most admire, and why?Wyatt2008-10-22T23:18:51Z2008-10-22T23:18:51Zµ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#227203Comment by Wyatt on Using aspx Rendering Engine to Generate Non-HTMLWyatt2008-10-22T20:01:23Z2008-10-22T20:01:23ZBrilliant! Thanks.http://stackoverflow.com/questions/58640/great-programming-quotes/58668#58668Comment by Wyatt on Great programming quotesWyatt2008-10-22T19:38:04Z2008-10-22T19:38:04ZFinally, politics in words I can understand.http://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html/227169#227169Comment by Wyatt on Using aspx Rendering Engine to Generate Non-HTMLWyatt2008-10-22T19:35:19Z2008-10-22T19:35:19ZBut can T4 templates be rendered at runtime?
http://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html/227203#227203Comment by Wyatt on Using aspx Rendering Engine to Generate Non-HTMLWyatt2008-10-22T19:33:25Z2008-10-22T19:33:25ZFrom 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#58692Comment by Wyatt on Great programming quotesWyatt2008-10-22T19:22:56Z2008-10-22T19:22:56ZMy brain just did a stack overflow.http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/140571#140571Comment by Wyatt on What Easter Eggs have you placed in code?Wyatt2008-10-11T05:39:53Z2008-10-11T05:39:53Zhaha, that's the best thing ever.http://stackoverflow.com/questions/193336/third-party-windows-command-line-program/193338#193338Comment by Wyatt on Third-party windows command-line program?Wyatt2008-10-10T23:41:36Z2008-10-10T23:41:36ZThis console rules! Goodbye cmd.exe! Thanks, defeatedhttp://stackoverflow.com/questions/192398/select-xml-nodes-as-rows/192445#192445Comment by Wyatt on Select XML nodes as rowsWyatt2008-10-10T17:59:36Z2008-10-10T17:59:36ZI know, but linq renders to t-sql.