User Steve Tranby - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T10:17:51Zhttp://stackoverflow.com/feeds/user/415http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1554893/google-maps-api-v3-infowindow-not-sizing-correctly/1786397#17863970Answer by Steve Tranby for Google Maps API v3: InfoWindow not sizing correctlySteve Tranby2009-11-23T22:09:28Z2009-11-23T22:09:28Z<p>Use the domready event and reopen the info window and show the hidden content after the domready event fires twice to ensure all of the dom elements have been loaded. </p>
<pre><code>// map is created using google.maps.Map()
// marker is created using google.maps.Marker()
// set the css for the content div .infowin-content { visibility: hidden; }
infowindow = new google.maps.InfoWindow();
infowindow.setContent("<div class='infowin-content'>Content goes here</div>");
infowindow.setPosition(marker.getPosition());
infowindow.set("isdomready", false);
infowindow.open(map);
// On Dom Ready
google.maps.event.addListener(infowindow, 'domready', function () {
if (infowindow.get("isdomready")) {
// show the infowindow by setting css
jQuery('.infowin-content').css('visibility', 'visible');
}
else {
// trigger a domready event again.
google.maps.event.trigger(infowindow, 'content_changed');
infowindow.set("isdomready", true);
}
}
</code></pre>
<p>I tried just doing a setTimeout(/* show infowin callback */, 100), but sometimes that didn't work still if the content (ie: images) took too long to load.</p>
<p>Hope this works for you.</p>
http://stackoverflow.com/questions/158756/what-is-the-best-image-manipulation-library17What is the best image manipulation library?Steve Tranby2008-10-01T17:31:19Z2009-11-20T13:26:52Z
<p>I would love find out which is the best image manipulation library for which platforms and languages. Likely you could use a library under multiple platforms with the right API or Plugin capabilities. I'm specifically looking for web based applications, but please answer for desktop apps as well if you like.</p>
<p>Libraries (and the common <strong>direct</strong> language support):</p>
<ul>
<li><a href="http://code.google.com/p/aforge/" rel="nofollow">AForge</a>:</li>
<li><a href="http://www.atalasoft.com/products/dotimage/" rel="nofollow">Atalasoft DotImage</a>: .Net</li>
<li><a href="http://cairographics.org/" rel="nofollow">Cairo</a> : C++, Lisp, Java, .Net, Perl, PHP, Python, Ruby</li>
<li><a href="http://www.xdp.it/cximage.htm" rel="nofollow">CxImage</a>: C++</li>
<li><a href="http://us3.php.net/gd" rel="nofollow">GD</a> : PHP</li>
<li><a href="http://www.graphicsmagick.org/" rel="nofollow">GraphicsMagick</a>: C, C++, Perl, Ruby</li>
<li><a href="http://www.imagemagick.org/script/index.php" rel="nofollow">ImageMagick</a> : C, C++, Java, Lisp, .NET, Pascal, Perl, PHP, Python, Ruby</li>
<li><a href="http://www.leadtools.com/SDK/Raster/Raster-Image-Processing.htm" rel="nofollow">Lead Tools</a>: ActiveX, .Net</li>
<li><a href="http://www.pythonware.com/products/pil/" rel="nofollow">Python Imaging Tools</a>: Python</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.drawing.aspx" rel="nofollow">System.Drawing</a> : .Net</li>
</ul>
<p>Also suggested:</p>
<p>Yuval Peled - Intel's new <a href="http://www.developers.net/intelmcshowcase/view/382" rel="nofollow">Intel® Integrated Performance Primitives</a> for image processing. </p>
<p>rics - RoboRealm has <a href="http://www.roborealm.com/links/vision%5Fsoftware.php" rel="nofollow">list</a> of vision software.</p>
<p>Thanks for the suggestions!</p>
http://stackoverflow.com/questions/848943/how-to-convert-an-indexed-pixel-format-image-to-a-32-bit-image1How to convert an Indexed pixel format image to a 32-bit image?Steve Tranby2009-05-11T16:34:10Z2009-11-08T13:46:20Z
<p>I have an image that I get and attempt to load into a graphics object using Graphics.FromImage(image), however this throws an exception if the image has an indexed pixel format.</p>
<p>Is there a way to safely convert an indexed image?</p>
<p><strong>Update:</strong> Thanks to Joe for the tip to just draw the old image over the new one, instead I was trying to convert it. This makes a lot of sense.</p>
http://stackoverflow.com/questions/1683537/printing-contents-of-controls-in-c/1683601#16836012Answer by Steve Tranby for Printing contents of controls in C#?Steve Tranby2009-11-05T21:05:26Z2009-11-06T17:00:32Z<p>You will want to use System.Drawing.Printing libraries. You'll use the PrintDocument.Print method which you can find on the <a href="http://msdn.microsoft.com/en-us/library/system.drawing.printing.printdocument.print%28lightweight%29.aspx" rel="nofollow">MSDN Page with Example</a></p>
http://stackoverflow.com/questions/1608122/how-to-monitor-traffic-of-ruby-on-rails-website/1628881#16288811Answer by Steve Tranby for How to monitor traffic of ruby on rails website?Steve Tranby2009-10-27T05:13:44Z2009-10-27T05:13:44Z<p>Check out <a href="http://www.woopra.com/" rel="nofollow">Woopra</a>. They have a java application that you can download and run to analyze your traffic and visitors in a very visual manner. Also you can literally see ping dots on a global map showing instantaneous visitors. You install a piece of javascript code and then users visiting your site will be tracked similar to google's analytics, but in a more immediate and in my opinion useful manner.</p>
<p>There's a lot more features that they have available like tracking the page progression that a user clicks through, and others.</p>
http://stackoverflow.com/questions/12611/designing-a-calendar-system-like-google-calendar/12772#127723Answer by Steve Tranby for Designing a Calendar system like Google CalendarSteve Tranby2008-08-15T21:22:01Z2009-09-30T19:30:30Z<p>As previously stated, <strong><em>don't reinvent the wheel</em></strong>, just enhance it.</p>
<p>Checkout <a href="http://www.ultraapps.com/app%5Foverview.php?app%5Fid=19" rel="nofollow">VCalendar</a>, it is open source, and comes in PHP, ASP, and ASP.Net (C#)!</p>
<p>Also you could check out <a href="http://www.daypilot.org/" rel="nofollow">Day Pilot</a> which offers a calendar written in Asp.Net 2.0. They offer a lite version that you could check out, and if it works for you, you could purchase a license.</p>
<p><strong>Update (9/30/09):</strong></p>
<p>Unless of course the wheel is broken! Also, you can put a shiny new coat of paint if you like (ie: make a better UI). But at least try to find some foundation to build off of, since the calendar system can be tricky (with Repeating events), and it's been done thousands of times.</p>
http://stackoverflow.com/questions/1463073/is-reading-library-implementations-a-wasted-or-well-spent-time/1463098#14630980Answer by Steve Tranby for Is reading library implementations a wasted or well spent time ?Steve Tranby2009-09-22T23:04:24Z2009-09-22T23:04:24Z<p>I read library code more for a look at how other's write code, and if there are ways to improve my code or in some rare cases the library code. Also, you can gain an insight into better ways to use the code based on the underlying implementation.</p>
<p>I think that it definitely helps you understand some fundamental programming foundations in a practical matter. However, I think a good book would be a fine addition to reading the actual code in the library. The book will give you concepts and theory as well as some practical application in a much easier to understand as well as being more quickly comprehensible. </p>
http://stackoverflow.com/questions/1365103/formatting-a-large-number-with-commas/1365130#13651302Answer by Steve Tranby for Formatting a large number with commasSteve Tranby2009-09-01T23:20:02Z2009-09-01T23:20:02Z<pre><code>num > 9999 ? num.ToString("N0", CultureInfo.InvariantCulture) : num.ToString();
</code></pre>
<p>"N0" assuming you don't want decimals.
<a href="http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx#NFormatString" rel="nofollow">NFormat</a></p>
http://stackoverflow.com/questions/1316100/what-contents-should-a-professional-programmers-website-have/1365095#13650951Answer by Steve Tranby for What contents should a professional programmer’s website have?Steve Tranby2009-09-01T23:09:01Z2009-09-01T23:09:01Z<p>Display your StackOverflow Flair</p>
http://stackoverflow.com/questions/1342694/c-or-java-for-general-programming/1342742#13427420Answer by Steve Tranby for C++ or Java for general programming?Steve Tranby2009-08-27T17:57:28Z2009-08-27T17:57:28Z<p>I think learning any new language gives you more perspective, but since you know Assembly already you know how Object references are handled behind the scenes, so you don't really need to learn c++. Instead I'd suggest learning a functional programming language like Haskell, Scheme, or Erlang to learn a different way of thinking. Also, you could learn something more expressive like Python or Ruby.</p>
<p>But if you are looking to start in on a specific project, you might as well continue with Java as it is fairly efficient for most tasks.</p>
http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development/122462#1224624Answer by Steve Tranby for How to get started in operating system developmentSteve Tranby2008-09-23T17:29:38Z2009-08-24T05:46:47Z<p>I wish there was one place to get all of the info about developing your own OS. The closest to come to that is <a href="http://wiki.osdev.org/Main%5FPage" rel="nofollow">OS Dev Wiki</a> and <a href="http://forum.osdev.org/" rel="nofollow">Forums</a>. They offer a ton of good information regarding the setup, development, and device hardware information. </p>
<p>Also there are some great tutorials at <a href="http://www.osdever.net/" rel="nofollow">BoneFide</a>, I've used the getting started tutorial by <a href="http://www.osdever.net/bkerndev/index.php" rel="nofollow">Bran</a>, and am now looking at a more recent one based on his called <a href="http://www.jamesmolloy.co.uk/tutorial%5Fhtml/index.html" rel="nofollow">Roll your own toy UNIX-clone OS</a>.</p>
<p>I second checking out: "Operating Systems : Design and Implementation"</p>
<p><strike>And if you want to develop on Windows, check out jolson's blog post</strike>.</p>
<p>Edit:
For development on windows using Visual Studio, check out <a href="http://www.brokenthorn.com/Resources/OSDevIndex.html" rel="nofollow">BrokenThorn's guide</a> or <a href="http://wiki.osdev.org/Visual%5FStudio" rel="nofollow">OSDev's wiki</a>.</p>
http://stackoverflow.com/questions/158750/can-you-combine-multiple-images-into-a-single-one-using-javascript0Can you combine multiple images into a single one using JavaScript?Steve Tranby2008-10-01T17:30:34Z2009-05-28T16:17:50Z
<p>I am wondering if there is a way to combine multiple images into a single image using only JavaScript. Is this something that Canvas will be able to do. The effect can be done with positing, but can you combine them into a single image for download?</p>
<p><strong>Update Oct 1, 2008:</strong></p>
<p>Thanks for the advice, I was helping someone work on a js/css only site, with jQuery and they were looking to have some MacOS dock-like image effects with multiple images that overlay each other. The solution we came up with was just absolute positioning, and using the effect on a parent <code><div></code> relatively positioned. It would have been much easier to combine the images and create the effect on that single image.</p>
<p>It then got me thinking about online image editors like <a href="http://www.picnik.com/" rel="nofollow">Picnik</a> and wondering if there could be a browser based image editor with photoshop capabilities written only in javascript. I guess that is not a possibility, maybe in the future?</p>
http://stackoverflow.com/questions/560023/asp-net-repeater-template-conditional-code-for-every-nth-element/864927#8649272Answer by Steve Tranby for ASP.NET Repeater Template, Conditional Code for every Nth elementSteve Tranby2009-05-14T18:24:29Z2009-05-14T18:24:29Z<p>Here is where Asp.Net WebForms can give you incredible RAD efficiency.
You can use the new ListView control, and set the number of items per "group", which will allow you to setup the HTML that surrounds a group, as well as each individual item. This way you can surround the group with the conditional tags.</p>
<pre><code><asp:ListView ID="ListView1" runat="server" DataKeyNames="id" DataSourceID="LinqDataSource1" GroupItemCount="3">
<LayoutTemplate>
<div id="layout">
<asp:PlaceHolder ID="groupPlaceholder" runat="server"></asp:PlaceHolder>
</div>
</LayoutTemplate>
<GroupTemplate>
<div class="group">
<asp:PlaceHolder ID="itemPlaceholder" runat="server"></asp:PlaceHolder>
</div>
</GroupTemplate>
<EmptyDataTemplate>
<span>No data was returned.</span>
</EmptyDataTemplate>
<ItemTemplate>
<div class="item">
<img alt='<%# Eval("title") %>' title='<%# Eval("title") %>'
src='<%# Eval("filename","photos/{0}") %>' />
</div>
</ItemTemplate>
</asp:ListView>
</code></pre>
http://stackoverflow.com/questions/26280/favorite-web-host/732717#7327170Answer by Steve Tranby for Favorite web host.Steve Tranby2009-04-09T03:54:18Z2009-04-09T03:54:18Z<p>I use <a href="http://networkredux.net" rel="nofollow">Network Redux</a> and have been happy with their Virtual Private Server for the cost and performance. They offer shared, reseller, virtual private server, and virtual dedicated server.</p>
http://stackoverflow.com/questions/122767/mount-floppy-image-in-cygwin0Mount floppy image in cygwinSteve Tranby2008-09-23T18:20:15Z2009-03-10T14:43:25Z
<p>How can I mount a floppy image file using cygwin. I would like to mount the image, copy a file to the mounted drive, and then unmount it from the command line. </p>
<p>I know you can use <a href="http://chitchat.at.infoseek.co.jp/vmware/vfd.html#beta" rel="nofollow">Virtual Floppy Drive</a> in windows, but is there a way to do this in Cygwin?</p>
http://stackoverflow.com/questions/235118/asp-net-mvc-route-to-username/575692#5756922Answer by Steve Tranby for ASP.Net MVC Route to UsernameSteve Tranby2009-02-22T20:16:04Z2009-02-22T20:16:04Z<p>You might want to consider not allowing usernames of certain types if you want to have some other functional controllers like Account, Admin, Profile, Settings, etc. Also you might want your static content not to trigger the "username" route. In order to achieve that kind of functionality (similar to how twitter urls are processed) you could use the following Routes:</p>
<pre><code>// do not route the following
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("content/{*pathInfo}");
routes.IgnoreRoute("images/{*pathInfo}");
// route the following based on the controller constraints
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
, new { controller = @"(admin|help|profile|settings)" } // Constraints
);
// this will catch the remaining allowed usernames
routes.MapRoute(
"Users",
"{username}",
new { controller = "Users", action = "View", username = "" }
);
</code></pre>
<p>Then you will need to have a controller for each of the tokens in the constraint string (e.g. admin, help, profile, settings), as well as a controller named Users, and of course the default controller of Home in this example.</p>
<p>If you have a lot of usernames you don't want to allow, then you might consider a more dynamic approach by creating a custom route handler.</p>
http://stackoverflow.com/questions/468171/what-was-your-first-programming-job/468382#4683820Answer by Steve Tranby for What was your first programming job?Steve Tranby2009-01-22T08:07:36Z2009-01-22T08:07:36Z<p>I worked for my highschool developing their intranet, my first project was creating the management and website for the Activities Arts and Athletics groups/teams. </p>
<p>I programmed first in VB6 building DLL files that were integrated into IIS using the COM management console. Then I discovered VBScript and thus began my long journey through ASP and ADO. So I mostly learned how to develop server-side web programming.</p>
<p>I thouroughly enjoyed it, and started as an afterschool activity, but soon was making twice what my friends were making.</p>
<p>I stayed through highschool for 3 years, and then worked remotely from college for a couple years after.</p>
http://stackoverflow.com/questions/398948/using-cookies-for-web-session-state-what-are-the-pitfalls/399000#3990001Answer by Steve Tranby for Using Cookies for Web Session State - What are the pitfalls?Steve Tranby2008-12-29T23:02:18Z2009-01-05T19:34:41Z<p>Well usually a cookie is used for the session ID, so as long as the amount of information is small it would be a good option to store the information in the cookie, though you shouldn't store anything of value (like CC numbers, SSN, etc) should really be stored in a cookie, even if encrypted.</p>
<p>I'm no expert, but in my experience I've found the following to be true (at least using PHP, and ASP.Net). </p>
<p><strong>Cookie</strong></p>
<ul>
<li><strong><em>[pro] Scales well, since it's transmitted on every request</em></strong></li>
<li>[pro] Cookie can be required to submit only through an SSL connection</li>
<li>[pro] Can be used cross-server technologies, and cross-server machines</li>
<li>[con] Data is transmitted on every request and response</li>
<li>[con] Needs to be enabled on browser</li>
</ul>
<p><strong>State Server / DB</strong></p>
<ul>
<li><strong><em>[pro] Data stored only on server</em></strong></li>
<li><strong><em>[pro] Data persists even if user clears cookies</em></strong></li>
<li>[pro] Can be used cross-server technologies</li>
<li>[con] requires an ID to be passed on request/response (thus requires cookies or appending to every URL)</li>
<li>[con] doesn't scale well in default modes, but if an entire machine(s) can be devoted specifically and exclusively to state then this isn't much of an issue. Plenty of other scaling techniques out there that can be followed for scalability.</li>
<li>[con] Requires a session ID variable passed through URL or Cookie or other means, to keep the user tied to the data.</li>
</ul>
http://stackoverflow.com/questions/262724/is-it-better-to-use-nested-master-pages-or-user-controls-for-multi-sectioned-webs2Is it better to use Nested Master pages or User Controls for multi-sectioned website?Steve Tranby2008-11-04T17:57:07Z2008-12-19T17:40:41Z
<p>I am creating a website that has 5 different sub-sites each with the same overall look, but each has a different logo and added navigation.</p>
<p>What do you feel is a better approach:</p>
<ul>
<li>Use the new nested master page capabilities to create 5 sub-master pages.</li>
<li>Use a single master page and dynamically load user controls corresponding to each sub-site's
specific logo/navigation.</li>
</ul>
<p>I'm currently going down the nested master page route.</p>
<p><strong>Update (12/19/2008):</strong></p>
<p>I am using Nested Master pages, and it is working out great. You are able to pass-through ContentPlaceHolders, and even have default content for the placeholders.</p>
http://stackoverflow.com/questions/153944/is-sql-syntax-case-sensitive11Is SQL syntax case sensitive?Steve Tranby2008-09-30T16:49:04Z2008-12-06T13:09:53Z
<p>Is SQL case sensitive. I've used MySQL and SQL Server which both seem to be case in-sensitive. Is this always the case? Does the standard define case-sensitivity? </p>
http://stackoverflow.com/questions/9399/can-a-developer-truly-be-language-agnostic/216057#2160574Answer by Steve Tranby for Can a developer truly be Language Agnostic?Steve Tranby2008-10-19T05:36:51Z2008-12-04T23:08:45Z<ol>
<li><p>I tend to think in pages and databases (being a web developer), but also think in Imperative Language Pseudo code</p></li>
<li><p>I would definitely learn the language, considering it was only 10 features, unless after looking at the new "old" language I find the features will be very difficult to implement. I would however decide how big the features are, and also inquire if the project will need more features in the future, before tackling the project. Definitely situational.</p></li>
</ol>
<p><strong>I think the real answer is No We Don't Think purely Agnostically</strong>, in the same way you can never be pure of all judgement. You might think you don't bias toward a specific language, but you do. It's what you know. Sure you might know 100 languages, but it might be the 101st that would solve the problem best. </p>
<p>Also, productivity is a factor in the answer, I can finish solving a problem in a shorter amount of time than I can learn a new language and solve the problem in that language. Thus I think in the languages I have the most experience in most of the time.</p>
<p>Doing upfront design using models (UML, or Napkin drawings) is one way to go. It helps you think of the problem as concepts and solutions, instead of classes and implementation.</p>
<p>I use pseudo-code when I'm discussing a possible solution, however that's not really language agnostic since I usually use some form of loops and conditionals, thus biased toward imperative languages.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/316042#3160421Answer by Steve Tranby for What is the best comment in source code you have ever encountered?Steve Tranby2008-11-25T00:54:11Z2008-11-25T00:54:11Z<pre><code><!-- THIS IS THE MAIN CONFIGURATION FILE FOR THE ENTIRE BLOODY DIRECTORY -->
<!-- WHATEVER YOU DO, DO NOT EDIT THIS FILE WITHOUT TALKING TO ME FIRST -->
<!-- I'M SERIOUS -->
<!-- (scroll down) -->
</code></pre>
http://stackoverflow.com/questions/259253/how-do-i-copy-a-file-or-folder-that-is-locked-under-windows-programmatically8How do I copy a file or folder that is locked under windows programmatically?Steve Tranby2008-11-03T16:52:30Z2008-11-20T20:26:53Z
<p>What are the API calls to copy a file that is currently locked. I'm hoping to be able to use .Net, but Win32 calls would be fine as well. </p>
<p>Please feel free to chime in about the same functionality on Unix, or any other OS.</p>
http://stackoverflow.com/questions/296889/list-of-useful-websites-that-teach-asp-net/296926#2969262Answer by Steve Tranby for list of useful websites that teach ASP.NETSteve Tranby2008-11-17T21:07:56Z2008-11-17T21:07:56Z<p><a href="http://quickstarts.asp.net/QuickStartv20/default.aspx" rel="nofollow">Quick Start Guides on Asp.Net</a></p>
<p><a href="http://msdn.microsoft.com/en-us/asp.net/aa336567.aspx" rel="nofollow">MSDN Learn Asp.Net</a></p>
<p><a href="http://www.w3schools.com/ASPNET/default.asp" rel="nofollow">W3Schools</a> is a great place to start learning any web technology.</p>
<p>Article Collections:</p>
<ul>
<li><a href="http://aspalliance.com/articles/LearnDotNet.aspx" rel="nofollow">ASP Alliance</a> </li>
<li><a href="http://www.15seconds.com/focus/ASP.NET.htm" rel="nofollow">15 Seconds</a></li>
<li><a href="http://www.411asp.net/" rel="nofollow">411 Asp.Net</a></li>
</ul>
http://stackoverflow.com/questions/296873/basic-html-how-to-set-relative-path-to-current-folder/296885#2968851Answer by Steve Tranby for Basic HTML - how to set relative path to current folder?Steve Tranby2008-11-17T20:54:02Z2008-11-17T20:55:46Z<pre><code><a href="./">Folder</a>
</code></pre>
http://stackoverflow.com/questions/290806/do-you-try-to-make-your-code-look-pretty/291077#2910770Answer by Steve Tranby for Do you try to make your code look pretty?Steve Tranby2008-11-14T19:20:20Z2008-11-14T19:20:20Z<p>I prefer keeping the formatting style simple. Indent on blocks, and order by logic/optimization. I use the formatter of the IDE (at least in Visual Studio, Eclipse, and Netbeans) With CSS, however, one line for each style with indented children:</p>
<pre><code>#header {}
#header h1 {}
#header h2 {}
#nav {}
#nav ul {}
#nav li {}
#nav li a {}
#nav li a:hover {}
#content {}
#content p {}
#footer {}
</code></pre>
<p><hr /></p>
<pre><code>class A {
private int b = 3;
private int c = 2;
public void method(string str) {
if(str != null && str.length > 5)
DoStuffWithString();
else
ShowInvalidError();
}
}
</code></pre>
http://stackoverflow.com/questions/290958/webresource-axd-problem-between-regular-and-secure-domain-paths0Webresource.axd problem between regular and secure domain pathsSteve Tranby2008-11-14T18:31:01Z2008-11-14T18:46:29Z
<p>In our setup there are two different websites in IIS 7 setup that point to the same physical path. One with the binding http://<strong>websitename</strong>.domain.com/ <em>(virtual root ~ is /)</em> </p>
<p>and the second at https://webserver.domain.com/<strong>userid</strong>/<strong>websitename</strong> (<em>so the virtual root ~ is /userid/websitename)</em>. We use the second for secure aspects of each website.</p>
<p>This causes a problem with the loading of the Webresources.axd files for generated css, and javascript for the AJAX.net toolkit.</p>
<p>Is there a way to have the path to these generated resource files modified. Or somehow set the virtual root path per application.</p>
http://stackoverflow.com/questions/290958/webresource-axd-problem-between-regular-and-secure-domain-paths/290992#2909921Answer by Steve Tranby for Webresource.axd problem between regular and secure domain pathsSteve Tranby2008-11-14T18:46:29Z2008-11-14T18:46:29Z<p>I found one solution, using the Render() method to replace the url paths with the correct one. This <a href="http://forums.asp.net/p/1119487/1750443.aspx" rel="nofollow">forum post</a> has info on this solution. I'll have to modify it to check the Request.Url to see which domain the page request is coming from.</p>
<pre><code>protected override void Render(HtmlTextWriter writer)
{
try
{
StringBuilder renderedOutput = new StringBuilder();
StringWriter strWriter = new StringWriter(renderedOutput);
HtmlTextWriter tWriter = new HtmlTextWriter(strWriter);
base.Render(tWriter);
//this string is to be searched for src="/" mce_src="/" and replace it with correct src="./" mce_src="./".
string s = renderedOutput.ToString();
s = Regex.Replace(s, "(?<=<img[^>]*)(src=\\\"/)", "src=\"./", RegexOptions.IgnoreCase);
s = Regex.Replace(s, "(?<=<script[^>]*)(src=\\\"/)", "src=\"./", RegexOptions.IgnoreCase);
s = Regex.Replace(s, "(?<=<a[^>]*)(href=\\\"/)", "href=\"./", RegexOptions.IgnoreCase);
writer.Write(s);
}
catch
{
}
}
}
</code></pre>
http://stackoverflow.com/questions/279190/how-can-i-get-a-collection-of-all-the-colors-in-system-drawing-color/279294#2792940Answer by Steve Tranby for How can I get a collection of all the colors in System.Drawing.Color?Steve Tranby2008-11-10T21:47:34Z2008-11-10T21:47:34Z<p>You'll have to use reflection to get the colors from the System.Drawing.Color struct.</p>
<pre><code>System.Collections.Generic.List<string> colors =
new System.Collections.Generic.List<string>();
Type t = typeof(System.Drawing.Color);
System.Reflection.PropertyInfo[] infos = t.GetProperties();
foreach (System.Reflection.PropertyInfo info in infos)
if (info.PropertyType == typeof(System.Drawing.Color))
colors.Add(info.Name);
</code></pre>
http://stackoverflow.com/questions/263343/as-a-programmer-how-broad-does-your-knowledge-have-to-be/263737#2637372Answer by Steve Tranby for As a programmer how broad does your knowledge have to be ?Steve Tranby2008-11-04T22:35:42Z2008-11-04T22:35:42Z<p><strong>Breadth is proportional to Depth</strong> or <strong>Quantity is proportional to Quality</strong>. </p>
<p>An architect should have a greater breadth of knowledge caring more about how the entire system is going to work, and which things hook together, but not about how each piece is implemented. Whereas a C# expert in Asp.Net is going to know exactly how to implement the hook that ties the database to the browser through business logic.</p>
<p>Acquiring knowledge should be based on three things:</p>
<ol>
<li><p>Interests - What are you interested in, if there is enough passion you should already be learning and gaining knowledge in that area. Make sure you create, and not just learn. It is much more fulfilling to complete a project based on your interest than learn about how somebody else did it. If you have a variety of interests then your knowledge will be broader. If you really only enjoy games (and making them), then you'll become an expert in just that one area.</p></li>
<li><p>Work - What does your job require of you? Learn those features or technologies that will help you do your job better, more efficiently, and make it more interesting.</p></li>
<li><p>Career - Is there a different career path, or promotional path that you would like to pursue. Take classes, get a degree, or just learn and practice in that area.</p></li>
</ol>
<p>You'll need to balance each of these according to your goals.</p>
http://stackoverflow.com/questions/1592271/why-not-google-app-engineComment by Steve Tranby on Why "not" Google App Engine?Steve Tranby2009-10-21T01:09:43Z2009-10-21T01:09:43Zthis is why I wish microsoft would've grew a pair and offered a small amount of resources for free to compete with google, since they have a wide variety of language support.http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78781#78781Comment by Steve Tranby on What do you use to keep notes as a developer?Steve Tranby2009-09-02T19:37:48Z2009-09-02T19:37:48ZFor the left handed I use the top spiral bound memo pads.http://stackoverflow.com/questions/1315929/what-are-different-storages-available-used-to-by-a-program-during-execution-timeComment by Steve Tranby on What are different storages available/used to/by a program during execution time?Steve Tranby2009-09-01T23:37:46Z2009-09-01T23:37:46ZHonestly, if the answers below aren't enough you probably should read a few chapters from a decent book on the subject. The book my course used was: <a href="http://www.amazon.com/Computer-Organization-Design-Fourth-Architecture/dp/0123744938/" rel="nofollow">amazon.com/Computer-Organization-Design-Fourth-Ar…</a>http://stackoverflow.com/questions/1081998/iphone-increase-uiimageview-size-and-keep-the-image-size-fixed/1082011#1082011Comment by Steve Tranby on iPhone - increase UIImageView size and keep the image size fixedSteve Tranby2009-07-05T07:03:34Z2009-07-05T07:03:34Ztry setting the bkg to 0.1 opacity, I think if it's 0 alpha it doesn't register touch eventshttp://stackoverflow.com/questions/212253/what-are-the-developments-going-on-in-all-languages-in-parallel-programming-area/214617#214617Comment by Steve Tranby on What are the developments going on in all languages in parallel programming areaSteve Tranby2009-06-24T23:05:38Z2009-06-24T23:05:38ZThanks for the info on Axumhttp://stackoverflow.com/questions/262724/is-it-better-to-use-nested-master-pages-or-user-controls-for-multi-sectioned-webs/262848#262848Comment by Steve Tranby on Is it better to use Nested Master pages or User Controls for multi-sectioned website?Steve Tranby2009-05-28T14:39:48Z2009-05-28T14:39:48ZThat makes even more reason to go with nested/different master pages to allow a greater degree of design change between sites. http://stackoverflow.com/questions/262724/is-it-better-to-use-nested-master-pages-or-user-controls-for-multi-sectioned-webs/262775#262775Comment by Steve Tranby on Is it better to use Nested Master pages or User Controls for multi-sectioned website?Steve Tranby2009-05-28T14:38:50Z2009-05-28T14:38:50ZThanks for the inputhttp://stackoverflow.com/questions/554909/problem-sorting-rss-feed-by-date-using-xsl/555536#555536Comment by Steve Tranby on Problem sorting RSS feed by date using XSLSteve Tranby2009-05-20T20:41:49Z2009-05-20T20:41:49Z@Dimitre Thank you so much, that worked perfectly. select="ms:node-set($vrtfMonths)/m instead of select="document('')
I found how to use MSXML with node-set() here:
<a href="http://social.msdn.microsoft.com/forums/en-US/xmlandnetfx/thread/9f7f8e31-4320-40e5-92db-7309d26fdf46/" rel="nofollow">social.msdn.microsoft.com/forums/en-US/…</a>http://stackoverflow.com/questions/554909/problem-sorting-rss-feed-by-date-using-xsl/555536#555536Comment by Steve Tranby on Problem sorting RSS feed by date using XSLSteve Tranby2009-05-20T17:33:50Z2009-05-20T17:33:50ZCan this same thing be done, without the use of document('')? Or is that what allows xpath access to the elements within the .xsl file? I am asking because DotNetNuke doesn't parse document('') within an XSL file by default.http://stackoverflow.com/questions/560023/asp-net-repeater-template-conditional-code-for-every-nth-element/560038#560038Comment by Steve Tranby on ASP.NET Repeater Template, Conditional Code for every Nth elementSteve Tranby2009-05-14T18:24:58Z2009-05-14T18:24:58ZThe smarter way is to use ListViewhttp://stackoverflow.com/questions/26280/favorite-web-host/26348#26348Comment by Steve Tranby on Favorite web host.Steve Tranby2009-04-09T03:52:46Z2009-04-09T03:52:46Zi used to have them get their own host, but never which host to refer them to, so now i host them myself, that way they pay me, and I can change the underlying host if necessary. NetworkRedux.net has been very good for me for a while now.http://stackoverflow.com/questions/263764/windows-7-on-a-virtual-machine/431730#431730Comment by Steve Tranby on Windows 7 on a virtual machineSteve Tranby2009-01-12T18:59:31Z2009-01-12T18:59:31ZWorked for me too on VMW 6.5 - including USB 2, sound, and network (haven't been able to get aero working however)http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182135#182135Comment by Steve Tranby on What are some funny loading statements to keep users amused?Steve Tranby2009-01-06T00:38:04Z2009-01-06T00:38:04ZSimTower was awesome! SimCity2000 best sim game ever IMHO!http://stackoverflow.com/questions/398948/using-cookies-for-web-session-state-what-are-the-pitfalls/399000#399000Comment by Steve Tranby on Using Cookies for Web Session State - What are the pitfalls?Steve Tranby2009-01-05T19:33:13Z2009-01-05T19:33:13ZValid point, I will update, but I was going for the fact that the data itself isn't stored in a cookie. http://stackoverflow.com/questions/290806/do-you-try-to-make-your-code-look-pretty/290828#290828Comment by Steve Tranby on Do you try to make your code look pretty?Steve Tranby2008-11-14T19:22:08Z2008-11-14T19:22:08ZTrue machines should work for us, and thus we shouldn't modify formatting by hand either.