User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T05:34:17Zhttp://stackoverflow.com/feeds/user/6222http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150044/using-aspcontent-markup-more-than-once-in-the-masterpage0Using asp:content markup more than once in the masterpagesirwart2008-09-29T18:39:52Z2008-10-01T03:05:57Z
<p>I'm new to ASP.NET and want to have an asp:content control for the page title, but I want that value to be used for the tag and for a page header. When I tried to do this with two tags with the same id, it complained that I couldn't have two tags with the same id. Is there a way to achieve this with contentplaceholders, and if not what would be the easiest way to use a single parameter to the masterpage twice in one page?</p>
http://stackoverflow.com/questions/75258/how-to-make-a-side-by-side-compiler-for-net/155447#1554472Answer by sirwart for How to make a Side-by-Side Compiler for .NETsirwart2008-09-30T22:47:14Z2008-09-30T22:47:14Z<p>It's important to realize that all a compiler does is take a source language (C# in this case), parse it so the compiler has a representation that makes sense to it and not humans (this is the abstract syntax tree), and then does a naive code generation to the target language (msil is the target for languages that run on the .NET runtime).</p>
<p>Now if the script# code is turned into an assembly and interacts with other .NET code, that means this compiler must be generating msil. script# is using csc.exe for this, which is just the standard c# comiler. Now to generate the javascript, it must take either c# or msil, parse it, and generate javascript to send to the browser. The docs says it has a custom c# -> js compiler called ssc.exe. </p>
<p>To make things interact consistently on both the client side and the server side it has a set of reference assemblies that are written in .NET but are also compiled to javascript. This is not a compiler specific issue though, those reference assemblies are the script# runtime. The runtime is probably responsible for a lot of the script# magic you're perceiving though.</p>
http://stackoverflow.com/questions/120926/why-does-python-pep-8-strongly-recommend-spaces-over-tabs-for-indentation/120996#1209964Answer by sirwart for Why does Python pep-8 strongly recommend spaces over tabs for indentation?sirwart2008-09-23T13:30:23Z2008-09-23T13:30:23Z<p>The most significant advantage I can tell of spaces over tabs is that a lot of programmers and projects use a set number of columns for the source code, and if someone commits a change with their tabstop set to 2 spaces and the project uses 4 spaces as the tabstop the long lines are going to be too long for other people's editor window. I agree that tabs are easier to work with but I think spaces are easier for collaboration, which is important on a large open source project like Python.</p>
http://stackoverflow.com/questions/89228/how-to-call-external-command-in-python/89255#8925519Answer by sirwart for How to call external command in Pythonsirwart2008-09-18T01:42:30Z2008-09-18T01:42:30Z<p>I'd recommend using the subprocess module instead of os.system because it does shell escaping for you and is therefore much safer: <a href="http://docs.python.org/lib/module-subprocess.html" rel="nofollow">http://docs.python.org/lib/module-subprocess.html</a></p>
<blockquote>
<p>subprocess.call(['ping', 'localhost'])</p>
</blockquote>
http://stackoverflow.com/questions/89154/benefits-of-using-short-circuit-evaluation/89175#891757Answer by sirwart for Benefits of using short-circuit evaluationsirwart2008-09-18T01:24:48Z2008-09-18T01:24:48Z<p>Short circuit evaluation is translated into branches in assembly language in the same way if statements are (branches are basically a goto), which means it is not going to be any slower than if statements.</p>
<p>Branches don't typically stall the pipeline, but the processor will guess whether the branch is taken or not, and if the processor is wrong it will have to flush everything that has happened since it made the wrong guess from the pipeline.</p>
<p>Short circuit evaluation is also the most common name for it, and is found in most languages in some form or another.</p>
http://stackoverflow.com/questions/73885/in-jquery-using-ajaxsend-to-preview-the-url-built-by-post-call/74082#740821Answer by sirwart for In JQuery, using ajaxSend to preview the url built by $.post callsirwart2008-09-16T16:12:32Z2008-09-16T16:43:35Z<p>An easy way to preview the HTTP request being sent is to use <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> for Firefox. Download and enable the plugin, and when the request is made it will show up in the firebug console.</p>
http://stackoverflow.com/questions/389342/how-to-get-the-size-of-a-scaled-uiimage-in-uiimageview/389498#389498Comment by on How to get the size of a scaled UIImage in UIImageView?2008-12-31T00:15:44Z2008-12-31T00:15:44Zimage.frame.size is the current size of that view in it's superview's coordinate system, which is <i>probably</i> measured in pixels.http://stackoverflow.com/questions/131608/do-you-use-a-single-editor-well/131615#131615Comment by on Do you use a single editor (well)?2008-10-02T17:12:42Z2008-10-02T17:12:42ZThe biggest weakness as far as I can tell of TextMate is that as soon as you aren't on mac all your TextMate knowledge in the world is useless. Do skills or scripts from TextMate map into any other editor on other platforms?http://stackoverflow.com/questions/150044/using-aspcontent-markup-more-than-once-in-the-masterpage/150072#150072Comment by on Using asp:content markup more than once in the masterpage2008-09-30T22:27:06Z2008-09-30T22:27:06ZI think I figured out what I was not very clearly trying to ask.
I was having trouble getting this.Title to work, I think it's supposed to be this.Page.Titlehttp://stackoverflow.com/questions/150044/using-aspcontent-markup-more-than-once-in-the-masterpage/150072#150072Comment by on Using asp:content markup more than once in the masterpage2008-09-29T18:53:42Z2008-09-29T18:53:42ZIs there a way to generalize this if I need to do something similar for another attribute?http://stackoverflow.com/questions/101268/hidden-features-of-python/101447#101447Comment by on Hidden features of Python2008-09-22T15:53:45Z2008-09-22T15:53:45ZWhen defining decorators, I'd recommend decorating the decorator with @decorator. It creates a decorator that preserves a functions signature when doing introspection on it. More info here: <a href="http://www.phyast.pitt.edu/~micheles/python/documentation.html" rel="nofollow">phyast.pitt.edu/~micheles/python/…</a> http://stackoverflow.com/questions/89228/how-to-call-external-command-in-python/89243#89243Comment by on How to call external command in Python2008-09-18T01:43:17Z2008-09-18T01:43:17ZI couldn't figure out how to get the code formatting to work either...