User Alvin Ashcraft - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T08:19:23Zhttp://stackoverflow.com/feeds/user/1137http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32516/getting-started-with-ruby-development4Getting Started with Ruby DevelopmentAlvin Ashcraft2008-08-28T15:07:01Z2009-08-24T12:33:31Z
<p>What are some good online tutorials/quick starts/screencasts to get up to speed on Ruby development? I recently read Brad Wilson's Ruby article in the Sep/Oct 2008 issue of CoDe magazine and would like to continue down the Ruby/IronRuby path.</p>
<p>(My background is mainly C# and .NET.)</p>
http://stackoverflow.com/questions/6557/in-c-why-cant-a-liststring-object-be-stored-in-a-listobject-variable/965792#9657920Answer by Alvin Ashcraft for In C#, why can't a List<string> object be stored in a List<object> variableAlvin Ashcraft2009-06-08T16:34:54Z2009-06-08T16:34:54Z<p>Here is another pre-.NET 3.5 solution for any IList whose contents can be cast implicitly.</p>
<pre><code>public IList<B> ConvertIList<D, B>(IList<D> list) where D : B
{
List<B> newList = new List<B>();
foreach (D item in list)
{
newList.Add(item);
}
return newList;
}
</code></pre>
<p>(Based on Zooba's example)</p>
http://stackoverflow.com/questions/741072/migrate-from-vs-2005-to-vs-2008/741076#7410765Answer by Alvin Ashcraft for Migrate from vs 2005 to vs 2008Alvin Ashcraft2009-04-12T00:49:35Z2009-04-12T00:49:35Z<p>There is some good discussion on this topic <a href="http://stackoverflow.com/questions/193281/visual-studio-2005-vs-2008-what-are-the-benefits">on another thread</a> and <a href="http://stackoverflow.com/questions/46036/upgrading-to-visual-studio-2008-from-2005">on this one</a>.</p>
http://stackoverflow.com/questions/266569/whats-the-first-program-you-wrote-that-you-were-proud-of/588567#5885670Answer by Alvin Ashcraft for What's the first program you wrote that you were proud of?Alvin Ashcraft2009-02-26T00:26:59Z2009-02-26T00:26:59Z<p>Many moons ago, I made an animated Jumpman graphic written in BASIC on my Atari 800.</p>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/9418#941854Answer by Alvin Ashcraft for What good technology podcasts are out there?Alvin Ashcraft2008-08-13T02:30:36Z2008-08-14T12:17:11Z<p>My list:</p>
<p><a href="http://www.hanselminutes.com/" rel="nofollow" title="Bristol University Language Engineering Course">Hanselminutes</a></p>
<p><a href="http://www.dotnetrocks.com/" rel="nofollow">.NET Rocks!</a></p>
<p><a href="http://herdingcode.com/" rel="nofollow">Herding Code</a></p>
<p><a href="http://deepfriedbytes.com/" rel="nofollow">Deep Fried Bytes</a></p>
<p><a href="http://feeds.feedburner.com/SpaghettiCodePodcasts" rel="nofollow">Spaghetti Code</a></p>
<p><a href="http://www.sparklingclient.com/" rel="nofollow">The Sparkling Client</a></p>
<p><a href="http://plumbersatwork.com/" rel="nofollow">Plumbers @ Work</a></p>
<p><a href="http://www.polymorphicpodcast.com/" rel="nofollow">Polymorphic Podcast</a></p>
<p><a href="http://altnetpodcast.com/" rel="nofollow">ALT.NET Podcast</a></p>
<p><a href="http://aspnetpodcast.com/CS11/Default.aspx" rel="nofollow">ASP.NET Podcast</a></p>
<p><a href="http://www.radiotfs.com/" rel="nofollow">Radio TFS</a></p>
<p><a href="http://feeds.feedburner.com/powerscripting" rel="nofollow">PowerScripting Podcast</a></p>
<p><a href="http://www.se-radio.net/" rel="nofollow">Software Engineering Radio</a></p>
<p><a href="http://blog.stackoverflow.com/category/podcasts/" rel="nofollow">stackoverflow Podcast</a></p>
<p><a href="http://thirstydeveloper.com/" rel="nofollow">The Thirsty Developer</a></p>
<p><a href="http://www.thoughtworks.com/what-we-say/podcasts.html" rel="nofollow">ThoughtWorks - IT Matters Podcast</a></p>
<p><a href="http://agiletoolkit.libsyn.com/" rel="nofollow">Agile Toolkit Podcast</a></p>
<p><a href="http://ajaxian.com/by/category/podcasts" rel="nofollow">Ajaxian Podcast</a></p>
<p><a href="http://pragprog.com/podcasts" rel="nofollow">Pragmatic Podcasts</a></p>
<p><a href="http://tinyurl.com/25l95t" rel="nofollow">Channel 9 Audio Feed</a></p>
<p><strong>EDIT: Missed one:</strong>
<a href="http://elegantcode.com/cast/" rel="nofollow">Elegant Code Cast</a></p>
http://stackoverflow.com/questions/9051/what-is-best-blogging-host-for-programmers-code-formatting/9116#91161Answer by Alvin Ashcraft for What is best blogging host for programmers/code formatting? Alvin Ashcraft2008-08-12T18:40:21Z2008-08-12T18:40:21Z<p>I use and recommend WordPress. You can start off with a hosted WordPress blog and move it off to another hosting provider if you want to take advantage of the great number of plug-ins available. With a hosted blog, you can only use the plug-ins that WordPress makes available to you.</p>
<p>...and use Windows Live Writer for writing/publishing. There are several nice code formatting plug-ins available for WLW.</p>
http://stackoverflow.com/questions/9091/accessing-audio-video-metadata-with-net/9096#90963Answer by Alvin Ashcraft for Accessing audio/video metadata with .NETAlvin Ashcraft2008-08-12T18:15:52Z2008-08-12T18:15:52Z<p>You can use this free .NET library to read/write MP3 metadata.</p>
<p><a href="http://home.fuse.net/honnert/hundred/?UltraID3Lib" rel="nofollow" title="Virtual Workspaces">Link</a></p>