User Adam Alexander - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:03:28Z http://stackoverflow.com/feeds/user/33164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/742829/animating-custom-drawn-uitableviewcell-when-entering-edit-mode 2 Animating custom-drawn UITableViewCell when entering edit mode Adam Alexander 2009-04-13T01:51:41Z 2009-11-10T17:52:21Z <h3>Background</h3> <p>First of all, much gratitude to <a href="http://www.atebits.com" rel="nofollow">atebits</a> for their very informative blog post <a href="http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview" rel="nofollow">Fast Scrolling in Tweetie with UITableView</a>. The post explains in detail how the developers were able to squeeze as much scrolling performance as possible out of the UITableViews in <a href="http://www.atebits.com/tweetie-iphone" rel="nofollow">Tweetie</a>.</p> <h3>Goals</h3> <p>Beginning with the source code linked from the blog post (<a href="http://atebits.cachefly.net/blog/FastScrolling/FastScrolling.zip" rel="nofollow">original</a>) (<a href="http://github.com/adamalex/fast-scrolling/tree/c335d04f2fcf9ecd2c92935fc73ff09d89569e15" rel="nofollow">my github repo</a>):</p> <ol> <li><p>Allow a UITableView using these custom cells to switch to edit mode, exposing the UI for deleting an item from the table. (<a href="http://github.com/adamalex/fast-scrolling/commit/9fa66a3ecb9c98bcc3ed4bd5cf26a7b6825b5ffb" rel="nofollow">github commit</a>)</p></li> <li><p>Move the cell's text aside as the deletion control slides in from the left. This is complete, although the text jumps back and forth without animation. (<a href="http://github.com/adamalex/fast-scrolling/commit/eb88ffd7af320cd55eda230f204251644dca4fbf" rel="nofollow">github commit</a>)</p></li> <li><p><em>Apply animation to the text movement in goal 2 above for a smooth user experience. This is the step where I became stuck.</em></p></li> </ol> <h3>The Question</h3> <p>What is the best way to introduce this animation to complete goal 3? It would be nice if this could be done in a manner that keeps the logic from my <a href="http://github.com/adamalex/fast-scrolling/commit/eb88ffd7af320cd55eda230f204251644dca4fbf" rel="nofollow">last commit</a> because I would love the option to move the conflicting part of the view only, while any non-conflicting portions (such as right-justified text) stay in the same place or move a different number of pixels. If the above is not possible then undoing my last commit and replacing it with an option that slides the entire view to the right would be a workable solution also.</p> <p>I appreciate any help anyone can provide, from quick pointers and ideas all the way to code snippets or github commits. Of course you are welcome to fork <a href="http://github.com/adamalex/fast-scrolling/tree/master" rel="nofollow">my repo</a> if you would like. I will be staying involved with this question to make sure any successful resolution is committed to github and fully documented here. Thanks very much for your time!</p> <h3>Updated thoughts</h3> <p>I have been thinking about this a lot since my first post and realized that moving some text items relative to others in the view could undo some of the original performance goals solved in the original blog post. So at this point I am thinking a solution where the entire single subview is animated to its new postion may be the best one.</p> <p>Second, if it is done in this way there may be an instance where the subview has a custom color or gradient background. Hopefully this can be done in a way that in its normal position the background extends unseen off to the left enough so that when the view is slid to the right the custom background is still visible across the entire cell.</p> http://stackoverflow.com/questions/761236/difference-between-lambda-expressions-and-anonymous-methods-c/761260#761260 8 Answer by Adam Alexander for Difference between lambda expressions and anonymous methods - C# Adam Alexander 2009-04-17T16:56:46Z 2009-04-17T16:56:46Z <p>A lambda expression is simply shortcut syntax for an anonymous method. Anonymous methods look like this:</p> <pre><code>delegate(params) {method body} </code></pre> <p>The equivalent lambda expression would look like this:</p> <pre><code>params =&gt; method body </code></pre> <p>In short, all lambda expressions are anonymous methods, but it is possible to have an anonymous method that is not written in lambda syntax (like the first example above). Hope this is helpful!</p> http://stackoverflow.com/questions/761194/interface-vs-abstract-class-general-oo/761218#761218 0 Answer by Adam Alexander for Interface vs Abstract Class (general OO) Adam Alexander 2009-04-17T16:48:49Z 2009-04-17T16:48:49Z <p>From <a href="http://stackoverflow.com/questions/268698/inheritance-and-interfaces/268721#268721">another answer of mine</a>, mostly dealing with when to use one versus the other:</p> <blockquote> <p>In my experience, interfaces are best used when you have several classes which each need to respond to the same method or methods so that they can be used interchangeably by other code which will be written against those classes' common interface. The best use of an interface is when the protocol is important but the underlying logic may be different for each class. If you would otherwise be duplicating logic, consider abstract classes or standard class inheritance instead.</p> </blockquote> http://stackoverflow.com/questions/760543/how-do-i-reset-a-net-winforms-textbox-backcolor-property/760582#760582 1 Answer by Adam Alexander for How do I reset a .NET WinForms TextBox BackColor property? Adam Alexander 2009-04-17T14:14:03Z 2009-04-17T14:14:03Z <p>Hi Patrick, in case there is no way to reset the control so it will return to automatically changing its background color when enabled/disabled I would recommend using the UIElement.IsEnabledChanged event to set your desired enabled/disabled background colors. Hope this is helpful!</p> http://stackoverflow.com/questions/752932/has-jquery-mootools-prototype-eliminated-the-need-for-gwt/753026#753026 2 Answer by Adam Alexander for Has Jquery/MooTools/Prototype eliminated the need for GWT? Adam Alexander 2009-04-15T18:17:53Z 2009-04-15T18:17:53Z <p>GWT and javascript libraries serve two different purposes. GWT generates web applications from java code and javascript libraries can be used as a component within web applications. Because javascript libraries can be used in many different types of web application projects (ASP.NET, Ruby on Rails etc.) they may have more of an audience than GWT but the functionality of GWT isn't something javascript libraries completely replace on their own. Depending on needs, both can be very useful for their respective audiences.</p> http://stackoverflow.com/questions/752838/has-jquery-eliminated-the-need-for-gwt/752908#752908 0 Answer by Adam Alexander for Has JQuery eliminated the need for GWT? Adam Alexander 2009-04-15T17:45:33Z 2009-04-15T17:45:33Z <p>GWT and jQuery serve two different purposes. GWT generates web applications from java code and jQuery is a javascript library that can be used within web applications. Because jQuery can be used in many different types of web application projects (ASP.NET, Ruby on Rails etc.) it may have more of an audience than GWT but the functionality of GWT isn't something jQuery completely replaces on its own. Depending on needs, both software packages can be very useful for their respective audiences.</p> http://stackoverflow.com/questions/752861/what-is-the-postinfo-meta-tag-that-appears-in-my-asp-page/752879#752879 1 Answer by Adam Alexander for What is the PostInfo Meta Tag that appears in my ASP page? Adam Alexander 2009-04-15T17:37:42Z 2009-04-15T17:37:42Z <p>This is a meta tag used by the Microsoft Posting Acceptor. You can find more info in <a href="http://www.prof2000.pt/users/softwareservidor/ntoptionpacknt4/pareadme.htm" rel="nofollow">this readme file</a>. Hope this helps!</p> http://stackoverflow.com/questions/742829/animating-custom-drawn-uitableviewcell-when-entering-edit-mode/746271#746271 3 Answer by Adam Alexander for Animating custom-drawn UITableViewCell when entering edit mode Adam Alexander 2009-04-14T03:47:05Z 2009-04-15T16:47:38Z <p>Thanks to <a href="http://stackoverflow.com/questions/742829/animating-custom-drawn-uitableviewcell-when-entering-edit-mode/743856#743856">Craig's answer</a> which pointed me in the right direction, I have a solution for this. I reverted my <a href="http://github.com/adamalex/fast-scrolling/commit/eb88ffd7af320cd55eda230f204251644dca4fbf" rel="nofollow">commit</a> which moved the text position based on the editing mode and replaced it with <a href="http://github.com/adamalex/fast-scrolling/commit/5cef99dfa4697b9d8d89185d3b3ab8edb7cb532d" rel="nofollow">a new solution</a> that sets the entire content view to the correct position any time layoutSubviews is called, which results in an automatic animation when switching to and from edit mode:</p> <pre><code>- (void)layoutSubviews { CGRect b = [self bounds]; b.size.height -= 1; // leave room for the separator line b.size.width += 30; // allow extra width to slide for editing b.origin.x -= (self.editing) ? 0 : 30; // start 30px left unless editing [contentView setFrame:b]; [super layoutSubviews]; } </code></pre> <p>By doing it this way I was able to remove the setFrame: override found in ABTableViewCell.m because its former logic plus my additions are now found in layoutSubviews. </p> <p>I set a light grey background on the cells to verify a custom background works properly without allowing us to see behind it as it moves back and forth and it seems to work great.</p> <p>Thanks again to Craig and anyone else who has looked into this.</p> <p>GitHub commit for this solution: (<a href="http://github.com/adamalex/fast-scrolling/commit/5cef99dfa4697b9d8d89185d3b3ab8edb7cb532d" rel="nofollow">link</a>)</p> http://stackoverflow.com/questions/741712/shallow-routes-with-pathprefix/744286#744286 3 Answer by Adam Alexander for Shallow routes with path_prefix? Adam Alexander 2009-04-13T15:37:39Z 2009-04-15T15:52:47Z <p>Hi Cristoph, the documentation seems to indicate this exact behavior is by design:</p> <blockquote> <p>:shallow - If true, paths for nested resources which reference a specific member (ie. those with an :id parameter) will not use the parent path prefix or name prefix.</p> </blockquote> <p>(from <a href="http://api.rubyonrails.org/classes/ActionController/Resources.html#M000501" rel="nofollow">http://api.rubyonrails.org/classes/ActionController/Resources.html#M000501</a>)</p> <p>Since using the :shallow option will cause your :path_prefix to be ignored in some cases, if you must always have this prefix you should consider removing the :shallow option. Here's an alternate solution that appears to do what you need:</p> <pre><code>map.with_options :path_prefix =&gt; "blog" do |blog| blog.resources :posts do |posts| posts.resources :comments, :only =&gt; [:index, :create, :new] end blog.resources :comments, :except =&gt; [:index, :create, :new] end </code></pre> <p>Resulting in these routes:</p> <pre><code># posts GET /blog/posts {:controller=&gt;"posts", :action=&gt;"index"} # POST /blog/posts {:controller=&gt;"posts", :action=&gt;"create"} # new_post GET /blog/posts/new {:controller=&gt;"posts", :action=&gt;"new"} # edit_post GET /blog/posts/:id/edit {:controller=&gt;"posts", :action=&gt;"edit"} # post GET /blog/posts/:id {:controller=&gt;"posts", :action=&gt;"show"} # PUT /blog/posts/:id {:controller=&gt;"posts", :action=&gt;"update"} # DELETE /blog/posts/:id {:controller=&gt;"posts", :action=&gt;"destroy"} # post_comments GET /blog/posts/:post_id/comments {:controller=&gt;"comments", :action=&gt;"index"} # POST /blog/posts/:post_id/comments {:controller=&gt;"comments", :action=&gt;"create"} # new_post_comment GET /blog/posts/:post_id/comments/new {:controller=&gt;"comments", :action=&gt;"new"} # edit_comment GET /blog/comments/:id/edit {:controller=&gt;"comments", :action=&gt;"edit"} # comment GET /blog/comments/:id {:controller=&gt;"comments", :action=&gt;"show"} # PUT /blog/comments/:id {:controller=&gt;"comments", :action=&gt;"update"} # DELETE /blog/comments/:id {:controller=&gt;"comments", :action=&gt;"destroy"} </code></pre> <p>Hope this helps!</p> http://stackoverflow.com/questions/748614/what-is-the-proper-rails-way-to-consume-a-restful-web-service-on-another-domain/748651#748651 0 Answer by Adam Alexander for What is the proper "Rails Way" to consume a RESTful web service on another domain? Adam Alexander 2009-04-14T17:40:20Z 2009-04-14T17:40:20Z <p>In response to your Twitter example, there is a <a href="http://twitter.rubyforge.org/" rel="nofollow">Twitter Gem</a> that would help to automate this for you.</p> http://stackoverflow.com/questions/748614/what-is-the-proper-rails-way-to-consume-a-restful-web-service-on-another-domain/748644#748644 1 Answer by Adam Alexander for What is the proper "Rails Way" to consume a RESTful web service on another domain? Adam Alexander 2009-04-14T17:39:21Z 2009-04-14T17:39:21Z <p>Hi Mike, if the remote RESTful web service was also created with Ruby on Rails, <a href="http://api.rubyonrails.org/classes/ActiveResource/Base.html" rel="nofollow">ActiveResource</a> is the way to go. </p> http://stackoverflow.com/questions/744353/rails-stale-method-for-sitemap-always-returns-http-200/747832#747832 1 Answer by Adam Alexander for Rails' stale? method for sitemap always returns HTTP 200 Adam Alexander 2009-04-14T14:24:15Z 2009-04-14T14:24:15Z <p>Hi John, it is likely that your Rails code is just fine but curl is not sending the If-Modified-Since header when you perform your test. From the <a href="http://www.cs.sunysb.edu/documentation/curl/index.html" rel="nofollow">curl docs</a>:</p> <blockquote> <p>TIME CONDITIONS</p> <p>HTTP allows a client to specify a time condition for the document it requests. It is If-Modified-Since or If-Unmodified-Since. Curl allow you to specify them with the -z/--time-cond flag.</p> <p>For example, you can easily make a download that only gets performed if the remote file is newer than a local copy. It would be made like:</p> <p>curl -z local.html <a href="http://remote.server.com/remote.html" rel="nofollow">http://remote.server.com/remote.html</a></p> <p>Or you can download a file only if the local file is newer than the remote one. Do this by prepending the date string with a '-', as in:</p> <p>curl -z -local.html <a href="http://remote.server.com/remote.html" rel="nofollow">http://remote.server.com/remote.html</a></p> <p>You can specify a "free text" date as condition. Tell curl to only download the file if it was updated since yesterday:</p> <p>curl -z yesterday <a href="http://remote.server.com/remote.html" rel="nofollow">http://remote.server.com/remote.html</a></p> <p>Curl will then accept a wide range of date formats. You always make the date check the other way around by prepending it with a dash '-'.</p> </blockquote> http://stackoverflow.com/questions/747220/rails-validation-and-fieldwitherrors-wrapping-select-tags/747777#747777 1 Answer by Adam Alexander for Rails validation and 'fieldWithErrors' wrapping select tags Adam Alexander 2009-04-14T14:13:51Z 2009-04-14T14:13:51Z <p>Hi Andi, I found this blog post which appears to address this:</p> <p><a href="http://blog.invalidobject.com/2007/09/16/rails-error-wrapping-for-select-input-fields-of-referenced-models" rel="nofollow">http://blog.invalidobject.com/2007/09/16/rails-error-wrapping-for-select-input-fields-of-referenced-models</a></p> <p>Hope it is helpful!</p> http://stackoverflow.com/questions/747407/using-html-and-local-images-within-uiwebview/747644#747644 6 Answer by Adam Alexander for Using HTML and Local Images Within UIWebView Adam Alexander 2009-04-14T13:48:58Z 2009-04-14T13:48:58Z <p>Using relative paths or file: paths to refer to images does not work with UIWebView. Instead you have to load the HTML into the view with the correct baseURL:</p> <pre><code>NSString *path = [[NSBundle mainBundle] bundlePath]; NSURL *baseURL = [NSURL fileURLWithPath:path]; [webView loadHTMLString:htmlString baseURL:baseURL]; </code></pre> <p>You can then refer to your images like this:</p> <pre><code>&lt;img src="myimage.png"&gt; </code></pre> <p>(from <a href="http://iphoneincubator.com/blog/windows-views/uiwebview-revisited" rel="nofollow">http://iphoneincubator.com/blog/windows-views/uiwebview-revisited</a>)</p> http://stackoverflow.com/questions/746565/why-is-ui-programming-so-time-consuming-and-what-can-you-do-to-mitigate-this/746589#746589 0 Answer by Adam Alexander for Why is UI programming so time consuming, and what can you do to mitigate this? Adam Alexander 2009-04-14T06:54:21Z 2009-04-14T06:54:21Z <p>Hi Andy, if you already know or could learn to use <a href="http://rubyonrails.org/" rel="nofollow">Ruby on Rails</a>, <a href="http://activescaffold.com/" rel="nofollow">ActiveScaffold</a> is excellent for this.</p> http://stackoverflow.com/questions/746506/stop-further-event-handlers-on-an-element/746512#746512 3 Answer by Adam Alexander for Stop further event handlers on an element Adam Alexander 2009-04-14T06:19:38Z 2009-04-14T06:40:46Z <p>Hello Nick, I believe you're looking for <a href="http://docs.jquery.com/Types/Event#event.stopPropagation.28.29" rel="nofollow">event.stopPropagation</a></p> <p>EDIT: turns out this was not the correct option for Nick's purposes. Please see <a href="http://stackoverflow.com/questions/746506/stop-further-event-handlers-on-an-element/746533#746533">his answer</a>. </p> http://stackoverflow.com/questions/746531/is-it-wrong-to-change-a-block-element-to-inline-with-css-if-it-contains-another-b/746545#746545 0 Answer by Adam Alexander for Is it wrong to change a block element to inline with CSS if it contains another block element? Adam Alexander 2009-04-14T06:35:37Z 2009-04-14T06:35:37Z <p>Hi Matthew, I don't know off the top of my head if this validates any rules but I would recommend using the <a href="http://validator.w3.org/" rel="nofollow">W3C HTML Validator</a> and the <a href="http://jigsaw.w3.org/css-validator/" rel="nofollow">W3C CSS Validator</a> to determine that. Hope this is helpful!</p> http://stackoverflow.com/questions/746525/how-is-the-triangular-bracket-character-used-in-css/746539#746539 4 Answer by Adam Alexander for How is the triangular bracket character, ">" used in CSS? Adam Alexander 2009-04-14T06:32:16Z 2009-04-14T06:32:16Z <p>Hi Sam, this is known as a Child Combinator:</p> <blockquote> <p>A child combinator selector was added to be able to style the content of elements contained within other specified elements. For example, suppose one wants to set white as the color of hyperlinks inside of div tags for a certain class because they have a dark background. This can be accomplished by using a period to combine div with the class resources and a greater-than sign as a combinator to combine the pair with a, as shown below:</p> </blockquote> <pre><code>div.resources &gt; a{color: white;} </code></pre> <p>(from <a href="http://www.xml.com/pub/a/2003/06/18/css3-selectors.html" rel="nofollow">http://www.xml.com/pub/a/2003/06/18/css3-selectors.html</a>)</p> http://stackoverflow.com/questions/746519/udp-receiving/746526#746526 1 Answer by Adam Alexander for Udp Receiving Adam Alexander 2009-04-14T06:28:21Z 2009-04-14T06:28:21Z <p>Hello Avik, for your purposes I believe you will want to use IPAddress.Any instead of IPAddress.Broadcast. Hope this helps!</p> http://stackoverflow.com/questions/746508/datasets-based-net-programme-use-designer-tools-or-do-it-self/746522#746522 0 Answer by Adam Alexander for DataSets based .NET programme: Use Designer tools or do it self? Adam Alexander 2009-04-14T06:25:24Z 2009-04-14T06:25:24Z <p>Hi, if you're looking to keep your ASP.NET code as lightweight and fast as possible you may want to look at using <a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC</a>. This is the technology used to create StackOverflow, it gives you a lot of control over which data technologies you want to use to implement your site, and it for the most part avoids the overhead of using ASP.NET server controls. You may find this to be a great option for your needs.</p> http://stackoverflow.com/questions/744871/customers-and-suppliers-database-design-issue/744879#744879 0 Answer by Adam Alexander for Customers and suppliers database design issue Adam Alexander 2009-04-13T18:23:30Z 2009-04-13T18:23:30Z <p>Both of your ideas are valid and correct solutions to your question. To know the correct answer you'd need to consider your app's intended usage patterns to decide which would be preferable. For example, will you be listing all bank transactions more often than listing Customers and Suppliers separately?</p> http://stackoverflow.com/questions/744840/does-it-make-sense-to-integrate-scripting-languages-to-c-apps/744865#744865 3 Answer by Adam Alexander for Does it make sense to integrate scripting languages to C# apps? Adam Alexander 2009-04-13T18:17:37Z 2009-04-13T18:17:37Z <p>Hi Joan, there may be a performance hit for a given feature when implemented through a script interface rather than natively through your app, but if you would like to allow your users to script your app and it allows them to implement a feature that is useful to them that is not supported natively in your app, then it seems like a good idea to me. If you end up with a particular user script that is very popular you could always release it as a native feature of your app in a later release if you can improve on its performance. Hope this helps!</p> http://stackoverflow.com/questions/737854/what-is-the-preferred-way-to-manage-schema-rb-in-git/738283#738283 2 Answer by Adam Alexander for What is the preferred way to manage schema.rb in git? Adam Alexander 2009-04-10T17:24:36Z 2009-04-10T17:24:36Z <p>Hi Otto, I'm afraid the magic solution you're looking for does not exist. This file is normally managed in version control, then for any conflicts on the version line just choose the later of the two dates. As long as you're also running all of the associated migrations nothing should get out of sync this way. If two developers have caused modifications to a similar area of schema.rb and you get conflicts in addition to the version then you are faced with a normal merge conflict resolution, but in my opinion these are normally easy to understand and resolve. I hope this helps some!</p> http://stackoverflow.com/questions/731526/amazon-s3-when-why/731581#731581 9 Answer by Adam Alexander for Amazon S3: when/why Adam Alexander 2009-04-08T20:00:21Z 2009-04-10T14:30:05Z <p>Hi Ronn, if you're running within the included storage and bandwidth of your server and your needs are being served well, you are already doing the simplest thing that is working for you and that is where you should always start. Off the top of my head I can think of a couple reasons why you may want to move some storage to S3 in the future:</p> <ul> <li>Your storage or bandwidth needs grow beyond what you have and S3 is cheaper than upgrading your current solution</li> <li>You move to a multiple-dedicated-server solution for failover/performance reasons and want to be able to store your assets in a single shared location</li> <li>Your bandwidth needs are highly variable (so you can avoid a monthly fee when you're not getting traffic) [Thanks Jim, from the comments]</li> </ul> http://stackoverflow.com/questions/731513/how-can-i-use-an-uiscrollview-in-an-multiview-application/731675#731675 1 Answer by Adam Alexander for How can I use an UIScrollView in an Multiview-Application? Adam Alexander 2009-04-08T20:26:36Z 2009-04-08T20:26:36Z <p>Hello, since UIScrollView is located in the secondView.xib I assume its functionality is limited to that view. If you have an instance of UIViewController that serves as the controller for the secondView.xib then the best place to implement UIScrollViewDelegate would be on that UIViewController directly. You are correct that implementing it on the AppDelegate doesn't make sense if you have a more specific derived controller where it should belong. Hope this helps!</p> http://stackoverflow.com/questions/731487/rails-correct-routing-for-namespaced-resources/731554#731554 1 Answer by Adam Alexander for Rails: Correct routing for namespaced resources Adam Alexander 2009-04-08T19:51:38Z 2009-04-08T19:51:38Z <p>Hi Joachim, the rails docs for url_for indicate you'd have to call this explicitly:</p> <blockquote> <p>If you instead of a hash pass a record (like an Active Record or Active Resource) as the options parameter, you‘ll trigger the named route for that record. The lookup will happen on the name of the class. So passing a Workshop object will attempt to use the workshop_path route. If you have a nested route, such as admin_workshop_path you‘ll have to call that explicitly (it‘s impossible for url_for to guess that route).</p> </blockquote> <p>(from <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#M001564" rel="nofollow">http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#M001564</a>)</p> http://stackoverflow.com/questions/727372/net-web-services-soap-faults/727385#727385 0 Answer by Adam Alexander for .NET Web Services - SOAP Faults Adam Alexander 2009-04-07T20:10:11Z 2009-04-07T20:10:11Z <p>Hello, I believe this link describes what you're looking for:</p> <p><a href="http://aspalliance.com/727%5FCodeSnip%5FHandling%5FSOAP%5FExceptions%5Fin%5FWeb%5FServices" rel="nofollow">http://aspalliance.com/727_CodeSnip_Handling_SOAP_Exceptions_in_Web_Services</a></p> http://stackoverflow.com/questions/727361/sql-server-2008-web-edition/727375#727375 1 Answer by Adam Alexander for SQL Server 2008 Web Edition Adam Alexander 2009-04-07T20:07:01Z 2009-04-07T20:07:01Z <p>Hi Mike, you can find the complete comparison here:</p> <p><a href="http://www.microsoft.com/sqlserver/2008/en/us/editions.aspx" rel="nofollow">http://www.microsoft.com/sqlserver/2008/en/us/editions.aspx</a></p> http://stackoverflow.com/questions/727351/what-is-your-experience-with-gwt/727364#727364 1 Answer by Adam Alexander for What is your experience with GWT? Adam Alexander 2009-04-07T20:04:55Z 2009-04-07T20:04:55Z <p>Hi Berlin, I have used it in research and have found it to be a promising technology. As for licensing, it is Apache 2.0 so this should not present an issue for you:</p> <p><a href="http://code.google.com/webtoolkit/terms.html" rel="nofollow">http://code.google.com/webtoolkit/terms.html</a></p> http://stackoverflow.com/questions/727337/objective-c-superset-of-c/727357#727357 0 Answer by Adam Alexander for Objective-c superset of C Adam Alexander 2009-04-07T20:02:42Z 2009-04-07T20:02:42Z <p>Hi Greg, Objective-C does use the same call stack as C. And the brackets are part of the "superset" which means they are part of the Objective-C syntax but not part of the "subset" C syntax.</p> http://stackoverflow.com/questions/845526/are-there-any-worthy-csla-alternatives-available/845547#845547 Comment by Adam Alexander on Are there any worthy CSLA alternatives available? Adam Alexander 2009-08-14T15:43:45Z 2009-08-14T15:43:45Z Hey, you're the guy that read that! Thanks! http://stackoverflow.com/questions/1049889/how-to-intercept-touches-events-on-a-mkmapview-or-uiwebview-objects/1053033#1053033 Comment by Adam Alexander on How to intercept touches events on a MKMapView or UIWebView objects? Adam Alexander 2009-06-29T18:03:22Z 2009-06-29T18:03:22Z Very useful code, thanks Martin! I was wondering if you tried pinch-zooming the map after implementing this? For me when I got it working using basically the same code you have above everything seemed to work except pinch zooming the map. Anyone have any ideas? http://stackoverflow.com/questions/761236/difference-between-lambda-expressions-and-anonymous-methods-c/761260#761260 Comment by Adam Alexander on Difference between lambda expressions and anonymous methods - C# Adam Alexander 2009-04-17T17:19:42Z 2009-04-17T17:19:42Z SnOrfus: yes they do the same thing so you're right, it's just a matter of syntax preference. Sasha: both lambdas and anonymous methods can have return values. http://stackoverflow.com/questions/741712/shallow-routes-with-pathprefix/744286#744286 Comment by Adam Alexander on Shallow routes with path_prefix? Adam Alexander 2009-04-17T01:34:31Z 2009-04-17T01:34:31Z Raimonds I did see Christoph mention that your answer was helpful. I felt it was very close to ideal but was able to improve it slightly by making it more concise, in the interest of providing a helpful answer. I apologize if any offense was taken; it was not intended. Thank you for helping. http://stackoverflow.com/questions/741712/shallow-routes-with-pathprefix Comment by Adam Alexander on Shallow routes with path_prefix? Adam Alexander 2009-04-17T01:34:01Z 2009-04-17T01:34:01Z Raimonds I did see Christoph mention that your answer was helpful. I felt it was very close to ideal but was able to improve it slightly by making it more concise, in the interest of providing a helpful answer. I apologize if any offense was taken; it was not intended. Thank you for helping. http://stackoverflow.com/questions/752932/has-jquery-mootools-prototype-eliminated-the-need-for-gwt/753026#753026 Comment by Adam Alexander on Has Jquery/MooTools/Prototype eliminated the need for GWT? Adam Alexander 2009-04-15T18:54:09Z 2009-04-15T18:54:09Z GWT generates javascript, while js libraries ARE javascript. Someone who prefers coding java may very much prefer using GWT but to my knowledge those same results can be achieved by coding javascript directly, especially so with the help of the libraries you mention. http://stackoverflow.com/questions/752861/what-is-the-postinfo-meta-tag-that-appears-in-my-asp-page/752879#752879 Comment by Adam Alexander on What is the PostInfo Meta Tag that appears in my ASP page? Adam Alexander 2009-04-15T18:51:21Z 2009-04-15T18:51:21Z That's interesting, an editor or installer you've used at some point must have automatically inserted it. If you're sure you don't use that technology then it would be safe to remove that meta tag for sure. http://stackoverflow.com/questions/741712/shallow-routes-with-pathprefix Comment by Adam Alexander on Shallow routes with path_prefix? Adam Alexander 2009-04-15T15:54:54Z 2009-04-15T15:54:54Z Thanks for the info, I updated my answer as a result. http://stackoverflow.com/questions/741712/shallow-routes-with-pathprefix Comment by Adam Alexander on Shallow routes with path_prefix? Adam Alexander 2009-04-14T21:14:15Z 2009-04-14T21:14:15Z Is Raimonds's answer doing what you need? Or if not, what are the specific routes you're looking for? http://stackoverflow.com/questions/741712/shallow-routes-with-pathprefix Comment by Adam Alexander on Shallow routes with path_prefix? Adam Alexander 2009-04-14T20:10:59Z 2009-04-14T20:10:59Z Hi Cristoph, if my answer wasn't enough I may be able to help more but would you please clarify the end result you're looking for and any criteria you have for an ideal solution? What was the original testing issue you're trying to solve by making this change? http://stackoverflow.com/questions/744353/rails-stale-method-for-sitemap-always-returns-http-200/747832#747832 Comment by Adam Alexander on Rails' stale? method for sitemap always returns HTTP 200 Adam Alexander 2009-04-14T14:45:15Z 2009-04-14T14:45:15Z That's great, I was hoping it would be helpful to you. Thanks for the update! http://stackoverflow.com/questions/746508/datasets-based-net-programme-use-designer-tools-or-do-it-self/746522#746522 Comment by Adam Alexander on DataSets based .NET programme: Use Designer tools or do it self? Adam Alexander 2009-04-14T06:52:20Z 2009-04-14T06:52:20Z No problem, since we're discussing desktop GUI I fully agree with and upvoted the other answer at <a href="http://stackoverflow.com/questions/746508/datasets-based-net-programme-use-designer-tools-or-do-it-self/746530#746530" rel="nofollow" title="datasets based net programme use designer tools or do it self">stackoverflow.com/questions/746508/&hellip;</a> http://stackoverflow.com/questions/746547/add-a-new-event-handler-to-run-first Comment by Adam Alexander on Add a new event handler to run first Adam Alexander 2009-04-14T06:44:39Z 2009-04-14T06:44:39Z Hi again Nick, please check if this is what you're looking for: <a href="http://stackoverflow.com/questions/290254/how-to-order-events-bound-with-jquery" rel="nofollow" title="how to order events bound with jquery">stackoverflow.com/questions/290254/&hellip;</a> http://stackoverflow.com/questions/746506/stop-further-event-handlers-on-an-element/746512#746512 Comment by Adam Alexander on Stop further event handlers on an element Adam Alexander 2009-04-14T06:39:29Z 2009-04-14T06:39:29Z Yes very true, glad the link was helpful anyway =) http://stackoverflow.com/questions/742829/animating-custom-drawn-uitableviewcell-when-entering-edit-mode/743856#743856 Comment by Adam Alexander on Animating custom-drawn UITableViewCell when entering edit mode Adam Alexander 2009-04-14T03:50:28Z 2009-04-14T03:50:28Z Thanks again Craig, this was a big step in the right direction! Please see the answer I posted for info on how I was able to use this info. Also about the performance it explains more in the blog post I linked; it seems the performance gains would be most noticeable for complicated cell layouts.