User chaiguy1337 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T18:00:21Z http://stackoverflow.com/feeds/user/37872 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/357076/best-way-to-hide-a-window-from-the-alt-tab-program-switcher 6 Best way to hide a window from the Alt-Tab program switcher? chaiguy1337 2008-12-10T18:31:39Z 2009-12-08T16:46:46Z <p>I've been a .NET developer for several years now and this is still one of those things I don't know how to do properly. It's easy to hide a window from the taskbar via a property in both Windows Forms and WPF, but as far as I can tell, this doesn't guarantee (or necessarily even affect) it being hidden from the Alt-Tab dialog. I've seen <em>invisible</em> windows show up in Alt-Tab, and I'm just wondering what is the best way to guarantee a window will <em>never</em> appear (visible or not) in the Alt-Tab dialog.</p> <p><strong>Update:</strong> Please see my posted solution below. I'm not allowed to mark my own answers as the solution, but so far it's the only one that works.</p> <p><strong>Update 2:</strong> There's now a proper solution by Franci Penov that looks pretty good, but haven't tried it out myself. Involves some Win32, but avoids the lame creation of off-screen windows.</p> http://stackoverflow.com/questions/389417/synchronization-of-clocks-between-two-remote-computers 1 Synchronization (of clocks) between two remote computers chaiguy1337 2008-12-23T16:54:17Z 2009-10-31T13:34:27Z <p>I'm looking into writing a simple synchronization ability into my app and one of the concerns that has popped up is synchronization of time between two remote computers, each with their own clock (in particular concerning the modification dates of files/objects).</p> <p>I'm sure a lot of research has been done on this topic and don't want to get too theoretical, but I'm wondering if there are any accepted best practices for minimizing temporal discrepancies between remote clocks?</p> <p>For example, a start is to always use universal time (UTC) as that avoids timezone problems, but there is no guarantee that two computers will have exactly the same system time. Luckily the work I'm doing isn't very fine-grained, so it's not a terribly important concern, but I'm still curious nonetheless.</p> <p>One solution would be to always use the same clock on both ends, such as a global time server, rather than the local system clock. Presumably this (combined with shared resource locks) could guarantee no accidental overlap of synchronized time, but it's not very practical.</p> <p>One thought that just popped into my head would be to synchronize each node (each client) with an offset calculated at some point prior, perhaps by calculating the offset of the system clock with a global time server. This would only need to be done occasionally as the offset itself would not likely change greatly over a short period of time.</p> <p><strong>Update:</strong> Let me just add that I'm not interested in actually synchronizing the system clocks of two computers--I'll presume that the operating system will handle this in most cases. This is just a question of how to ensure two instances of an application are using synchronized times, though in this day and age I suppose the system clocks would almost assuredly be synchronized to within some very small delta anyway.</p> http://stackoverflow.com/questions/648568/interpreting-javascript-outside-of-the-browser 6 Interpreting JavaScript outside of the browser? chaiguy1337 2009-03-15T21:20:00Z 2009-09-25T14:49:04Z <p>This is more out of curiosity that a real requirement, but I'm wondering if it's possible to treat JavaScript as (ideally) a first-class .NET citizen, or (secondarily) have some way of invoking/interpreting pure JavaScript functions (that don't require the DOM) in a desktop setting?</p> <p>Has anyone ever attempted implementing a CLR version of JavaScript? Something tugs at the back of my mind concerning this, but now that I think about it it was PHP, not JavaScript.</p> http://stackoverflow.com/questions/647141/is-it-appropriate-to-ask-questions-on-so-without-prior-research 2 Is it appropriate to ask questions on SO without prior research? [closed] chaiguy1337 2009-03-15T02:23:40Z 2009-09-25T01:19:39Z <p>StackOverflow is so easy to get answers on, I'm starting to find myself asking questions on here as a starting point, before even Googling or wikiing them. Is this considered rude, or do people like to answer simple questions as well?</p> http://stackoverflow.com/questions/382676/good-numericupdown-equivalent-in-wpf 2 Good NumericUpDown equivalent in WPF? chaiguy1337 2008-12-20T00:42:14Z 2009-09-14T12:06:47Z <p>I'm looking for a simple NumericUpDown (a.k.a. number spinner) control in WPF. This seems to be another lacking control in WPF. There must be some existing ones out there and I don't like to re-invent the wheel.</p> http://stackoverflow.com/questions/667429/using-a-colon-in-a-url-with-asp-net-iis 0 Using a colon (:) in a url with ASP.NET/IIS chaiguy1337 2009-03-20T18:42:54Z 2009-07-07T09:14:34Z <p>I'm implementing a custom controller in ASP.NET MVC and <em>really</em> want to be able to use a colon in the urls, so that I can identify class/column names and their values, like so:</p> <p><a href="http://mysite.com/user:chaiguy" rel="nofollow">http://mysite.com/user:chaiguy</a></p> <p>...but apparently ASP.NET or IIS doesn't allow colons in urls. I did some digging and apparently it's considered a security issue, <em>but</em>, I'm using MVC and am handling <em>all</em> url paths manually (just treating them as strings), and not relating them to the file system, so I'm pretty sure this doesn't apply.</p> <p>I also heard some talk about implementing a custom Http handler or something.</p> <p>Any thoughts or ideas would be much appreciated.</p> http://stackoverflow.com/questions/820603/what-should-one-map-strings-to-in-a-database-orm 1 What should one map strings to in a database ORM? chaiguy1337 2009-05-04T15:33:25Z 2009-05-04T16:13:18Z <p>Strings are unbounded, but it seems every normal relational database requires that a column declare its maximum length. This seems to be a rather significant discrepancy and I'm curious how typical ORMs handle this.</p> <p>Using a 'text' column type would theoretically give you much more string-like storage, but as I understand it text columns are not queryable, or at least not efficiently (non-indexed?).</p> <p>I'm thinking of using something like NHibernate perhaps, but my ORM needs are relatively simple, so if I can just write it myself it might save some bloat.</p> http://stackoverflow.com/questions/791460/what-is-ec2-authorize 0 What is ec2-authorize? chaiguy1337 2009-04-26T19:39:11Z 2009-05-01T00:39:33Z <p>I am new to EC2 and am trying to get it set up so that I can publish directly to it from VS2008. Everyone keeps mentioning using "ec2-authorize" to enable certain things, but what the heck is this? Nowhere seems to explain what it is or where it's accessed from. I tried it from a command line in the actual ec2 instance, but there's nothing there.</p> <p>P.S. I'm using a Windows instance of EC2.</p> http://stackoverflow.com/questions/791460/what-is-ec2-authorize/791536#791536 0 Answer by chaiguy1337 for What is ec2-authorize? chaiguy1337 2009-04-26T20:22:07Z 2009-04-26T20:22:07Z <p>Ah, I think I found it finally:</p> <p><a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=351&amp;categoryID=88" rel="nofollow">http://developer.amazonwebservices.com/connect/entry.jspa?externalID=351&amp;categoryID=88</a></p> <p>Unfortunately it means I have to install Java. **<em>sigh</em></p> http://stackoverflow.com/questions/787383/how-to-support-custom-user-domains-like-wordpress-in-iis-asp-net 0 How to support custom user domains (like WordPress) in IIS/ASP.NET chaiguy1337 2009-04-24T20:09:57Z 2009-04-24T20:30:47Z <p>I would like to know if it is possible using IIS and ASP.NET (and ideally something that might be employed on a shared hosting account, but this isn't required) to mimic WordPress.com's ability to allow end users to use their own domain names.</p> <p>WordPress has users who own their own domains change the domain's DNS settings to point to WordPress's own DNS. My guess is this is <em>not</em> something that would be able to be done on a shared hosting account since it would involve adding an entry to the DNS server's table for each custom user domain.</p> <p>However, for future reference, is this something that might be automated programmatically on perhaps a VPS?</p> http://stackoverflow.com/questions/784006/how-does-google-chrome-suggest-url-completions 3 How does Google Chrome suggest url completions? chaiguy1337 2009-04-23T23:41:16Z 2009-04-24T13:48:45Z <p>I've learned about Google's (unofficial) suggest API and their search API, which both look really great, but the suggest API doesn't actually suggest navigational completions. On the other hand, in Google Chrome if you start to type for example "apple", it will suggest "www.apple.com/trailers".</p> <p>I know it searches your browsing history, but I've never been to that page so it's not getting it locally.</p> <p>Is this another unofficial secret API?</p> http://stackoverflow.com/questions/496545/are-recaptcha-captchas-getting-harder-or-is-just-me/716333#716333 1 Answer by chaiguy1337 for Are reCAPTCHA CAPTCHAs getting harder or is just me chaiguy1337 2009-04-04T02:04:36Z 2009-04-04T15:11:36Z <p>The thing to keep in mind about ReCAPTCHA is that they are images actually scanned from real books and articles. As such you have to be aware that funky punctuation and stuff can make it in--it's not just words. For example I've seen partial words that end in a hyphen (that obviously occurred on the end of a line) as well as dollar-signs, numbers (like 1. Something), etc.</p> <p>I find if you bear in mind the origin it makes a heck of a lot more sense and is easier to solve.</p> <p>Also interestingly, you only need to get one of the reCAPTCHA words right, because the other is used to aid in the digitization. However you won't know which is which. :)</p> http://stackoverflow.com/questions/716361/conditionally-excluding-a-block-of-html-in-asp-net-webforms 0 Conditionally excluding a block of html in ASP.NET WebForms chaiguy1337 2009-04-04T02:20:34Z 2009-04-04T02:49:45Z <p>This is just a simple question: how do I exclude a piece of html on an aspx web form from being returned by the server, based on a server-side evaluation?</p> <p>I'm not talking about a control specifically since they tend to have Visible parameters, but rather just some raw html.</p> http://stackoverflow.com/questions/381895/asp-net-mvc-reminds-me-of-old-classic-asp-spaghetti-code/716343#716343 1 Answer by chaiguy1337 for ASP.NET MVC reminds me of old Classic ASP spaghetti code... chaiguy1337 2009-04-04T02:11:10Z 2009-04-04T02:11:10Z <p>Check out the <a href="http://code.google.com/p/string-template-view-engine-mvc/" rel="nofollow">StringTemplate</a> view engine, it looks nice and clean.</p> http://stackoverflow.com/questions/684104/markdown-for-net-how-does-so-render-it-on-the-fly 2 Markdown for .NET? How does SO render it on the fly? chaiguy1337 2009-03-26T00:51:02Z 2009-03-26T00:55:45Z <p>I'm just getting into Markdown and think it's the bee's knees. I'm working in ASP.NET (MVC) and am wondering if there are any good .NET libraries for Markdown, and am also curious how SO renders it on the fly. It must be a JavaScript library.</p> http://stackoverflow.com/questions/684104/markdown-for-net-how-does-so-render-it-on-the-fly/684116#684116 0 Answer by chaiguy1337 for Markdown for .NET? How does SO render it on the fly? chaiguy1337 2009-03-26T00:55:45Z 2009-03-26T00:55:45Z <p>Ah, found the answer to one of my questions:</p> <p><a href="http://stackoverflow.com/questions/134235/is-there-any-good-markdown-javascript-library-or-control">http://stackoverflow.com/questions/134235/is-there-any-good-markdown-javascript-library-or-control</a></p> http://stackoverflow.com/questions/30928/a-wysiwyg-markdown-control-for-windows-forms/684045#684045 0 Answer by chaiguy1337 for A WYSIWYG Markdown control for Windows Forms? chaiguy1337 2009-03-26T00:13:58Z 2009-03-26T00:13:58Z <p>"WYSIWYG Markdown" is really an oxymoron since the whole point of Markdown is to allow you to write markup syntax naturally and intuitively which is then post-processed into html, <em>unless</em> you mean actually taking for example **text** and rendering it as <strong>**text*</strong>* for example. That would actually be kind of cool, but it would get very difficult for things like numbered and bulleted lists, since you would have to do all the positioning, yet keep everything based on actual textual characters (e.g. '*' instead of the bullet symbol) and support proper textual input positioning, backspace, etc.</p> <ul> <li>For example,</li> <li>in this bullet list,</li> <li>the bullets would actually have to be asterisks,</li> <li>and the spacing would not really be there.</li> </ul> <p>That would certainly be worth paying attention to, if someone did tackle it.</p> http://stackoverflow.com/questions/667429/using-a-colon-in-a-url-with-asp-net-iis/667587#667587 0 Answer by chaiguy1337 for Using a colon (:) in a url with ASP.NET/IIS chaiguy1337 2009-03-20T19:22:19Z 2009-03-20T19:22:19Z <blockquote> <p>Er.... why? Seriously, why break standards? – Randolpho</p> </blockquote> <p>...</p> <blockquote> <p>I suggest, then, that you investigate building a web service. WCF is a nice technology for that, and it hosts well in IIS.</p> </blockquote> <p>I happen to like urls, and WCF is way too complicated for my purposes. I want it to be url-compatible, like REST, but capable of more than just navigating hierarchies, or doing well laid-out things. The problem I have with /users/chaiguy is that it is interpreting hierarchy where there is none: in my system "user" is a class, it's not a folder. user:chaiguy means the instance of the user class with the value of "chaiguy", and that is a single entity, that has the potential of having child-entities. So for example:</p> <p><code>/user:chaiguy/name</code></p> <p>...I would like to display the name of that entity. If I did this with your method, it would look like this:</p> <p><code>/users/chaiguy/name</code></p> <p>The problem is how do you know what's the class and what's the value? It could be interpreted as</p> <p><code>/users/chaiguy:name</code></p> <p>in my system, and that doesn't make sense. See what I'm getting at? To give a slightly more complicated example, suppose we want to select a child of the user entity out of multiple instances. So a user might have several email addresses. To select one, we might use:</p> <p><code>/user:chaiguy/email:me@here.com/</code></p> <p>So it is in fact recursive. It's not a file path, it's more like an XPath (or maybe similar to jQuery based on what little I know of it yet). That is, it's more of a dynamically-evaluated query selection than a hardwired file path. It gets evaluated on the server.</p> <p>Make no mistake, I'm not building a typical web site or even web service here.</p> http://stackoverflow.com/questions/664955/how-do-i-set-up-a-universal-controller-in-asp-net-mvc 0 How do I set up a universal controller in ASP.NET MVC? chaiguy1337 2009-03-20T04:10:25Z 2009-03-20T09:57:35Z <p>I know it's not perhaps in the true spirit of MVC, but I just want to have a single global controller that always gets called no matter <em>what</em> the url looks like. For example, it could be:</p> <p><a href="http://myserver.com/anything/at/all/here.fun?happy=yes&amp;sad=no#yippie" rel="nofollow">http://myserver.com/anything/at/all/here.fun?happy=yes&amp;sad=no#yippie</a></p> <p>...and I want that to be passed to my single controller. I intend to obtain the path programmatically and handle it myself--so in other words, I don't really want any routing at all.</p> <p>I've opened up the global.asax file and found where routes are registered, but I just don't know what to put for the 'url' parameter in MapRoute:</p> <pre><code>routes.MapRoute( "Global", "", new { controller = "Global", action = "Index" } ); </code></pre> <p>This (with the blank 'url') works fine for the default path of '/', but if I change it to anything I get a file not found, when I want it to handle <em>any</em> url. I also tried "*", etc. but that didn't work.</p> <p>I couldn't find any definitive reference to the format that the url parameter takes.</p> http://stackoverflow.com/questions/656674/how-efficient-are-iframes 1 How efficient are IFrames? chaiguy1337 2009-03-18T01:35:49Z 2009-03-18T02:00:31Z <p>If I built a page that consisted of IFrames on the order of hundreds, would this be incredibly slow, or would it behave similar to having a hundred divs?</p> <p>The reason I ask is I'm looking for a nice recursive way to build a web page, where I can load sub-elements of a page as if they were complete pages of their own, with their own urls.</p> <p>Thoughts? Opinions? Am I totally crazy to even be thinking it?</p> <p><strong>Edit:</strong> I just realized this would probably absolutely shred the network connection because it would have to make separate requests for each embedded frame, wouldn't it? And everything I've learned on making web pages more efficient to load is to reduce the number of http requests it needs to make.</p> http://stackoverflow.com/questions/647137/how-do-javascript-tidbits-insert-remote-widgets-onto-a-page 0 How do JavaScript tidbits insert remote widgets onto a page? chaiguy1337 2009-03-15T02:19:58Z 2009-03-15T03:02:40Z <p>Let's say I have a web service that allows users to insert a piece of JavaScript onto their page which, when loaded, will grab a widget from my server and insert it into their page. How might I go about doing that, and what techniques should I use?</p> <p>document.write?</p> http://stackoverflow.com/questions/646958/whats-the-best-way-for-the-server-to-send-messages-to-a-web-client 2 What's the best way for the server to send messages to a web client? chaiguy1337 2009-03-14T23:50:04Z 2009-03-15T00:16:43Z <p><em>Links to articles would also be appreciated--I don't know the terminology to search for.</em></p> <p>I'm looking to learn how a web application can allow for server-to-client communications. I know the web was not designed for this and that it has been something of a hurdle, and am just wondering what the state of this is, and what the best practices are.</p> <p>An alternative is constant or occasional polling via ajax, but is it possible for web servers to maintain stateful connections to a web client?</p> <p><strong>Edit:</strong> Another way to ask this question is how does StackOverflow tell a page that new posts are available for it to display that little bar at the top?</p> http://stackoverflow.com/questions/453977/whats-the-simplest-way-to-play-an-mp3-in-wpf 2 What's the simplest way to play an MP3 in WPF? chaiguy1337 2009-01-17T20:32:45Z 2009-02-17T10:26:17Z <p>Has to be free.</p> http://stackoverflow.com/questions/504814/how-can-i-tell-if-a-drag-and-drop-operation-failed 0 How can I tell if a drag and drop operation failed? chaiguy1337 2009-02-02T20:45:20Z 2009-02-02T23:08:46Z <p>It seems to me there is no way to detect whether a drag operation was successful or not, but there must be some way. Suppose that I want to perform a "move" from the source to the destination. If the user releases the mouse over some app or control that cannot accept the drop, how can I tell?</p> <p>For that matter, how can I tell when the drag is completed at all?</p> <p>I saw <a href="http://stackoverflow.com/questions/480156/how-do-i-tell-if-a-drag-drop-has-ended-in-winforms">this question</a>, but his solution does not work for me, and <code>e.Action</code> is <em>always</em> <code>Continue</code>.</p> http://stackoverflow.com/questions/504814/how-can-i-tell-if-a-drag-and-drop-operation-failed/504882#504882 0 Answer by chaiguy1337 for How can I tell if a drag and drop operation failed? chaiguy1337 2009-02-02T21:03:10Z 2009-02-02T21:03:10Z <p>Ah, I think I've got it. Turns out the call to DoDragDrop is actually <em>synchronous</em> (how lame), and returns a value of <code>DragDropEffects</code>, which is set to <code>None</code> if the op fails. So basically this means the app (or at least the UI thread) will be frozen for so long as the user is in the middle of a drag. That does not seem a very elegant solution to me.</p> <p>Ok cz_dl I see you just posted that very thing so I'll give u the answer.</p> <p>This I don't understand though: how can the destination determine whether the op should be a move or a copy? Shouldn't that be up to the source app?</p> http://stackoverflow.com/questions/452726/scrolling-credits-screen-in-wpf-ideas 6 Scrolling credits screen in WPF... ideas? chaiguy1337 2009-01-17T03:08:56Z 2009-01-20T14:07:19Z <p>I'm looking to create a (possibly 3D) scrolling credits screen for my app, that is similar to what you might see at the end of a movie, but should be able to include graphics, animations, etc.</p> <p>What is the best way to go about doing this? I'm thinking I could create a very tall UserControl that contains the entire content to scroll and then just animate it inside a ScrollViewer, or even just a Canvas and animate the position, but there are obvious performance issues with doing something like that and I'm afraid it would be too slow.</p> <p>It would be cool if the credits could scroll on a 3D surface, kind of like Star Wars, or with a fisheye effect, but I know squat about 3D in WPF.</p> <p>I do definitely want some kind of fading/alpha-blending so the credits appear to fade in at the bottom and/or fade out at the top, but I'm also stuck on how to do that.*</p> <p>*<em>Actually, for that I guess I could overlay some semitransparent gradient, so long as the background was a solid color.</em></p> http://stackoverflow.com/questions/452726/scrolling-credits-screen-in-wpf-ideas/456225#456225 7 Answer by chaiguy1337 for Scrolling credits screen in WPF... ideas? chaiguy1337 2009-01-19T00:34:08Z 2009-01-19T00:40:48Z <p>Well since nobody seems to have any comments, I went ahead and did things how I described and must say the results are quite good. I used a vertical LinearGradientBrush to do the fading, and simply animated a UserControl inside a Canvas for the scrolling (animating Canvas.Top from &lt;ActualHeight of Canvas> to (negative)&lt;ActualHeight of UserControl>). Looks pretty good. :)</p> <p>Here's the animation (note I had to set DoubleAnimation.To in code to scroller.ActualHeight):</p> <pre><code>&lt;DoubleAnimation x:Name="scrollAnim" BeginTime="0:0:30" Duration="0:0:30" From="200" Storyboard.TargetName="scroller" Storyboard.TargetProperty="(Canvas.Top)" /&gt; </code></pre> <p>And here's the <code>scroller</code> element:</p> <pre><code>&lt;Canvas ClipToBounds="True" x:Name="scrollerCanvas"&gt; &lt;Credits:ScrollingCredits x:Name="scroller" Canvas.Top="200" Width="{Binding ElementName=this, Path=ActualWidth}" /&gt; &lt;/Canvas&gt; </code></pre> <p>(There is some other stuff going on, hence why the scrolling starts at 0:0:30.)</p> <p>Here's the fader:</p> <pre><code>&lt;Border x:Name="border" Opacity="0"&gt; &lt;Border.Background&gt; &lt;LinearGradientBrush StartPoint="0,0" EndPoint="0,1"&gt; &lt;GradientStop Offset="0" Color="Black" /&gt; &lt;GradientStop Offset="0.2" Color="#00000000" /&gt; &lt;GradientStop Offset="0.8" Color="#00000000" /&gt; &lt;GradientStop Offset="1" Color="Black" /&gt; &lt;/LinearGradientBrush&gt; &lt;/Border.Background&gt; &lt;/Border&gt; </code></pre> http://stackoverflow.com/questions/453977/whats-the-simplest-way-to-play-an-mp3-in-wpf/456218#456218 1 Answer by chaiguy1337 for What's the simplest way to play an MP3 in WPF? chaiguy1337 2009-01-19T00:30:08Z 2009-01-19T00:30:08Z <p>Though I didn't actually mention it, I was hoping to find a way to play embedded MP3 resources, and neither MediaPlayer nor MediaElement support loading from streams (they accept a uri, but don't work with pack:// uris).</p> <p>I ended up simply extracting the embedded MP3 to a temporary directory, playing it (with MediaPlayer), then deleting it when done. It involves a slight delay (of about 0.5-1 second) but seems to be the safest way to play an embedded resource.</p> http://stackoverflow.com/questions/387801/why-does-php-software-often-look-better-on-the-outside-than-software-written-in/452737#452737 0 Answer by chaiguy1337 for Why does PHP software often look better (on the outside) than software written in other languages? chaiguy1337 2009-01-17T03:29:06Z 2009-01-17T03:29:06Z <p>It's all about the underlying design of the language. C# itself is a pretty decent language as far as I'm concerned (I'm no language guru by any means), but ASP.NET is a horrible piece of junk. I messed around with it for a little while and it left me so utterly confused and <em>angry</em> at their design decisions that I just couldn't keep using it.</p> <p>Now I've heard the MVC framework for ASP.NET is better (and it's what StackOverflow is written with), so I have plans to check that out at some point, but the short answer to your question is <strong>it's entirely dependent on how intelligent (and <em>inspired</em>) the designers of the platform are</strong>, and I'm guessing that the PHP authors were a lot more inspired than the authors of ASP.NET.</p> <p>My opinion, of course.</p> http://stackoverflow.com/questions/167617/where-do-you-get-your-application-sounds-from/452065#452065 0 Answer by chaiguy1337 for Where do you get your application sounds from? chaiguy1337 2009-01-16T21:22:05Z 2009-01-16T21:22:05Z <p>Check this site out I just found, it looks great!</p> <p><a href="http://audiojungle.net/" rel="nofollow">http://audiojungle.net/</a></p> http://stackoverflow.com/questions/820603/what-should-one-map-strings-to-in-a-database-orm/820749#820749 Comment by chaiguy1337 on What should one map strings to in a database ORM? chaiguy1337 2009-05-05T13:40:54Z 2009-05-05T13:40:54Z &quot;SqlServer for instance stores only the actual size of the data.&quot; --Does this mean I could theoretically declare the max size to be something like MAX_INT or would that still have some performance drawback? http://stackoverflow.com/questions/791460/what-is-ec2-authorize/791573#791573 Comment by chaiguy1337 on What is ec2-authorize? chaiguy1337 2009-04-28T00:53:21Z 2009-04-28T00:53:21Z I mean, I used to do that with FrontPage with my current web host, not EC2. http://stackoverflow.com/questions/791460/what-is-ec2-authorize/791573#791573 Comment by chaiguy1337 on What is ec2-authorize? chaiguy1337 2009-04-27T20:13:47Z 2009-04-27T20:13:47Z Awesome. I did look through the management console, but apparently missed it. Now that I look closer I do see some security group stuff. All I'm trying to do is deplay a single VS2008 web app to a single EC2 instance. I used to do this with FrontPage, but couldn't for the life of me get that working. I'm now trying FTP, but the docs say I need to allow FTP access using ec2-authorize. Unfortunately I can't see FTP in the management console anywhere. http://stackoverflow.com/questions/787383/how-to-support-custom-user-domains-like-wordpress-in-iis-asp-net/787472#787472 Comment by chaiguy1337 on How to support custom user domains (like WordPress) in IIS/ASP.NET chaiguy1337 2009-04-24T20:57:33Z 2009-04-24T20:57:33Z Ok thanks. I'll keep fiddling with EC2 anyway--I might as well learn how to use it. :) http://stackoverflow.com/questions/787383/how-to-support-custom-user-domains-like-wordpress-in-iis-asp-net/787472#787472 Comment by chaiguy1337 on How to support custom user domains (like WordPress) in IIS/ASP.NET chaiguy1337 2009-04-24T20:49:53Z 2009-04-24T20:49:53Z No doubt it's going to be harder on Windows, but just possible is enough for me right now. I just set up a EC2 account and am wondering if this will give me the ability to do this, however I know very little at this point. Will a Windows-based EC2 enable me to control IIS in the ways you mention? http://stackoverflow.com/questions/787383/how-to-support-custom-user-domains-like-wordpress-in-iis-asp-net/787428#787428 Comment by chaiguy1337 on How to support custom user domains (like WordPress) in IIS/ASP.NET chaiguy1337 2009-04-24T20:25:23Z 2009-04-24T20:25:23Z This is another thing I would like to do, but right now I'm curious about supporting completely custom domain names owned by users. http://stackoverflow.com/questions/453158/what-is-the-practical-difference-between-xml-json-rss-and-atom-when-interfacing/453160#453160 Comment by chaiguy1337 on What is the practical difference between xml, json, rss and atom when interfacing with Twitter? chaiguy1337 2009-04-24T13:56:49Z 2009-04-24T13:56:49Z It also just happens to be a heck of a lot simpler and more human-readable as well, imo, and is a lot more concise. http://stackoverflow.com/questions/784006/how-does-google-chrome-suggest-url-completions/784951#784951 Comment by chaiguy1337 on How does Google Chrome suggest url completions? chaiguy1337 2009-04-24T13:49:48Z 2009-04-24T13:49:48Z Brilliant, thanks for such an in-depth answer! http://stackoverflow.com/questions/650077/visual-studio-2010-color-scheme-for-vs-2008 Comment by chaiguy1337 on Visual studio 2010 color scheme for vs 2008? chaiguy1337 2009-04-14T17:15:17Z 2009-04-14T17:15:17Z Do you have a link to a screenshot? I wasn't aware VS2010 had a new color scheme. http://stackoverflow.com/questions/496545/are-recaptcha-captchas-getting-harder-or-is-just-me/496548#496548 Comment by chaiguy1337 on Are reCAPTCHA CAPTCHAs getting harder or is just me chaiguy1337 2009-04-06T13:33:27Z 2009-04-06T13:33:27Z I'm totally the opposite: I especially like reCAPTCHA's because they use real words and not just a random garble of letters and numbers. Personally I find that so much easier. http://stackoverflow.com/questions/496545/are-recaptcha-captchas-getting-harder-or-is-just-me/716379#716379 Comment by chaiguy1337 on Are reCAPTCHA CAPTCHAs getting harder or is just me chaiguy1337 2009-04-06T13:31:30Z 2009-04-06T13:31:30Z Granted, you wouldn't want to do this every time you submit a post or something, but a little concentration once in a while isn't that bad. ;) http://stackoverflow.com/questions/496545/are-recaptcha-captchas-getting-harder-or-is-just-me/716379#716379 Comment by chaiguy1337 on Are reCAPTCHA CAPTCHAs getting harder or is just me chaiguy1337 2009-04-06T13:30:26Z 2009-04-06T13:30:26Z Well I mean isn't that really the point? The reason they work is they tap into areas of the brain that computers aren't good at. Naturally it's going to involve at least some amount of thinking. http://stackoverflow.com/questions/496545/are-recaptcha-captchas-getting-harder-or-is-just-me/716333#716333 Comment by chaiguy1337 on Are reCAPTCHA CAPTCHAs getting harder or is just me chaiguy1337 2009-04-06T13:28:12Z 2009-04-06T13:28:12Z I just did 11 in a row at <a href="http://recaptcha.net/learnmore.html" rel="nofollow">recaptcha.net/learnmore.html</a>. Some of them were a little tricky, but I didn't fail a single one. I don't know what you guys are complaining about. http://stackoverflow.com/questions/496545/are-recaptcha-captchas-getting-harder-or-is-just-me/496570#496570 Comment by chaiguy1337 on Are reCAPTCHA CAPTCHAs getting harder or is just me chaiguy1337 2009-04-06T13:23:39Z 2009-04-06T13:23:39Z If a bunch of hoodlums gathered together and all entered &quot;verydifficultword&quot; for a word, then it might be a problem. I recommend at least guessing what it says, bearing in mind it should be at least part of a real word. http://stackoverflow.com/questions/496545/are-recaptcha-captchas-getting-harder-or-is-just-me/496570#496570 Comment by chaiguy1337 on Are reCAPTCHA CAPTCHAs getting harder or is just me chaiguy1337 2009-04-06T13:20:50Z 2009-04-06T13:20:50Z It's actually pretty clever: they show an unknown text several times mixed in with known ones. Once a certain threshold of reliability is reached where several humans confirm the text, it is then used as a test word for others--each test contains at least one known test word.